As Quie2Droid said, there are some steps missing. Following the first post I got a read-only error on the third chunk of commands.
gonnadie4thegov provided the other commands needed on the first page.
Differences are in
bold. Hope I remember how I did this
If there is an error let me know and I'll edit this post.
Setup:
- Install adb (
here) and Motorola drivers (
here)
- Download attached archive
- Extract to a directory, I used c:\Droid2Root
- Make sure you have USB degugging enabled
- Change connection to PC Mode
Process:
- Open command prompt
- cd c:/wherever-your-sdk-tools-folder-is
- adb devices (to verify the connection)
- cd c:/Droid2Root
- adb push rageagainstthecage-arm5.bin /data/local/tmp/rageagainstthecage-arm5.bin
- adb shell
- cd data/local/tmp
- chmod 0755 rageagainstthecage-arm5.bin
- ./rageagainstthecage-arm5.bin
- let the process run until it returns you to c:/Droid2Root
- cd c:/wherever-your-sdk-tools-folder-is
- adb devices (to verify the connection)
- adh shell (you should now have a # prompt)
- mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
- exit
- cd c:/Droid2Root
- adb push Superuser.apk /system/app/Superuser.apk
- adb push su /system/bin/su
- adb push busybox /system/bin/busybox
- adb shell
- cp /sdcard/Superuser.apk /system/app/Superuser.apk
- cp /sdcard/su /system/bin/su
- cp /sdcard/busybox /system/bin/busybox
- chmod 4755 /system/bin/su
- chmod 4755 /system/bin/busybox
- mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
- exit
this is my first post, by the way. Hi droid forums!
Oh, and thanks to those who made all this possible