First, to get root permissions, to read and write permissions to the file
Step: 1, the phone root;
2. Cmd enters the command line to run the ADB shell command (ADB has been configured in the environment variable), at which point the command becomes $ start;
3, run the SU command, switch to root permissions, at this time the command becomes the # start;
4, run chmod 777 command, followed by the file path, to the file read and write permissions.
Second, other commonly used commands
1, adb ll, adb ls-l list display file directory
2. ADB devices display connected devices
3, adb logcat display log
4, adb install *.APK installation of the specified Apk,adb-r installed *.apk mandatory installation of the specified APK
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
ADB get root permissions----ADB command collection