Editing
ADB Commands
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Start the Environment Automatically for Remote Linux Machine === Usage Setup ssh key for remote machine. Install adb on local machine. Install adb on remote machine and change REMOTE_ADB_PATH value to the adb location. Make sure you are using the same adb in terminal and Android Studio. And make sure you installed the same version of adb in local and remote machine. Add the following content to your local ~/.bashrc and run source ~/.bashrc to refresh. Run startRemoteAdb USER HOST / stopRemoteAdb USER HOST to start/stop adb environment. ------- REMOTE_ADB_PATH='$HOME/Android/Sdk/platform-tools/adb' _remoteCmd() { local USER=$1 local HOST=$2 ssh $USER@$HOST $3 } _remoteAdb() { local USER=$1 local HOST=$2 _remoteCmd $USER $HOST "$REMOTE_ADB_PATH $3" } startRemoteAdb() { if [ $# -ne 2 ]; then echo 'Usage: startRemoteAdb USER HOST' echo 'Example: startRemoteAdb jzj 192.168.5.200' return 1 fi local USER=$1 local HOST=$2 stopRemoteAdb $USER $HOST echo echo 'Get adb devices on local...' adb devices sleep 1 adb kill-server sleep 1 echo 'Start services...' nohup adb -a nodaemon server start > /dev/null 2>&1 & ssh -R 5037:localhost:5037 -f -N $USER@$HOST -o ServerAliveInterval=240 sleep 1 echo "Forward localhost:5037 to $HOST:5037." echo echo 'Remote get adb devices...' _remoteAdb $USER $HOST devices } stopRemoteAdb() { local USER=$1 local HOST=$2 echo 'Kill running processes...' _remoteAdb $USER $HOST kill-server adb kill-server # kill ssh command which contains 5037 ps -lef | grep ssh | grep 5037 | awk "{print \$2}" | xargs kill sleep 1 echo 'Complete' } ==== For WSL ADB kill: ==== ''' Run in windows: ''' adb kill-server ''' Run in WSL: ''' adb kill-server # kill adb process pkill -9 adb # kill Windows adb.exe process in WSL pkill -9 adb.exe # kill socat process pkill -9 socat ==== For remote linux machine adb kill: ==== ''' Run in local: ''' adb kill-server # kill adb process pkill -9 adb # kill ssh command which contains 5037 (used for port forward) ps -lef | grep ssh | grep 5037 | awk "{print \$2}" | xargs kill ''' Run in remote: ''' adb kill-server pkill -9 adb
Summary:
Please note that all contributions to SafeCodeGroup may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
SafeCode Wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information