我正在尝试创建自定义系统分区:
我已经提取了原始的system.img,挂载到主机的目录中,添加了一些具有777权限模式的新文件,然后再次打包,并刷新了新的系统映像。
然而,文件获得“权限被拒绝”。
我做了几次试验,但结果相同。
似乎挂载的system.img中的目录结构与adb shell中的目录结构不同。 例如,挂载的系统中没有/ system文件夹,但是“adb shell”有/ system“。
我不确定是什么原因,我不熟悉普通的Linux发行版。
EDIT1:
请参阅下图中创建的ranranX文件:
....
-rw-r--r--. 1 root root 136948 2009-01-01 10:00 NOTICE.html.gz
-rw-r--r--. 1 root root 148 2009-01-01 10:00 oem-default.prop
-rw-r--r--. 1 root root 151 2009-01-01 10:00 oem-vz.prop
-rw-r--r--. 1 root root 657938 2009-01-01 10:00 old-apns-conf.xml
drwxr-xr-x. 2 root root 4096 2009-01-01 10:00 permissions
drwxr-xr-x. 2 root root 4096 2009-01-01 10:00 ppp
-rw-r--r--. 1 root root 76790 2009-01-01 10:00 preloaded-classes
-rw-r--r--. 1 root root 16384 2009-01-01 10:00 qcril.db
**-rwxrwxrwx 1 root root 0 2016-11-16 20:08 ranran1
-rwxrwxrwx 1 root root 75340 2016-11-16 20:08 ranran2**
-rw-r--r--. 1 root root 749737 2009-01-01 10:00 recovery-resource.dat
-rw-r--r--. 1 root root 10524 2009-01-01 10:00 regulatory_info_lgw200a.png
-rw-r--r--. 1 root root 5729 2009-01-01 10:00 regulatory_info_lgw200e.png
-rw-r--r--. 1 root root 10524 2009-01-01 10:00 regulatory_info_lgw200n.png
-rw-r--r--. 1 root root 34058 2009-01-01 10:00 regulatory_info_lgw200.png
-rw-r--r--. 1 root root 10519 2009-01-01 10:00 regulatory_info_lgw200v.png
-rw-r--r--. 1 root root 925 2009-01-01 10:00 sec_config
drwxr-xr-x. 3 root root 4096 2009-01-01 10:00 security
drwxr-xr-x. 2 root root 4096 2009-01-01 10:00 sensors
使用adb shell时,在执行ls -al时,我将其视为“Permission denied”(没有-al它们出现时没有出现此错误):
drwxr-xr-x root root 2009-01-01 10:00 permissions
drwxr-xr-x root root 2009-01-01 10:00 ppp
-rw-r--r-- root root 76790 2009-01-01 10:00 preloaded-classes
-rw-r--r-- root root 16384 2009-01-01 10:00 qcril.db
lstat './ranran1' failed: Permission denied
lstat './ranran2' failed: Permission denied
-rw-r--r-- root root 749737 2009-01-01 10:00 recovery-resource.dat
-rw-r--r-- root root 34058 2009-01-01 10:00 regulatory_info_lgw200.png
-rw-r--r-- root root 10524 2009-01-01 10:00 regulatory_info_lgw200a.png
-rw-r--r-- root root 5729 2009-01-01 10:00 regulatory_info_lgw200e.png
谢谢你, 兰畴