Android shell chown u0_49
Android shell chown u0_49
我在 android 的 shell 中更改所有者时遇到了一些问题。我正在尝试更改文件的所有者和组以匹配目录中的另一个文件。当我 ls -l
其他文件拥有 u0_a49
的所有者时,我尝试 su chown u0_a49:u0_49
当我尝试时,我得到了错误 tmp-mksh: u0_a49:u0_a49: not found
我尝试使用 u0_a49.u0_a49
作为好吧,没有运气。知道为什么我无法设置此权限吗?
你当前执行chown
的用户id是多少?您只能在 Android.
中将所有权更改为您自己的用户 ID 和组 ID
$ id
uid=2000(shell) gid=2000(shell) groups=2000(shell),1004(input),1007(log),1011(adb),1015(sdcard_rw),1028(sdcard_r),3001(net_bt_admin),3002(net_bt),3003(inet),3006(net_bw_stats) context=u:r:shell:s0
$ chown shell.shell file
$ chown 2000.2000 file # use the gid.uid style
我在 android 的 shell 中更改所有者时遇到了一些问题。我正在尝试更改文件的所有者和组以匹配目录中的另一个文件。当我 ls -l
其他文件拥有 u0_a49
的所有者时,我尝试 su chown u0_a49:u0_49
当我尝试时,我得到了错误 tmp-mksh: u0_a49:u0_a49: not found
我尝试使用 u0_a49.u0_a49
作为好吧,没有运气。知道为什么我无法设置此权限吗?
你当前执行chown
的用户id是多少?您只能在 Android.
$ id
uid=2000(shell) gid=2000(shell) groups=2000(shell),1004(input),1007(log),1011(adb),1015(sdcard_rw),1028(sdcard_r),3001(net_bt_admin),3002(net_bt),3003(inet),3006(net_bw_stats) context=u:r:shell:s0
$ chown shell.shell file
$ chown 2000.2000 file # use the gid.uid style