Android系统,cp:not found解决方法

来源:互联网 发布:2016年美国网络星期一 编辑:程序博客网 时间:2024/06/08 20:17

在android中,使用cp命令时”cp: not found”的解决办法

busybox工具:
1、 http://www.busybox.net/downloads/binaries
可以使用迅雷下载。

2、工具在资源中有。在最后也给出网盘链接。

把busybox工具下载到本地后,需要想办法上传到android系统。

adb push busybox /system/binadb push busybox /system/xbin

adb shell(若出错,使用 adb kill-server命令,配合拔插数据线使用)

su

cd /system/xbin

chmod 755 busybox

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

busybox – –install . (第一个-之前有空格,install后面有个小点。运行完没打印)

sync (运行完没打印)

reboot

重新启动后,cp命令可以使用。

参考博客:

http://blog.csdn.net/w540982016044/article/details/7519114

http://blog.csdn.net/w540982016044/article/details/7514392

链接:https://pan.baidu.com/s/1bGgN3g 密码:xqfs

阅读全文
0 0