Advertisement
hpsaturn

HOWTO Mount Nexus or MTP Device in Debian or Ubuntu

Nov 3rd, 2012
3,006
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.53 KB | None | 0 0
  1. # HOWTO Mount Nexus or MTP Device in Debian or Ubuntu
  2.  
  3. # Install MTP and its tools:
  4. sudo apt-get install mtpfs mtp-tools
  5.  
  6. # Create a mountpoint:
  7. sudo mkdir -p -m 777 /mnt/nexus
  8.  
  9. # Install mod fuse (or permanent in /etc/modules):
  10. sudo modprobe fuse
  11.  
  12. # Plugin your Nexus
  13. # Ignore the "New Device found" notification
  14.  
  15. # Mount the device manually instead:
  16. mtpfs /mnt/nexus
  17.  
  18. # Open your favourite file manager and go to /mnt/nexus and transfer files
  19. # When finished, don't forget to dismount the device:
  20.  
  21. sudo umount /mnt/nexus
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement