Shell Root - T-Mobile Sidekick 4G

Hi everyone
i tryed execute this command dd if=/dev/block/bml3 of=/sdcard/bml3.bak
but my shell is not SU (super user) "ROOT"
from terminal i executed SU and the reply is access denied
my phone is the sidekick4g
i tryed with the superoneclick but not works.
thanks a lot for your help

What didn't work about superoneclick? You have to enable USB debugging on the phone before superoneclick can work.

Related

[Q] How do I access my /root directory?

I just unlocked my bootloader and rooted my phone. But, I'm still not able to see system files or access the root directory or run various commands like SUFBS or mount from adb.
Does anyone know what I can do to get these permissions?
adb shell
root
root: permissions denied
type su first
Aro2220 said:
I just unlocked my bootloader and rooted my phone. But, I'm still not able to see system files or access the root directory or run various commands like SUFBS or mount from adb.
Does anyone know what I can do to get these permissions?
adb shell
root
root: permissions denied
Click to expand...
Click to collapse
try with su permissions:
Code:
adb shell
su root
And allow su permissions on the phone, when asked...
Neato! Thanks

[Q] need help with adb shell busybox is write protected

I have a Huawei H867G Inspira it is or was rooted now through adb shell i cant execute any busybox commands mkdir, mount, ls etc. it gives me cannot execute permission denied. Now the system is read only i have tried several adb commands i can get shell but su command just stays in limbo but the toast notifications says that shell has been granted super user permission but nothing happens i can't use titanium backup either and fix permissions on scripter, and busybox installer don't work any help would be greatly appreciated
I'm also using ics and out is aqualcomm device rooted with framaroot o have uninstalling root won't work i used customscript on framaroot 1.9. It says success by the system status is still read only

[Q] Android Pattern Unlock - adb shell su: permission denied

I was trying to unlock my android phone by adb installed. I tried to followed these steps:
adb devices
adb shell
cd data/system
su r
m *.key
But when i typed and enter su, its showing permission denied. My phone is also rooted. But i don't know why after entering su, its showing permission denied.
Can you please tell what extra steps I have to do so that I don't get permission denied ? Please help me out. Tell me step by step procedure, what I have to do.

Problem using adb with Moto C

Hi, I'm having trouble choosing the right section, anyway..
After more than a year i managed to correctly install ADB drivers, because before i installed Google driver, when i noticed i must install Motorola driver , the removing of previous one did not successful done, so the Motorola one did not installed well, by manually removing files it succeed.
But now another annoying not previewed issue, i need to exchange a file in /system/etc both in my tablet and my Motorola moto C tel. , it needs to remount system part. in r/w but to do this need to restart adb as root but with 'adb root' this is the answer:
adbd cannot run as root in production builds
my system is 7.0, what can i do?
You can install a temporary root to run shell-commmands what require root-rights like mount in ADB:
Code:
adb devices
adb push <FULL-PATH-TO-SU-BINARY-ON-PC> /data/local/tmp/
adb shell "chmod +x /data/local/tmp/su"
adb shell "/data/local/tmp/su -c 'mount -o rw,remount,rw /system'"
I have two questions, i don't find any su command available in the net.
I don't understand how it is possible to have to do all these hard maneuvers with a debug tool, i think it might be simpler.. why there's a command remount or root if it doesn't work?

"Not running as root. Try "adb root" first." despite trying "adb root" above

C:\Users\HieAnh>adb root
restarting adbd as root
C:\Users\HieAnh>adb remount
Not running as root. Try "adb root" first.
Click to expand...
Click to collapse
after i do :"adb root" to cmd,
then i get :"restarting adbd as root"
next i do :"adb remount"
but i get :"Not running as root. Try "adb root" first."
a big question for this problem
my phone is rooted, switch ro.secure=0, ro.debuggle=1
pls help me
What response do you get when you type su in shell?
ze7zez said:
What response do you get when you type su in shell?
Click to expand...
Click to collapse
i get :
C:\Users\HieAnh>adb shell
gracerlte:/ $ su
gracerlte:/ #
Click to expand...
Click to collapse
The ADB driver does not care at all whether phone's Android is rooted or not. As you correctly stated one have to run adb root for ADB to gain root access device's Android.
I don't want to examine why adb root in your case doesn't work.
Anyways the following should be a workaround:
Code:
adb devices
adb shell "su -c 'mount -o remount,rw /system'"
...
...
jwoegerbauer said:
The ADB driver does not care at all whether phone's Android is rooted or not. As you correctly stated one have to run adb root for ADB to gain root access device's Android.
I don't want to examine why adb root in your case doesn't work.
Anyways the following should be a workaround:
Code:
adb devices
adb shell "su -c 'mount -o remount,rw /system'"
...
...
Click to expand...
Click to collapse
hmm, i just run
adb pull /data/data
Click to expand...
Click to collapse
but i get
/data/data/: 0 files pulled, 0 skipped.
Click to expand...
Click to collapse
why ?
You have to mount /data partitton as RW.

Categories

Resources