ADB命令,命令mkdir(用于创建目录)命令、目录、ADB、mkdir

2023-09-07 17:43:15 作者:风声却无停过

我想创建通过亚行的shell目录

I am trying to create a directory through adb shell

我使用切换到超级用户苏

I switched to super user using "su"

我要创建在etc文件夹的目录中哪些是不成功的,我能辨认出它链接到/系统/等,并试图在/系统/等;无论我是越来越案件只读文件系统如何使它读写?

I have to create a directory in etc folder which was unsuccessful, i could make out that it is linked to the /system/etc and tried to create in /system/etc; both the cases i was getting "Read only File System" how to make it Read write?

我试着在主机修改的udev / rules.d;

I tried modifying udev/rules.d in the host machine;

创建的文件与51 android.rulesSUBSYSTEM ==USB,ATTR {idVendor} ==04e8,MODE =0666,GROUP =plugdev

得到相同的只读文件系统

getting the same "Read only File system"

请帮忙关于一样的。

推荐答案

的 http://android-tricks.blogspot.in/2009/01/mount-filesystem-read-write.html

安装邻RW,重新挂载-t YAFFS2的/ dev /块/ mtdblock3 /系统

mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

这是有益的:现在我可以创建目录:)

This was useful: now i can create directory :)