ubuntu终端中的命令错误

时间:2012-01-09 16:49:01

标签: android ubuntu ubuntu-10.04 android-4.0-ice-cream-sandwich

我使用了一个教程,允许我使用MTP在我的ubuntu机器上访问我的Galaxy Nexus,由于某些原因它无法用android 4.0手动工作。

这是我使用的教程: http://www.omgubuntu.co.uk/2011/12/how-to-connect-your-android-ice-cream-sandwich-phone-to-ubuntu-for-file-access/

我得到了你使用'echo'的部分而我输错了,这是我做错的部分:

echo “alias android-connect=\”mtpfs -o allow_other /media/GalaxyNexus\”" >> ~/.bashrc

echo “alias android-disconnect=\”fusermount -u /media/GalaxyNexus\”" >> ~/.bashrc

source ~/.bashrc

我输入这个单词alia而不是别名,现在我无法正确运行脚本,这意味着我无法将任何内容与我的关系进行比较。当我打开一个终端窗口时,我会在顶部发出警告:

No command 'alia' found, did you mean:
 Command 'ali' from package 'nmh' (universe)
 Command 'ali' from package 'mailutils-mh' (universe)
 Command 'alsa' from package 'alsa-base' (main)
alia: command not found

有没有办法我可以重新启动,删除命令,我不是最好的命令行,我尝试但有时很难找到你在互联网上寻找的帮助,而不去像这样的网站和问。

感谢。

3 个答案:

答案 0 :(得分:2)

您可以手动编辑.bashrc文件以清除情况。

你可以尝试打开一个shell:

vi .bashrc

或者,如果您更喜欢其他编辑:

nano .bashrc

或进入窗口管理器:

gedit .bashrc

答案 1 :(得分:1)

使用真实的引号:" is not “

答案 2 :(得分:1)

运行以下内容:

echo "alias android-connect=\"mtpfs -o allow_other /media/GalaxyNexus\"" >> ~/.bashrc
echo "alias android-disconnect=\"fusermount -u /media/GalaxyNexus\"" >> ~/.bashrc
source ~/.bashrc

或者使用您选择的编辑器将以下行添加到〜/ .bashrc中:

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

然后运行:

source ~/.bashrc