Skip to content

Instantly share code, notes, and snippets.

@dolftax
Created October 29, 2014 18:10
Show Gist options
  • Save dolftax/efbbceec78614a29ff29 to your computer and use it in GitHub Desktop.
Save dolftax/efbbceec78614a29ff29 to your computer and use it in GitHub Desktop.
Instructions to set-up tarako device
===== 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