Guest User

Untitled

a guest
Jan 21st, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1.  
  2. gedit ~.bashrc
  3.  
  4. in the file that opens make sure it has the following pasted into it:
  5. export PATH=${PATH}:~/android/sdk/platform-tools
  6.  
  7. save and close
  8.  
  9. type:
  10. chmod a+x ~.bashrc
  11.  
  12.  
  13.  
  14. next step type:
  15.  
  16. sudo gedit /etc/udev/rules.d/51-android.rules
  17. (when you hit enter you will have to enter your root password)
  18.  
  19. in the file paste:
  20. SUBSYSTEMS=="usb",ATTRS{idvendor}=="04e8",ATTRS{idproduct}=="685e" MODE="0666"
  21.  
  22. save and close
  23.  
  24. in the terminal type:
  25. sudo chmod a+x /etc/udev/rules.d/*
  26.  
  27. (again enter your root password)
  28.  
  29.  
  30.  
  31.  
  32. finallydo this command:
  33. sudo gedit /etc/rc.local
  34. in the file that opens scroll all the way to the bottom and above where the exit 0 it paste
  35. /home/linux_enigma/android/sdk/platform-tools/adb start-server
  36. ** make sure the above path matched where you unpacked the sdk
  37.  
  38. then reboot your computer
Add Comment
Please, Sign In to add comment