วันจันทร์ที่ 20 กรกฎาคม พ.ศ. 2558

adb fastboot

http://code.tutsplus.com/tutorials/android-adb-quick-guide--mobile-12456
มี monkey


http://www.droidforums.net/threads/how-to-root-without-using-adb.62450/

ADB Commands 
Quote:
adb devices - list all connected devices
adb push <local> <remote> - copy file/dir to device
adb pull <remote> [<local>] - copy file/dir from device
adb sync [ <directory> ] - copy host->device only if changed
(-l means list but don't copy)
(see 'adb help all')
adb shell - run remote shell interactively
adb shell <command> - run remote shell command
adb emu <command> - run emulator console command
adb logcat [ <filter-spec> ] - View device log
adb forward <local> <remote> - forward socket connections forward specs are one of: tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
jdwp:<process pid> (remote only)
adb jdwp - list PIDs of processes hosting a JDWP transport
adb install [-l] [-r] [-s] <file> - push this package file to the device and install it
('-l' means forward-lock the app)
('-r' means reinstall the app, keeping its data)
('-s' means install on SD card instead of internal storage)
adb uninstall [-k] <package> - remove this app package from the device
('-k' means keep the data and cache directories)
adb bugreport - return all information from the device
that should be included in a bug report.
adb help - show this help message
adb version - show version num
DATAOPTS:
(no option) - don't touch the data partition
-w - wipe the data partition
-d - flash the data partition
scripting:
adb wait-for-device - block until device is online
adb start-server - ensure that there is a server running
adb kill-server - kill the server if it is running
adb get-state - prints: offline | bootloader | device
adb get-serialno - prints: <serial-number>
adb status-window - continuously print device status for a specified device
adb remount - remounts the /system partition on the device read-write
adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program
adb reboot-bootloader - reboots the device into the bootloader
adb root - restarts the adbd daemon with root permissions
adb usb - restarts the adbd daemon listening on USB
adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port
networking:
adb ppp <tty> [parameters] - Run PPP over USB.
Note: you should not automatically start a PPP connection.
< tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
[parameters] - Eg. defaultroute debug dump local notty usepeerdns
adb sync notes: adb sync [ <directory> ]
< localdir> can be interpreted in several ways:
- If <directory> is not specified, both /system and /data partitions will be updated.
- If it is "system" or "data", only the corresponding partition is updated.

environmental variables:
ADB_TRACE - Print debug information. A comma separated list of the following values
1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.
ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed
.

Fastboot Commands
Quote: Example (fastboot flash recovery TWRP-recovery.img) then hit enter this will flash a recovery image to the device.
usage: fastboot [ <option> ] <command>
commands:
update <filename> reflash device from update.zip
flashall flash boot + recovery + system
flash <partition> [ <filename> ] write a file to a flash partition
erase <partition> erase a flash partition
getvar <variable> display a bootloader variable
boot <kernel> [ <ramdisk> ] download and boot kernel
flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it
devices list all connected devices
reboot reboot device normally
reboot-bootloader reboot device into bootloader
options:
-w erase userdata and cache
-s <serial number> specify device serial number
-p <product> specify product name
-c <cmdline> override kernel commandline
-i <vendor id> specify a custom USB vendor id
-b <base_addr> specify a custom kernel base address
-n <page size> specify the nand page size. default: 2048


http://techbeasts.com/2014/01/05/useful-adb-and-fastboot-commands-and-how-to-them/

Useful ADB and Fastboot Commands and How to Use them


ADB an official tool by Google – you must have heard of it if you have ever  come across Android development or flashing processes. Stands for Android Debug Bridge basically and helps you to establish a connection and communicate between your phone and your computer. ADB has a command line interface, which helps the developers / programmers / users to enter commands and do the stuff they want. ADB also plays an important role when you don’t have access to certain things on your phone, you can simply handle the problem through the command window.
Earlier we posted a guide on “How to Install and Use Android ADB & Fastboot” but missed the important ADB commands that may become handy in some cases, and found necessary to cover them now. In case you’re wondering about Fastboot, it’s a component of ADB that helps you to flash files or make tweaks by accessing Fastboot mode on your device. Well, let’s get back to the topic. In the following post I’ve listed the useful ADB commands, and also explained their use.?????????????
You may want to install Android ADB and Fastboot, and also learn how to use the program actually please go through this guide:

How to Install Android Adb & Fastboot Drivers on Your Windows PC [Guide]


Let’s move forward to the useful commands:
CommandsUse
Basic ADB Commands
adb devicesShows a list of devices attached to the computer.
adb rebootReboots a device connected to the PC.
adb reboot recoveryReboots a device into recovery mode.
adb reboot downloadReboots the connected device into download mode. E.G Download mode on Samsung Galaxy devices.
adb reboot bootloaderReboots a device into Bootloader. Once in Bootloader, you can make further selections here.
adb reboot fastbootReboots a connected device into Fastboot mode.
Installing / Uninstalling / Updating Apps with ADB. 
adb install <ApplicationpathPackagename>.apkADB install let’s you install APK files directly to your phone. To use this command type adb install application path, as shown in the commands part and hit enter key and it will start installing the app on your phone. e.g adb install C:/Users/UsamaM/Desktop/CandyCrushSaga.apk. If process succeeds it will show you “Success” in the command window.
adb install -r <AplicationpathPackagename>.apk
 If you have already installed an app, and you just want to update it then this command will let you do so. e.g adb install -r C:/Users/UsamaM/Desktop/CandyCrushSaga.apk
adb unistall package_namee.g
adb uninstall com.android.chrome
Uninstalls and application from your device. The easiest way to find a package name is, install Package Name Viewer from the play store and find the name of the package under the App Name. If process succeeds it will show you “Success” in the command window.
adb uninstall -K package_namee.g
adb uninstall -K com.android.chrome
Uninstall an app but keeps it’s data and cache directories. If process succeeds it will show you “Success” in the command window.
 Push and Pull files 
 adb rootadb push >e.gadb push c:\users\UsamaM\desktop\Song.mp3 \system\media
adb push filepathonPC/filename.extension path.on.phone.toplace.the.file
 the adb push commands let’s you transfer any files to your phone from your PC. You simply need to provide the path of file on your PC and path where to place this file on your phone.
adb rootadb pull>e.gadb  pull \system\media\Song.mp C:\users\UsamaM\desktop
adb pull [Path of file on phone]  [Path on PC where to place the file]
 Similar to the adb push command. Using adb pull, you can simply pull any files from your phone.
Backing up system and installed apps. 
Before doing this, in your adb folder create a folder Backup and under the backup folder create two folders named SystemApps and InstalledApps.
These folders are necessary as you’ll be pushing the backed up apps to these folders.
adb pull /system/app backup/systemapps backs up all the system apps of your phone to the Systemapps folder that you created in the ADB folder.
 adb pull /system/app backup/installedapps backs up all the installed apps of your phone to the installedapps folder that you created in the ADB folder.
  Background Terminal
 adb shell starts the background terminal.
exitexits the background terminal.
adb shell <command you want>e.g adb shell suswitches to the root of your phone. Please make sure that you’re rooted in case you wish to use adb  shell su.
Fastboot commands
To flash files using fastboot, place the desired files in Fastboot folder or Platform-tools folder that you obtained after installation of Android SDK tools.
Fastboot Flash File.zip Flashes a .zip file to your phone, when your phone is connected in Fastboot mode.
Fastboot Flash recovery recoveryname.imgFlashes a recovery to your phone when it’s connected in Fastboot mode.
Fastboot flash boot bootname.imgFlashes a boot or kernel image when your phone is connected in Fastboot mode.
Fastboot getvar cidshows you the CID of your phone.
Fastboot oem writeCID xxxxxwrites the super CID.
fastboot erase system
fastboot erase data
fastboot erase cache
In case you want to restore a nandroid backup, you’ll have to delete the current system/data/cache of your phone first. Before doing this, it is always recommended to have backed up your system using a custom recovery>backup option and copy the backed up .img files to Fastboot or Platform-tools folder in Android SDK folder. Then performing these commands will erase everything.
fastboot flash system system.img
fastboot flash data data.img
fastboot flash cache cache.img
These commands will restore the backup that you made using a custom recovery on your phone and placed in the Fastboot folder under Android SDK tools.
fastboot oem get_identifier_token
fastboot oem flash Unlock_code.bin
fastboot oem lock
These commands help you to get the identifier token of your phone that can be used for unlocking the bootloader. The second command helps your to flash the bootloader unlock code, and the 3rd commands helps you to lock your phone’s bootloader once again if locking it is actually allowed.
Logcat
adb logcatShows you the real time logs of your phone, these logs represent the ongoing process on your device.It is recommended that you run this command while your device boots up to check what’s going on.
adb logcat > logcat.txtCreates a .txt file containing the logs in the Platform-tools folder or Fastboot folder in Android SDK tools directory.

1 ความคิดเห็น:

  1. of course, there are miu miu replica handbags idouble-disc basis of their own version of the world watch functions, but we accepted that radical reform is the Patek Philippe world. Which launched in 2006 Ref.5130 without a doubt replica rolex discount is the best, most elegant world watches.PP world Brief History Super century watchmaker Louis Cottier (1894-1966) in the 1930s replica breitling watches sale .

    ตอบลบ