debugging is enabled? you might need to right click on the command prompt and run as administrator. on a mac I'm not sure. also, are you sure your device is being recognized at that point? try typing "adb devices" (without quotes) and se what it says. it might also be "adb device" (without quotes) it's been a while since I did it.
Thanks for your assistance, iamlilysdad. I tried that before and it still said "adb: permission denied".
However, I just figured out a way to do it. I'm now rooted!
For any other Mac users who are getting the "adb: permissioned denied" response...
Instead of going straight to "adb shell" with the command "/Users/ComputerName/Desktop/android_mac/tools/adb shell", just go to the folder where adb is located.
For me, I typed
cd Desktop/Android/tools.
Android is just what I decided to name the SDK folder. If the folder was copied to your desktop, you can type the exact line, but replace
Android with whatever you decided to name your folder.
This brings you to the
tools folder.
Now, just type in everything that KSmithInNY said to enter, but make sure you add "./" in front of adb.
So, you would enter the first line as "./adb push rageagainstthecage-arm5.bin /data/local/tmp/rageagainstthecage"
Of course, without the quotes. Hope this helps!
Edit: I thought I'd include the entire chain of commands to make it less confusing...
After you're in the
tools folder, type:
./adb push rageagainstthecage-arm5.bin /data/local/tmp/rageagainstthecage
./adb push su /data/local/tmp/
./adb push busybox /data/local/tmp/
./adb shell
chmod 4755 /data/local/tmp/rageagainstthecage
chmod 4755 /data/local/tmp/busybox
cd /data/local/tmp
./rageagainstthecage (let things sit a couple minutes (2), your phone will disconnect from the computer and you'll be removed from your ADB session)
./adb shell (This should return a "#" symbol instead of a "$" symbol. If it does you're good. If not go back and start from the beginning of step 4)
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
cd /data/local/tmp
./busybox cp su /system/bin
./busybox cp busybox /system/bin
cd /system/bin
chmod 4755 su
chmod 4755 busybox
exit
exit