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.rules

And 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 mtpfs
sudo mkdir /media/GNexus
sudo chmod 775 /media/GNexus

Plug your Galaxy Nexus in, and enter the next line in the same terminal window:

Code: [Select]
sudo mtpfs -o allow_other /media/GNexus

Drag 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/




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); })();


Discover more from Another Think Coming

Subscribe to get the latest posts sent to your email.

2 comments

Leave a comment