./adb push permission issues.

damnitryon

Member
May 24, 2010
13
0
0
Visit site
I'm having constant issues with ADB Push, saying Permission Denied. Heres what I've tried to resolve the issue.

  • Allowed Super User Access ("su" command)
  • All USB modes. (Charge Only, Internet Share, Disk Mode, HTC Sync)
  • Made sure device is rooted.
  • Made sure device is in Debug Mode

Also, heres a screenshot of what's going on just to make sure I'm doing this correctly.

Screenshot2010-07-23at15142PM-1.jpg


Any help? I've had the same issue even when I tried to push the PC36IMG.zip originally to root the phone, which is actually why I went to unrevoked.

Thanks.
 

John Kotches

Active member
Jun 19, 2010
43
1
0
Visit site
Problem is you are running adb while still on the phone.

Your MAC$ adb shell
Phone non-root$ su
Phone root #

Then you typed in exit like this:
Phone root# exit

You end up at:

Phone non-root$

When you run adb you are still on the phone and don't have execute permission for adb. If you run exit one more time to your MAC it will probably work as expected.

Phone non-root$ exit

Your mac$ adb push file_name
 

damnitryon

Member
May 24, 2010
13
0
0
Visit site
Problem is you are running adb while still on the phone.

Your MAC$ adb shell
Phone non-root$ su
Phone root #

Then you typed in exit like this:
Phone root# exit

You end up at:

Phone non-root$

When you run adb you are still on the phone and don't have execute permission for adb. If you run exit one more time to your MAC it will probably work as expected.

Phone non-root$ exit

Your mac$ adb push file_name

Ah, that was it, I was trying to run the ADB commands while still on the phone, also I was typing just

Code:
adb push <file> <destination>

instead of the proper

Code:
./adb push <file> <destination>

Thanks you guys, I really appreciate it.