Advertisement
Guest User

Untitled

a guest
Oct 20th, 2010
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. C:\Users\admin\Desktop>adb shell
  2. # su
  3. su
  4. # ls -ld /system ; ls -ld /system/etc
  5. ls -ld /system ; ls -ld /system/etc
  6. # busybox ls -ld /system ; ls -ld /system/etc
  7. busybox ls -ld /system ; ls -ld /system/etc
  8. drwxrwxrwx 12 root root 1024 Oct 20 08:07 /system
  9. # busybox ls -ld /system/etc/dhcpcd
  10. busybox ls -ld /system/etc/dhcpcd
  11. drwxrwxrwx 3 system system 1024 Oct 20 16:12 /system/etc/dhcpcd
  12. # busybox ls -l /system/bin/dhcpcd
  13. busybox ls -l /system/bin/dhcpcd
  14. -rwxrwxrwx 1 system system 44540 Sep 21 10:33 /system/bin/dhcpcd
  15. # /system/bin/dhcpcd -ABKL eth0
  16. /system/bin/dhcpcd -ABKL eth0
  17. # system/bin/dhcpcd -ABKL eth0
  18. system/bin/dhcpcd -ABKL eth0
  19. .: Can't open /system/etc/dhcpcd/dhcpcd.enter-hook
  20. .: Can't open /system/etc/dhcpcd/dhcpcd.enter-hook
  21. ^C
  22. C:\Users\admin\Desktop>adb shell
  23. # su
  24. su
  25. # ifconfig eth0
  26. ifconfig eth0
  27. # busybox ifconfig eth0
  28. busybox ifconfig eth0
  29. eth0 Link encap:Ethernet HWaddr 00:90:4C:C5:00:34
  30. inet addr:192.168.2.2 Bcast:192.168.2.255 Mask:255.255.255.0
  31. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  32. RX packets:147 errors:0 dropped:0 overruns:0 frame:0
  33. TX packets:128 errors:0 dropped:0 overruns:0 carrier:0
  34. collisions:0 txqueuelen:1000
  35. RX bytes:20805 (20.3 KiB) TX bytes:19205 (18.7 KiB)
  36.  
  37. # ls -ld /system/etc
  38. ls -ld /system/etc
  39. # busybox ls -ld /system/etc
  40. busybox ls -ld /system/etc
  41. drwxrwxrwx 13 root root 1024 Sep 14 21:05 /system/etc
  42. # chown -R 1000:1000 /system
  43. chown -R 1000:1000 /system
  44. # busybox chown -R 1000:1000 /system
  45. busybox chown -R 1000:1000 /system
  46. # busybox ls -ld /system/etc
  47. busybox ls -ld /system/etc
  48. drwxrwxrwx 13 system system 1024 Sep 14 21:05 /system/etc
  49.  
  50. C:\Users\admin\Desktop>adb shell
  51. # su
  52. su
  53. # busybox ls -lR /system/etc/dhcpcd
  54. busybox ls -lR /system/etc/dhcpcd
  55. /system/etc/dhcpcd:
  56. drwxrwxrwx 2 system system 1024 Oct 20 12:34 dhcpcd-hooks
  57. -rwxrwxrwx 1 system system 1009 Feb 29 2008 dhcpcd-run-hooks
  58. -rwxrwxrwx 1 system system 189 Feb 29 2008 dhcpcd.conf
  59.  
  60. /system/etc/dhcpcd/dhcpcd-hooks:
  61. -rwxrwxrwx 1 system system 182 Feb 28 2008 01-test
  62. -rwxrwxrwx 1 system system 705 Feb 28 2008 20-dns.conf
  63. -rwxrwxrwx 1 system system 808 Feb 28 2008 95-configured
  64.  
  65. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement