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!
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.
Complete How-To Root, Busybox, Flash/Recovery, Framework-res.apk, custom boot ani...
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