How to access files on Android Mobile to Ubuntu/Linux

Connect your Android mobile to the computer. If the connection is detected by mobile then change the USB connection setting on phone to "Mass storage". Even after this if you are not able to access the files on your Ubuntu, follow below steps.
  1. Connect your mobile using USB cable.
  2. Execute "lsusb" command on terminal as  : $ sudo lsusb
  3. In the output displayed by lsusb command check if your mobile device is listed or not. Ideally it should be displayed with your mobile device vendor ( LG, Samsung, HTC etc...) or with Google Inc. name.
  4. If you are able to locate the device in the list then unplug the device from computer.
  5. Now install the newest Version of "libmtp" by following steps mentioned in the post http://www.humans-enabled.com/2011/12/how-to-fix-samsung-galaxy-nexus-mtp.html
  6. Once you have installed "libmtp", you can connect your device and use gMTP to view the files on device.

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...