3

Using my Android Lg G2 I have been trying to mount via mtp and have not found an easy way. Does anyone have a simple solution to this problem?

Edit: looking for a GUI application

Jared
  • 402

1 Answers1

6

Setup this

sudo apt-get install mtpfs
sudo mkdir -m 775 /media/onex
sudo mtpfs -o allow_other /media/onex
gksudo gedit /etc/udev/rules.d/51-android.rules

and add the following line:

SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666"

and then (back in terminal):

sudo service udev restart

More detailed guide and How to do it , chk this XDA Post

David Foerster
  • 36,264
  • 56
  • 94
  • 147
  • After the third line, one gets: Unable to open ~/.mtpz-data for reading, MTPZ disabled.Listing raw device(s) No raw devices found. – Mephisto Nov 08 '17 at 05:11