Sepero
Linux Guru
Click here for How to Root Insignia Flex 8
Merry Christmas, I recently got this tablet. This advice is only for NS-14T002 (as far as I know). How to get ADB access.
Enable USB Debugging
ADB Access
I got the information on getting adb access here. It basically goes like this on your computer:
For these next commands, you will need the linux adb binary. Reconnect your tablet via usb and run these commands:
You should see your device listed under "List of devices attached". You can now access the tablet terminal shell with "adb shell".
PS.
This tablet is also mistaken for model NS-14TOO2 (Someone in marketing put "OO" on the box instead of "00" zero zero). You will find NS-14T002 under the model in the device settings.
Merry Christmas, I recently got this tablet. This advice is only for NS-14T002 (as far as I know). How to get ADB access.
Enable USB Debugging
- Start your tablet
- Go into Settings > About tablet
- Tap on "Build number" 7 times. It will enable a new menu "Developer options"
- Go into Developer options
- Turn USB Debugging on
ADB Access
I got the information on getting adb access here. It basically goes like this on your computer:
Code:
echo "0x2207" >> ~/.android/adb_usb.ini
echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="2207", MODE="0666"' | sudo tee -a /etc/udev/rules.d/51-android.rules
sudo udevadm control --reload-rules
Code:
adb kill-server
adb start-server
adb devices
PS.
This tablet is also mistaken for model NS-14TOO2 (Someone in marketing put "OO" on the box instead of "00" zero zero). You will find NS-14T002 under the model in the device settings.