loveyouthx 发表于 2018-9-11 11:01

老铁666!必须支持一波!

js9989 发表于 2018-9-11 13:20

- directs adb to listen on all interfaces for a connection
-d                            - directs command to the only connected USB device
                                 returns an error if more than one USB device is present.
-e                            - directs command to the only running emulator.
                                 returns an error if more than one emulator is running.
-s <specific device>          - directs command to the device or emulator with the given
                                 serial number or qualifier. Overrides ANDROID_SERIAL
                                 environment variable.
-p <product name or path>   - simple product name like 'sooner', or
                                 a relative/absolute path to a product
                                 out directory like 'out/target/product/sooner'.
                                 If -p is not specified, the ANDROID_PRODUCT_OUT
                                 environment variable is used, which must
                                 be an absolute path.
-H                            - Name of adb server host (default: localhost)
-P                            - Port of adb server (default: 5037)
devices [-l]                  - list all connected devices
                                 ('-l' will also list device qualifiers)
connect <host>[:<port>]       - connect to a device via TCP/IP
                                 Port 5555 is used by default if no port number is specified.
disconnect [<host>[:<port>]]- disconnect from a TCP/IP device.
                                 Port 5555 is used by default if no port number is specified.
                                 Using this command with no additional arguments
                                 will disconnect from all connected TCP/IP devices.

device commands:
adb push [-p] <local> <remote>
                               - copy file/dir to device
                                 ('-p' to dis**y the transfer progress)
adb pull [-p] [-a] <remote> [<local>]
                               - copy file/dir from device
                                 ('-p' to dis**y the transfer progress)
                                 ('-a' means copy timestamp and mode)
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 --list         - list all forward socket connections.
                                 the format is a list of lines with the following format:
                                    <serial> " " <local> " " <remote> "\n"
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 forward --no-rebind <local> <remote>
                               - same as 'adb forward <local> <remote>' but fails
                                 if <local> is already forwarded
adb forward --remove <local> - remove a specific forward socket connection
adb forward --remove-all   - remove all forward socket connections
adb reverse --list         - list all reverse socket connections from device
adb reverse <remote> <local> - reverse socket connections
                                 reverse specs are one of:
                                 tcp:<port>
                                 localabstract:<unix domain socket name>
                                 localreserved:<unix domain socket name>
                                 localfilesystem:<unix domain socket name>
adb reverse --norebind <remote> <local>
                               - same as 'adb reverse <remote> <local>' but fails
                                 if <remote> is already reversed.
adb reverse --remove <remote>
                               - remove a specific reversed socket connection
adb reverse --remove-all   - remove all reversed socket connections from device
adb jdwp                     - list PIDs of processes hosting a JDWP transport
adb install [

js9989 发表于 2018-9-11 13:21

- directs adb to listen on all interfaces for a connection
-d                            - directs command to the only connected USB device
                                 returns an error if more than one USB device is present.
-e                            - directs command to the only running emulator.
                                 returns an error if more than one emulator is running.
-s <specific device>          - directs command to the device or emulator with the given
                                 serial number or qualifier. Overrides ANDROID_SERIAL
                                 environment variable.
-p <product name or path>   - simple product name like 'sooner', or
                                 a relative/absolute path to a product
                                 out directory like 'out/target/product/sooner'.
                                 If -p is not specified, the ANDROID_PRODUCT_OUT
                                 environment variable is used, which must
                                 be an absolute path.
-H                            - Name of adb server host (default: localhost)
-P                            - Port of adb server (default: 5037)
devices [-l]                  - list all connected devices
                                 ('-l' will also list device qualifiers)
connect <host>[:<port>]       - connect to a device via TCP/IP
                                 Port 5555 is used by default if no port number is specified.
disconnect [<host>[:<port>]]- disconnect from a TCP/IP device.
                                 Port 5555 is used by default if no port number is specified.
                                 Using this command with no additional arguments
                                 will disconnect from all connected TCP/IP devices.

device commands:
adb push [-p] <local> <remote>
                               - copy file/dir to device
                                 ('-p' to dis**y the transfer progress)
adb pull [-p] [-a] <remote> [<local>]
                               - copy file/dir from device
                                 ('-p' to dis**y the transfer progress)
                                 ('-a' means copy timestamp and mode)
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 --list         - list all forward socket connections.
                                 the format is a list of lines with the following format:
                                    <serial> " " <local> " " <remote> "\n"
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 forward --no-rebind <local> <remote>
                               - same as 'adb forward <local> <remote>' but fails
                                 if <local> is already forwarded
adb forward --remove <local> - remove a specific forward socket connection
adb forward --remove-all   - remove all forward socket connections
adb reverse --list         - list all reverse socket connections from device
adb reverse <remote> <local> - reverse socket connections
                                 reverse specs are one of:
                                 tcp:<port>
                                 localabstract:<unix domain socket name>
                                 localreserved:<unix domain socket name>
                                 localfilesystem:<unix domain socket name>
adb reverse --norebind <remote> <local>
                               - same as 'adb reverse <remote> <local>' but fails
                                 if <remote> is already reversed.
adb reverse --remove <remote>
                               - remove a specific reversed socket connection
adb reverse --remove-all   - remove all reversed socket connections from device
adb jdwp                     - list PIDs of processes hosting a JDWP transport
adb install [

hjg7632 发表于 2018-9-11 13:28

高手在当贝啊!学习了

cnmmir 发表于 2018-9-11 14:16

先把机器刷成砖,再把砖头刷成机器,我都佩服自己在ZNDS学到的刷机技术!

zhxang 发表于 2018-9-11 14:20

后排支持一下!!!

pengyu1986 发表于 2018-9-11 14:57

看看!!!!!!!!!!

jk12345 发表于 2018-9-11 15:59

老铁666!必须支持一波!

grf000 发表于 2018-9-11 16:19

准备刷机

wxz887 发表于 2018-9-11 19:51

需学习
页: 170 171 172 173 174 175 176 177 178 179 [180] 181 182 183 184 185 186 187 188 189
查看完整版本: 斐讯N1和T1降级关键分区恢复线刷功能, fastboot 烧录