For uploading a file to the phone/tablet via USB a special software is needed. This software called adb. Cars fast as lightning app. It is an android tools that also being used for the Firefox OS. (more info)
Because adb is compatible with Android and Firefox OS both are describe here.
King trumpet serial number search engine.
What we want is to connect the device in adb mode.
'Remote debugging' must be enabled on the phone/tablet for the adb tools to be able to connect.
On your device, in Settings -> Device information -> More Information -> Developer
Remote debugging: Enable
Android:Setting -> Developer options -> Usb debugging -> enabled
Linux version:
Install and setup the USB adb tool in Ubuntu 13.10
#Installing adbsudo apt-get install android-tools-adb android-tools-fastboot
#create a file with your udev rules. This will give the ZTE open the permission to connect to the linux system via USB
sudo nano /etc/udev/rules.d/60-fxos
--------------------------------------
Copy the following 2 lines in your newly created file:
SUBSYSTEM'usb', ATTR{idVendor}'19d2', MODE='0666', GROUP='plugdev'
SUBSYSTEM'usb', ATTR{idVendor}'18d1', MODE='0666', GROUP='plugdev'
save and close nano editor Ctrl-o , Ctrl-x
--------------------------------------
18d1 is generic android device.
--------------------------------------
#update permissions of the 60-fxos file
sudo chmod 644 /etc/udev/rules.d/60-fxos
#Restart udev
sudo service udev restart
On this step my advice is to restart your computer to restart properly adb and to remap udev.
Windows version:
Install and setup the USB adb tool in Windows
On windows download the
adb driver: (32-bit or 64-bit)
https://www.topnotchtablets.com/installADBdriver
When you connect an android of ZTE open on windows XP. the operating system will not recognise this. That is why you need to install the driver. If the driver installation does not see the device after you have connected. Go to device manager and select 'update driver'.
Then the driver installation will continue and finish it. After this driver installation the actual adb brogram must be installed.
The adb program installation: (32/64 bit are the same)
http://forum.xda-developers.com/showthread.php?p=42407269
Both the program can be installed from the link supplied. Or use my local copy.
Connect to the phone.
ZTE open device is named 'roamer2'. Other devices have other names. The most important things is that a device is found, after sending command 'adb devices' to the device
Linux:Check that your device is recognised by the adb
sudo adb kill-server
sudo adb start-server
sudo adb devices
>List of devices attached
>roamer2 device
if 'roamer2' does not appear then check the all previous step.
Start cmd
type the next 3 lines
adb kill-server
adb start-server
adb devices
>List of devices attached
>roamer2 device
if 'roamer2' does not appear then check the all previous step.