Original URL: http://www.111cn.net/sj/android/44496.htm
The following is an article on Android "Read-only file System" solution has encountered such problems of friends can refer to.
android-a workaround for the Read-only file system appears
Enter the command:
| The code is as follows |
Copy Code |
Mount-o remount Rw/system |
(Execute once every time)
Some friends say is "/" problem, Command changed: ADB push alarmclock.apk Systemapp namely "/" to "". The ADB push computer path simulator path must be "" in the computer path and the simulator must be "/" and the path of the simulator is read-only
The file results on the operating device file system encountered "... Read-only file System ".
Workaround:
1. The simplest, ADB remount
2. If not, adb shell Su then remount the file system to read and Write permissions: Mount-o rw,remount/system. For security reasons, remember after the remount read back: Mount-o Ro,remount/system
3. Similar to Method 2, Mount-o rw,remount-t Ext3/dev/block/mmcblk1p21/system
1. Using the command: ADB push Alarmclock.apk/system/app
Tips:
| The code is as follows |
Copy Code |
| Failed to copy ' alarmclock.apk ' to '/system/app/alarmclock.apk ': Read-only file system |
"Go" Android appears "Read-only File system" workaround