Yesterday I was looking online to see how can I transfer pictures,files from my Nexus 7 tablet to my desktop computer with the usb cable.. I've found several support forums like this one I'm using right now,someone has already asked a question like mine so I followed the best answer, I typed the commands in the terminal as the helper suggested,then I restarted my desktop pc,after that it didn't connect any more,it connects wireless usually,but since yesterday no connection:( I still have the page/link that shows the answer I've followed (the top one) : How do I connect a Nexus 7 to transfer files?
I'm also copying an pasting the answer I've followed :
''You have to follow a below procedure to share contents between Ubuntu to Nexus 7.
Install the necessary tools using terminal.
sudo apt-get install mtp-tools mtpfs
Connect your Galaxy Nexus to your computer. On your phone, open up the notification drawer, and click on “USB Connection type”. Make sure that MTP is selected.
Type these commands in terminal:
mtp-detect | grep idVendor
mtp-detect | grep idProduct
The output of these commands should give you idVendor and idProduct. Note down the values given, as you'll need them later.
Run this command in terminal:
gksu gedit /etc/udev/rules.d/51-android.rules
A Gedit window should open. Simply Copy and paste below line.
SUBSYSTEM=="usb", ATTR{idVendor}=="VENDORID", ATTR{idProduct}=="PRODUCTID", MODE="0666"
Replace VENDORID
and PRODUCTID
with the idVendor and idProduct you had noted down earlier in Gedit.
Save and close the file. Then, disconnect your phone and run these commands:
sudo service udev restart
sudo mkdir /media/GalaxyNexus
sudo chmod a+rwx /media/GalaxyNexus
sudo adduser YOURUSERNAME fuse
Replace YOURUSERNAME with your Ubuntu user name. Now, run this command:
gksu gedit /etc/fuse.conf
In the Gedit window, remove the # at the beginning of the last line.
You’re almost done! Now, restart your computer, and then run these three commands:
echo "alias android-connect=\"mtpfs -o allow_other /media/GalaxyNexus\"" >> ~/.bashrc
echo "alias android-disconnect=\"fusermount -u /media/GalaxyNexus\"" >> ~/.bashrc
source ~/.bashrc
Again, do re-type the quotes in each command after you’ve copied, otherwise the command won’t work.
Connect your phone again, and then make sure your phone is using MTP, then run this command:
android-connect
You will able to connect the Nexus 7 your to your Ubuntu computer.''
after I did this and restarted my pc,I couldn't connect any more with wireless
ip link
andiw dev
? And with the return of iw dev (likely wlp1s0 or similar), post the return ofip link show wlp1s0
– MrVaykadji Jan 04 '14 at 05:06#
we were talking about is still here and do not have to be added. Your last line of /etc/fuse.conf must begin with a#
, that's the most important. – MrVaykadji Jan 04 '14 at 05:11