Sideloading Content - Hooking Up Nexus 7 to LubuntuLinux
Wondering how to quickly side-load content (e.g. ebooks, movies) onto the Nexus 7 tablet, I set out to connect my LubuntuLinux machine to the Nexus 7.
Playing around with LubuntuLinux and a Nexus 7 tablet, it wasn’t too hard to find the path others had followed to allow one access to the file system. It was pretty simple to type in a few commands and then, in without a problem.
This approach worked perfectly!
Set up a UDEV rule via the terminal by opening the rules file
Code: [Select]
sudo nano -w /etc/udev/rules.d/51-android.rulesAnd entering the following line at the end of the file (be sure to use your user name at the end!):
Code: [Select]
SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", ATTR{idProduct}=="6860", MODE="0600", OWNER=""Now install the tools and set a mount point by entering the following commands one line at a time
Code: [Select]
sudo apt-get install mtpfssudo mkdir /media/GNexussudo chmod 775 /media/GNexusPlug your Galaxy Nexus in, and enter the next line in the same terminal window:
Code: [Select]
sudo mtpfs -o allow_other /media/GNexusDrag and drop through Nautilus, and when you’re done and need to unmount, enter the following:
Code: [Select]
sudo umount mtpfs[Source]
As for OSX it’s also not supported natively, but Google has this app to add support - http://www.android.com/filetransfer/ .
![]()

Sign up for the Texas for Technology Enhanced Education Email List
Everything posted on Miguel Guhlin’s blogs/wikis are his personal opinion and do not necessarily represent the views of his employer(s) or its clients. Read Full Disclosure
var _gaq = _gaq || []; _gaq.push([‘_setAccount’, ‘UA-3445626-5’]); _gaq.push([‘_setDomainName’, ‘mguhlin.org’]); _gaq.push([‘_trackPageview’]); (function() { var ga = document.createElement(‘script’); ga.type = ‘text/javascript’; ga.async = true; ga.src = (‘https:’ == document.location.protocol ? ‘https://ssl’ : ‘http://www’) + ‘.google-analytics.com/ga.js’; var s = document.getElementsByTagName(‘script’)[0]; s.parentNode.insertBefore(ga, s); })();