Rooting methods for devices based on Rockchip RK3066 and Rk3188 are usually only provided for Windows, so if you run Linux as your main operating system, you would either need to find a Windows based devices, or run Windows in a virtual machine. Luckily, Linux users may not have to switch to Windows anymore thanks to the instructions provided in one article that I’ll summarize below. The steps below are for Ubuntu / Debian based systems, but should be easily adaptable to other distributions. Set up ADB access to the device Install adb:
1 |
sudo apt-get install android-tools-adb |
Edit/create /etc/udev/rules.d/51-android.rules with the following line in order to let standard users connect to the device:
1 |
SUBSYSTEM=="usb", ATTR{idVendor}=="2207", MODE="0666", GROUP="plugdev" |
Make sure that the Linux user is part of group “plugdev”:
1 |
groups user |
Reload of the USB access rules to get the latest one on:
1 |
sudo udevadm control --reload-rules |
Add your device USB Vendor ID to adb list. e.g.:
1 |
echo "0x2207" >> ~/.android/adb_usb.ini |
Restart the adb […]