What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

cp not found on Root Droid

kzmania

Member
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.


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
 
Back
Top