Most of Android partitions are mounted as read only.
For eg. /system where most of the libs and other system components are stored, including the permissions.xml file.

You can temporary re-mount the /system partition to read write and load your new files to that partition!

using adb shell or the android terminal with root privileges, do the following:

See the currently mounted partitions:

# mount

Then re-mount to read-write the partition you are interested in , eg. /system:

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

Check the result with mount.

You can also:

mount -o rw,remount -t rootfs /

Sweet!

Radu Motisan

By Radu Motisan

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. 不能创建处理器 Can't create handler in
  2. android 根据apk文件获取包名等信息 已经
  3. Android监听程序的安装和卸载
  4. Android中Rect和RectF的区别
  5. android下webview实现H5 html标签 input
  6. 最新Android(安卓)出现Please ensure tha
  7. Android之Retrofit实现Log日志输出
  8. Android拍照调用系统相册仿微信封装总结,
  9. Android(安卓)菜单(OptionMenu)大全 建立
  10. Android(安卓)的一些命令(补充中..)