2

I have tried to connect my Asus transformer 300T tablet (android 4.1 ) to Ubuntu 12.04 by following the steps in this tutorial.

However something went wrong in this step (I am not sure which exactly ):

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

and now my terminal is repeatedly showing non-stop (seems like an infinite loop)

alias: command not found
alias android-disconnect=”fusermount -u /media/TransformerT300T”

This happens even after I restarted my computer. Can anyone diagnose what is going wrong?

Here is a screenshoot:

enter image description here

cyc115
  • 125
  • 6
  • Here are some alternative instructions, if you are willing to give them a try: http://askubuntu.com/questions/216246/ubuntu-nexus-7-as-usb-device-does-not-work – earthmeLon Nov 13 '12 at 01:33

1 Answers1

2

Open .bashrc file and edit those two lines you added. Remove the double quotes and add single quotes

alias android-connect='mtpfs -o allow_other /media/GalaxyNexus'
alias android-disconnect='fusermount -u /media/GalaxyNexus'

After editing try to source the .bashrc file.

devav2
  • 36,312