cp not found on Root Droid

kzmania

Member
Joined
Nov 14, 2009
Messages
82
Reaction score
0
Hi guys, I finally got my droid rooted but when typing cp command. It is said that it's not found. Anyway to fix this? Thanks!
 

zerosignal0

Member
Joined
Dec 10, 2009
Messages
63
Reaction score
0
Hi guys, I finally got my droid rooted but when typing cp command. It is said that it's not found. Anyway to fix this? Thanks!
This would be because you havent installed busybox. By default the droid doesnt contain the cp command.


http://www.droidforums.net/forum/dr...covery-framework-res-apk-custom-boot-ani.html

BusyBox
download busybox binary to your adb tools directory
AllDroid.org - Information
cd to your adb tools directory
adb push busybox /data/local/busybox
adb shell
su
cd /data/local
chmod 755 busybox
./busybox
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
mkdir /system/xbin
/data/local/busybox cp /data/local/busybox /system/xbin
/data/local/busybox cp /data/local/busybox /system/bin
cd /system/xbin
busybox --install .
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot

Hope this helps
 
Top