followed instructions to the T and everything worked fine. only thing, i'm having the same issue where titanium backup says "sorry could not acquire root priveleges. please verify that your rom is rooted and includes busybox" how can i fix this?
how do you reinstall Superuser?
thanks
btw Cory,... awesome.
I feel bad telling you this after your compliment, but you are not rooted if you are seeing that message. I'm not sure if you missed a step or what, so I can't tell you how far back to go, but I would maybe start here (it sounds like Raptor went back as far as the last 5?):
$ ./adb devices
$ ./adb push busybox /data/local/
$ ./adb push psneuter /data/local/
$ ./adb push su /data/local/
$ ./adb shell chmod 777 /data/local/busybox
$ ./adb shell chmod 777 /data/local/psneuter
$ ./adb shell /data/local/psneuter
$ ./adb shell mount -o remount,rw -t ext3 /dev/block/mmcblk0p25 /system
$ ./adb shell /data/local/busybox cp /data/local/su /system/xbin/su
$ ./adb shell chown 0:0 /system/xbin/su
$ ./adb shell chmod 6755 /system/xbin/su
$ ./adb install superuser.apk
$ ./adb reboot
Also, you can confirm root using ADB.
$ ./adb shell
$ su
If you see a permission denied message, you are not rooted. If the $ changes to a # then you are.