How to restart adb from root to user mode? - android
Basic question on ADB.
adb root restarts adb as root. But what i want is to restart it back to user after some time.
I tried the following :
adb kill-server
adb start-server
doesnt work..
ps -A -> noted the process number of adb and killed it.. even this did not work. Finally i am restarting my device. Is there any way i can come back from root adb to general adb?
Thank you.
If you used adb root, you would have got the following message:
C:\>adb root
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
restarting adbd as root
To get out of the root mode, you can use:
C:\>adb unroot
restarting adbd as non root
adb kill-server and adb start-server only control the adb daemon on the PC side. You need to restart adbd daemon on the device itself after reverting the service.adb.root property change done by adb root:
~$ adb shell id
uid=2000(shell) gid=2000(shell)
~$ adb root
restarting adbd as root
~$ adb shell id
uid=0(root) gid=0(root)
~$ adb shell 'setprop service.adb.root 0; setprop ctl.restart adbd'
~$ adb shell id
uid=2000(shell) gid=2000(shell)
Try this to make sure you get your shell back:
enter adb shell (root). Then type below comamnd.
stop adbd && setprop service.adb.root 0 && start adbd &
This command will stop adbd, then setprop service.adb.root 0 if adbd has been successfully stopped, and finally restart adbd should the .root property have successfully been set to 0. And all this will be done in the background thanks to the last &.
I would like to add a little more explanation to #user837048's answer. on my OSX Yosemite and Galaxy S3 which is rooted and using firmware CyanogenMod 11 and KitKat I have done the below proceedings to Enable and Disable root prompt.
Please make ensure below
On your system
Make sure you have installed Android SDK and you have set paths to binary files. type which adb on your shell. It must give you somewhat result.
$ which adb
/Applications/Android Studio.app/sdk/platform-tools/adb
On your Mobile
Settings > Developer Options> Android Debugging = ON
Settings > Developer Options> Root Access = Apps and ADB
If you don't see Developer Options in your settings, Goto Settings > About Phone. Scroll down to Build number and tap there 7 times. I know its crazy. But believe me it works :D
Connect your phone via USB Cable.
type on your computer's terminal
$ adb shell
you will see a prompt similiar, If any prompt has been shown on your mobile, to trust the connection, tap 'Always Trust' and 'OK'
shell#m0:/ $
now type
shell#m0:/ $ id
uid=2000(shell) gid=2000(shell) groups=1004(input),1007(log),1011(adb),1015(sdcard_rw),1028(sdcard_r),3001(net_bt_admin),3002(net_bt),3003(inet),3006(net_bw_stats) context=u:r:shell:s0
See you are not root
Now exit from shell, which will fall back to computer's prompt
shell#m0:/ $ exit
Now activate root
$adb shell
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
root#m0:/ #
Wow.. you are root
root#m0:/ # id
uid=0(root) gid=0(root) context=u:r:shell:s0
I tried many solutions to go back to normal non root prompt. But didn't worked except #user837048's solution.
root#m0:/ # stop adbd && setprop service.adb.root 0 && start adbd &
[1] 32137
root#m0:/ #
$
This might exit you from Adb prompt to normal prompt. Now connect again.
$ adb shell
shell#m0:/ $
Well.. You are Non root
For quick steps just check summary. If interested to know details, go on to read below.
adb is a daemon. Doing ps adb we can see its process.
shell#grouper:/ $ ps adb
USER PID PPID VSIZE RSS WCHAN PC NAME
shell 133 1 4636 212 ffffffff 00000000 S /sbin/adbd
I just checked what additional property variables it is using when adb is running as root and user.
adb user mode :
shell#grouper:/ $ getprop | grep adb
[init.svc.adbd]: [running]
[persist.sys.usb.config]: [mtp,adb]
[ro.adb.secure]: [1]
[sys.usb.config]: [mtp,adb]
[sys.usb.state]: [mtp,adb]
adb root mode :
shell#grouper:/ # getprop | grep adb
[init.svc.adbd]: [running]
[persist.sys.usb.config]: [mtp,adb]
[ro.adb.secure]: [1]
[service.adb.root]: [1]
[sys.usb.config]: [mtp,adb]
[sys.usb.state]: [mtp,adb]
We can see that service.adb.root is a new prop variable that came up when we did adb root.
So, to change back adb to user from root, I went ahead and made this 0
setprop service.adb.root 0
But this did not change anything.
Then I went ahead and killed the process (with an intention to restart the process). The pid of adbd process in my device is 133
kill -9 133
I exited from shell automatically after I had killed the process.
I did adb shell again it was in user mode.
SUMMARY :
So, we have 3 very simple steps.
Enter adb shell as a root.
setprop service.adb.root 0
kill -9 (pid of adbd)
After these steps just re-enter the shell with adb shell and you are back on your device as a user.
This is a very common issue.
One solution is to kill adb server and restart it through command prompt. Sometimes this may not help out.
Just go to Window Task Manager to kill adb process and restart Eclipse.
Will work perfect :)
i've been with this issue using elementary OS loki. For like one day and i solved it restarting the adb using this command:
./adb kill-server
and
./adb start-server
You need to be in the Sdk folder >Platform Tools
Now, restart your phone this will restart all the process in your phone.
And that's how i fixed it.
if you cannot access data folder on Android Device Monitor
cmd
C:\Users\bscis\AppData\Local\Android\sdk\platform-tools
(Where you located sdk folder)
C:\Users\bscis\AppData\Local\Android\sdk\platform-tools>adb shell
generic_x86:/ $
C:\Users\bscis\AppData\Local\Android\sdk\platform-tools>adb kill-server
C:\Users\bscis\AppData\Local\Android\sdk\platform-tools>adb start-server
* daemon not running. starting it now at tcp:5037 *
* daemon started successfully *
C:\Users\bscis\AppData\Local\Android\sdk\platform-tools>adb root
C:\Users\bscis\AppData\Local\Android\sdk\platform-tools>
working fine.....
Related
Android - adb setprop persist.sys.locale not working on emulator
When I change the system locale, it is not working, the emulator is restarted but it is still displayed in the original locale. Any thoughts? $ adb root * daemon not running. starting it now on port 5037 * * daemon started successfully * restarting adbd as root $ adb shell "setprop persist.sys.locale es-AR; stop; sleep 2; start" $ adb shell getprop persist.sys.locale en-US
Have no idea on what caused this. But this solved: In Android Studio - Tools -> AVD Manager -> select the emulator and then "Wipe data".
Please check Android version on your emulator. Android Marshmallow needs to set like "setprop persist.sys.locale es-AR". On the other hands, Android Kitkat needs to set both "setprop persist.sys.language es" and "setprop persist.sys.country AR". I'm not sure when this setting was changed exactly. (between K ~ M somewhere)
Adb Shell dumpheap for native not working
I need to take the native dump of the android process. The cmd I am using is: adb shell am dumpheap -n <pid> /data/local/tmp/dump.txt The device is S8, Oreo OS. Everytime I run this cmd, the 'dump.txt' is generated with the following content: Native heap dump not available. To enable, run these commands (requires root):$ adb shell setprop libc.debug.malloc 1 $ adb shell stop $ adb shell start Though I am doing it says and the phone is also rooted but it still gives the same content. I am stuck. Any help would be appreciated.
How do I run "adb shell" commands in a terminal emulator locally on an Android device?
From a shell on my PC, I can run adb shell cmd package list packages, and get a list of all installed packages. I would like to run this and similar commands locally on my Android phone (Nexus 6P) in a terminal emulator (currently using Termux). If I open the same shell with /system/bin/sh, and then try to run /system/bin/cmd package list packages, nothing happens (no errors, just outputs nothing and reloads the prompt). If I run /system/bin/cmd -l the list of options appears as expected. $PATH and $LD_LIBRARY_PATH are the same in both environments. One major difference is that echo $USER returns "shell" from adb shell, but returns my local username from /system/bin/sh launched from Termux. Is there any way to replicate the behavior of commands run from adb shell in a terminal emulator locally on Android? Edit: My device is rooted, and I am OK with root only solutions.
The problem is Termux. By design, Termux runs only (or is mostly?) the Linux command line programs that you install from within Termux using apt or the newer "native" package management interface, e.g. apt install bsdtar. What you need to run the adb shell commands is a terminal emulator that can truly access the underlying Android file system, not just the Termux that is practically a chroot save for the fact that it's aware it's not running commands from the filesystem root /. As a simple test, run the following command: which ls It should return something like /system/bin/ls. But if it returns something like /data/data/com.termux/files/usr/bin/applets/ls then you have to change your terminal emulator to something else. I suspect that Termux was designed to take into account the more restrictive shell execution policies that Google put into place after KitKat or the Android 4.X. The Android distribution I'm using, LineageOS 14.1, comes with a built-in shell emulator that allows me to run commands found in /system/bin/ls.
I don't have a rooted Nougat device handy, but something like the following may be a close enough approximation to adb shell (assuming you are using SuperSU): env -i USER=shell "$(PATH=/system/xbin:/system/bin:/su/bin:/sbin:/magisk/.core/bin which su)" shell --context u:r:shell:s0 --shell /system/bin/sh --command COMMAND I (very briefly) tested it from Termux on a rooted Marshmallow device. To elaborate: the -i flag is used to start with an empty environment USER=shell isn't specifically required, but for some reason su refuses to run with a completely empty environment $(PATH=/system/xbin:/system/bin:/su/bin:/sbin:/magisk/.core/bin which su) points to the full path of the su binary on your device and can be hardcoded if you prefer shell instructs the su binary to login as the shell user (the same as adb shell) --context u:r:shell:s0 sets the appropriate SELinux context --shell /system/bin/sh instructs SuperSU to use the system shell rather than it's own sush shell Another option would be to actually run adb from the device, connecting to itself over TCP. If you need some functionality that is only available via adb (e.g. in my case it was adb forward) then this may be your only option. Unfortunately this isn't particularly convenient. I wasn't able to find success with any publicly available adb binaries, so I build it myself with a few minor changes. You can see the sources I used and the changes I made at https://github.com/shakalaca/fastboot-adb-android and https://github.com/brbsix/fastboot-adb-android, respectively. Once you have adb installed, here's an abbreviated list of commands I used to connect to the device: # Add iptables rules to block external connections to port 9999' su root iptables -N adbd su root iptables -A adbd -i lo -p tcp -m tcp --dport 9999 -j ACCEPT su root iptables -A adbd -p tcp -m tcp --dport 9999 -j DROP su root iptables -A INPUT -j adbd # Necessary in order to display authorization prompt su shell setprop ro.debuggable 1 su shell setprop service.adb.tcp.port 9999 su root start adbd adb connect 127.0.0.1:9999 adb wait-for-local-device To shut down: adb kill-server su root stop adbd su shell setprop ro.debuggable 0 su shell setprop service.adb.tcp.port 0 su root iptables -D INPUT -j adbd su root iptables -F adbd su root iptables -X adbd
So I tried this recently...if you're rooted you can use a terminal emulator. su then the command you want without "adb shell" part of it. i tried the command "adb shell dumpsys deviceidle force-idle" in order to force device into doze. I did this on the device via terminal emulator as: "dumpsys deviceidle force-idle" and it did take effect. also the dumpsys batterystats command worked. be careful with commands with extensive text output, as the screen will be flooded with the output and will be unresponsive for some time.
EDIT I originally answered this without the termux tag in mind. This worked for me while trying to execute shell commands on a vanilla emulator and saw this question while researching, so I tried to answer it differently. You almost had it there in your question. You only need to execute sh: int result = -1; try { final Process shell = Runtime.getRuntime().exec("sh"); final DataOutputStream commands = new DataOutputStream(shell.getOutputStream()); commands.writeBytes("write a series"); commands.writeBytes("of commands here"); commands.writeBytes("exit\n"); commands.flush(); result = shell.waitFor(); } } catch (Exception e) { e.printStackTrace(); } If result == 0 the commands were succesful, else otherwise
Only rooted android Busybox must be installed (though you can try without it) Just write the normal command without the prefix adb
Replicate "adb tcpip" copy / restart adbd without root
I've researched a lot about adbd and adb. I'd like to replicate the "adb tcpip 5555" command by doing the following: I open up the adb shell via cmd (I'm using Windows 10 and a Samsung S5 Android 6.0 for testing purposes) and then I enter: setprop service.adb.tcp.port 5555 stop adbd start adbd Whenever I enter one of those commands, the output (in the next line) is just the command that I just entered and does not give any further information. Checking with getprop service.adb.tcp.port returns 5555 though. The adbd service does not seem to restart however, as entering adb connect ip-of-S5 results in unable to connect to ip-of-S5:5555 Pinging works though, so the ip/connection is not a problem. (Just like adb tcpip 5555 works as well.) In case this helps, here is some further information: getprop | grep adb [init.svc.adbd]: [running] [persist.sys.usb.config]: [mtp,adb] [ro.adb.secure]: [1] [service.adb.root]: [0] [service.adb.tcp.port]: [5555] [sys.usb.config]: [mtp,adb] [sys.usb.state]: [mtp,adb] Is there any way to get to know how the orginal adb tcpip command works internally? It doesn't need root, so it should be possible to do it manually as well, right? Thank you very much! Best regards
Start a process in background from adb shell without attaching the process to the terminal in Android
I have a simple problem. I want to start/run a program file on an android phone using adb shell. My Program is in /system/bin folder and has root privileges. I want to run this program from my command prompt as adb shell runme 3000000 > logs.txt but it should not block the terminal, It should run in background. I cannot use screen/disown/nohup for my problem as android doesn't have all this. I tried adb shell "runme >logs.txt &" but of no use. When i issue command as adb shell # runme 3000000 > logs.txt & It runs fine, when i exit the terminal/disconnect the device and then connect again to system. Do adb shell ps | grep runme shows the process is still runnning in background. Thanks
Busybox has nohup applet which works just fine in Android