Guest User

Untitled

a guest
Jun 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.32 KB | None | 0 0
  1. Microsoft Windows [Version 6.1.7601]
  2. Copyright (c) 2009 Microsoft Corporation. Med ensamrätt.
  3.  
  4. C:\Users\JoakimAddo>cd c:\android-sdk-windows\platform-tools
  5.  
  6. c:\android-sdk-windows\platform-tools>adb push tacoroot.bin /data/local/tmp/taco
  7. root
  8. adb server is out of date. killing...
  9. * daemon started successfully *
  10. cannot stat 'tacoroot.bin': No such file or directory
  11.  
  12. c:\android-sdk-windows\platform-tools>adb push tacoroot.sh /data/local/tmp/tacor
  13. oot
  14. adb server is out of date. killing...
  15. * daemon started successfully *
  16. cannot stat 'tacoroot.sh': No such file or directory
  17.  
  18. c:\android-sdk-windows\platform-tools>adb push tacoroot.sh /data/local/tmp/tacor
  19. oot
  20. adb server is out of date. killing...
  21. * daemon started successfully *
  22. cannot stat 'tacoroot.sh': No such file or directory
  23.  
  24. c:\android-sdk-windows\platform-tools>adb push tacoroot.bin /data/local/tmp/taco
  25. root
  26. adb server is out of date. killing...
  27. * daemon started successfully *
  28. cannot stat 'tacoroot.bin': No such file or directory
  29.  
  30. c:\android-sdk-windows\platform-tools>adb push tacoroot.sh /data/local/tmp/tacor
  31. oot
  32. adb server is out of date. killing...
  33. * daemon started successfully *
  34. 519 KB/s (2129 bytes in 0.004s)
  35.  
  36. c:\android-sdk-windows\platform-tools>adb push misc_version /data/local/tmp/
  37. adb server is out of date. killing...
  38. * daemon started successfully *
  39. 1886 KB/s (367096 bytes in 0.190s)
  40.  
  41. c:\android-sdk-windows\platform-tools>adb push flashgc /data/local/tmp
  42. adb server is out of date. killing...
  43. * daemon started successfully *
  44. 1841 KB/s (712688 bytes in 0.378s)
  45.  
  46. c:\android-sdk-windows\platform-tools>adb push pd98img.zip /sdcard/
  47. adb server is out of date. killing...
  48. * daemon started successfully *
  49. cannot stat 'pd98img.zip': No such file or directory
  50.  
  51. c:\android-sdk-windows\platform-tools>adb push pd98img.zip /sdcard
  52. adb server is out of date. killing...
  53. * daemon started successfully *
  54. cannot stat 'pd98img.zip': No such file or directory
  55.  
  56. c:\android-sdk-windows\platform-tools>adb push PD98IMG.zip /sdcard
  57. adb server is out of date. killing...
  58. * daemon started successfully *
  59. cannot stat 'PD98IMG.zip': No such file or directory
  60.  
  61. c:\android-sdk-windows\platform-tools>ADB PUSH PD98IMG.ZIP /SDCARD/
  62. Android Debug Bridge version 1.0.29
  63.  
  64. -d - directs command to the only connected USB devic
  65. e
  66. returns an error if more than one USB device is
  67. present.
  68. -e - directs command to the only running emulator.
  69. returns an error if more than one emulator is r
  70. unning.
  71. -s <serial number> - directs command to the USB device or emulator w
  72. ith
  73. the given serial number. Overrides ANDROID_SERI
  74. AL
  75. environment variable.
  76. -p <product name or path> - simple product name like 'sooner', or
  77. a relative/absolute path to a product
  78. out directory like 'out/target/product/sooner'.
  79.  
  80. If -p is not specified, the ANDROID_PRODUCT_OUT
  81.  
  82. environment variable is used, which must
  83. be an absolute path.
  84. devices - list all connected devices
  85. connect <host>[:<port>] - connect to a device via TCP/IP
  86. Port 5555 is used by default if no port number
  87. is specified.
  88. disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
  89. Port 5555 is used by default if no port number
  90. is specified.
  91. Using this command with no additional arguments
  92.  
  93. will disconnect from all connected TCP/IP devic
  94. es.
  95.  
  96. device commands:
  97. adb push <local> <remote> - copy file/dir to device
  98. adb pull <remote> [<local>] - copy file/dir from device
  99. adb sync [ <directory> ] - copy host->device only if changed
  100. (-l means list but don't copy)
  101. (see 'adb help all')
  102. adb shell - run remote shell interactively
  103. adb shell <command> - run remote shell command
  104. adb emu <command> - run emulator console command
  105. adb logcat [ <filter-spec> ] - View device log
  106. adb forward <local> <remote> - forward socket connections
  107. forward specs are one of:
  108. tcp:<port>
  109. localabstract:<unix domain socket name>
  110. localreserved:<unix domain socket name>
  111. localfilesystem:<unix domain socket name>
  112. dev:<character device name>
  113. jdwp:<process pid> (remote only)
  114. adb jdwp - list PIDs of processes hosting a JDWP transport
  115.  
  116. adb install [-l] [-r] [-s] <file> - push this package file to the device and i
  117. nstall it
  118. ('-l' means forward-lock the app)
  119. ('-r' means reinstall the app, keeping its data
  120. )
  121. ('-s' means install on SD card instead of inter
  122. nal storage)
  123. adb uninstall [-k] <package> - remove this app package from the device
  124. ('-k' means keep the data and cache directories
  125. )
  126. adb bugreport - return all information from the device
  127. that should be included in a bug report.
  128.  
  129. adb backup [-f <file>] [-apk|-noapk] [-shared|-noshared] [-all] [-system|-nosy
  130. stem] [<packages...>]
  131. - write an archive of the device's data to <file>
  132. .
  133. If no -f option is supplied then the data is wr
  134. itten
  135. to "backup.ab" in the current directory.
  136. (-apk|-noapk enable/disable backup of the .apks
  137. themselves
  138. in the archive; the default is noapk.)
  139. (-shared|-noshared enable/disable backup of the
  140. device's
  141. shared storage / SD card contents; the defau
  142. lt is noshared.)
  143. (-all means to back up all installed applicatio
  144. ns)
  145. (-system|-nosystem toggles whether -all automat
  146. ically includes
  147. system applications; the default is to inclu
  148. de system apps)
  149. (<packages...> is the list of applications to b
  150. e backed up. If
  151. the -all or -shared flags are passed, then t
  152. he package
  153. list is optional. Applications explicitly g
  154. iven on the
  155. command line will be included even if -nosys
  156. tem would
  157. ordinarily cause them to be omitted.)
  158.  
  159. adb restore <file> - restore device contents from the <file> backup
  160. archive
  161.  
  162. adb help - show this help message
  163. adb version - show version num
  164.  
  165. scripting:
  166. adb wait-for-device - block until device is online
  167. adb start-server - ensure that there is a server running
  168. adb kill-server - kill the server if it is running
  169. adb get-state - prints: offline | bootloader | device
  170. adb get-serialno - prints: <serial-number>
  171. adb status-window - continuously print device status for a specifie
  172. d device
  173. adb remount - remounts the /system partition on the device re
  174. ad-write
  175. adb reboot [bootloader|recovery] - reboots the device, optionally into the boo
  176. tloader or recovery program
  177. adb reboot-bootloader - reboots the device into the bootloader
  178. adb root - restarts the adbd daemon with root permissions
  179. adb usb - restarts the adbd daemon listening on USB
  180. adb tcpip <port> - restarts the adbd daemon listening on TCP on th
  181. e specified port
  182. networking:
  183. adb ppp <tty> [parameters] - Run PPP over USB.
  184. Note: you should not automatically start a PPP connection.
  185. <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
  186. [parameters] - Eg. defaultroute debug dump local notty usepeerdns
  187.  
  188. adb sync notes: adb sync [ <directory> ]
  189. <localdir> can be interpreted in several ways:
  190.  
  191. - If <directory> is not specified, both /system and /data partitions will be u
  192. pdated.
  193.  
  194. - If it is "system" or "data", only the corresponding partition
  195. is updated.
  196.  
  197. environmental variables:
  198. ADB_TRACE - Print debug information. A comma separated list
  199. of the following values
  200. 1 or all, adb, sockets, packets, rwx, usb, sync
  201. , sysdeps, transport, jdwp
  202. ANDROID_SERIAL - The serial number to connect to. -s takes prior
  203. ity over this if given.
  204. ANDROID_LOG_TAGS - When used with the logcat option, only these de
  205. bug tags are printed.
  206.  
  207. c:\android-sdk-windows\platform-tools>adb push PD98IMG.zip /sdcard/
  208. adb server is out of date. killing...
  209. * daemon started successfully *
  210. cannot stat 'PD98IMG.zip': No such file or directory
  211.  
  212. c:\android-sdk-windows\platform-tools>adb push RUU_Ace_HTC_WWE_1.24.405.1_Radio_
  213. 12.27.60.14b_26.02.00.29_M4_release_151852_signed /scdcard/
  214. adb server is out of date. killing...
  215. * daemon started successfully *
  216. cannot stat 'RUU_Ace_HTC_WWE_1.24.405.1_Radio_12.27.60.14b_26.02.00.29_M4_releas
  217. e_151852_signed': No such file or directory
  218.  
  219. c:\android-sdk-windows\platform-tools>dir
  220. Volymen i enhet C har ingen etikett.
  221. Volymens serienummer är 0C60-71AD
  222.  
  223. Innehåll i katalogen c:\android-sdk-windows\platform-tools
  224.  
  225. 2012-02-11 05:19 <KAT> .
  226. 2012-02-11 05:19 <KAT> ..
  227. 2012-02-11 02:42 824 320 aapt.exe
  228. 2012-02-11 02:42 162 816 adb.exe
  229. 2012-02-11 02:42 96 256 AdbWinApi.dll
  230. 2012-02-11 02:42 60 928 AdbWinUsbApi.dll
  231. 2012-02-11 02:42 220 672 aidl.exe
  232. 2012-01-01 17:09 <KAT> CunningLogic-TacoRoot-3b6fae6
  233. 2012-02-11 05:11 14 507 CunningLogic-TacoRoot-3b6fae6.zip
  234. 2012-02-11 02:42 132 608 dexdump.exe
  235. 2012-02-11 02:42 2 618 dx.bat
  236. 2012-02-11 02:42 70 144 fastboot.exe
  237. 2012-02-11 05:02 712 688 flashgc
  238. 2011-07-26 10:39 9 796 fre3vo
  239. 2012-02-11 02:42 <KAT> lib
  240. 2012-01-01 17:09 35 147 LICENSE
  241. 2012-02-11 02:42 19 318 784 llvm-rs-cc.exe
  242. 2012-01-21 17:35 367 096 misc_version
  243. 2011-01-10 23:55 5 092 misc_version.c
  244. 2012-02-11 02:42 377 618 NOTICE.txt
  245. 2012-02-11 03:17 301 004 498 PD98IMG.zip.zip
  246. 2012-01-01 17:09 1 322 README
  247. 2012-02-11 02:42 <KAT> renderscript
  248. 2012-02-11 05:12 302 227 850 RUU_Ace_HTC_WWE_1.24.405.1_Radio_12.27.60.14
  249. b_26.02.00.29_M4_release_151852_signed.zip
  250. 2012-02-11 02:42 207 source.properties
  251. 2012-01-01 17:09 2 129 tacoroot.sh
  252. 21 fil(er) 625 647 096 byte
  253. 5 katalog(er) 49 755 721 728 byte ledigt
  254.  
  255. c:\android-sdk-windows\platform-tools>
Add Comment
Please, Sign In to add comment