Reading
2
Comments
I could not access my Android Device on Ubuntu when I ran the command ./adb devices.
The solution was to do the following:-
sudo ./adb kill-server
sudo ./adb start-server
After the start-server command you should get this
* daemon started successfully *
Now run ./adb devices.
Voila!
Android
The solution was to do the following:-
sudo ./adb kill-server
sudo ./adb start-server
After the start-server command you should get this
* daemon started successfully *
Now run ./adb devices.
Voila!
2 comments:
actually sometimes that message appears if you haven't define the manufacturer code and the phone model in your 51-android.rules file.
It's pretty simple to do, in the terminal type lsusb, you will see all your usb devices listed, check where your android phone/tablet is appearing and take note of the manufacturer and phone model code. Then edit the file /etc/udev/rules.d/51-android.rules
and add the device, kill and restart adb and voila, have fun :)
Merci bien Vladu :)
Post a Comment