-
-
Save seinlin/478866b4b03fb9e464f4acb64d38fb72 to your computer and use it in GitHub Desktop.
Instructions to set-up tarako device
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
===== Install adb ===== | |
Open a terminal window and type: | |
sudo apt-get install android-tools-adb android-tools-fastboot | |
===== Configure usb ===== | |
Then type: | |
sudo nano /etc/udev/rules.d/51-android.rules | |
And enter these lines into the file (note: this adds rules for keon, ZTE Open, and tarako): | |
SUBSYSTEM==”usb”, ATTR{idVendor}==”05c6″, ATTR{idProduct}==”8013″, MODE=”0666″ | |
SUBSYSTEM=="usb", ATTR{idVendor}=="19d2", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="1782", MODE="0666" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", MODE="0666" | |
Type Ctrl + X to exit, then answer Y to save changes. | |
In a terminal, type: | |
chmod a+r /etc/udev/rules.d/51-android.rules | |
Type this command to initialize adb and create some other config files that need to be edited: | |
adb devices | |
Then: | |
sudo nano ~/.android/adb_usb.ini | |
And enter this one line: | |
0x1782 | |
Type Ctrl + X to exit, then answer Y to save changes. | |
In a terminal, type: | |
sudo service udev restart | |
===== Restart adb as root ===== | |
Then: | |
adb kill-server | |
sudo adb start-server | |
adb devices |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment