终端中的无限循环

终端中的无限循环

我尝试按照以下步骤将我的 Asus transformer 300T 平板电脑(Android 4.1)连接到 Ubuntu 12.04本教程

然而,在这一步出了问题(我不确定具体是哪一个):

您快完成了!现在,重新启动计算机,然后运行以下三个命令:

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

source ~/.bashrc

现在我的终端不断显示(看起来像无限循环)

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

在我重启电脑后,这种情况仍然会发生。有人能诊断出问题所在吗?

以下是屏幕截图:

在此处输入图片描述

答案1

打开.bashrc文件并编辑你添加的这两行。删除双引号并添加单引号

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

编辑后尝试获取 .bashrc 文件。

相关内容