答案1
您添加的行~/.bashrc
告诉来源 ~/.profile
。然而,Ubuntu 的默认~/.profile
设置是 source ~/.bashrc
。因此,您只需设置一个无限循环:正在~/.bashrc
采购,又正在采购,等等,永远如此。由于每次打开新终端时都会读取它,因此它会进入无限循环,永远不会退出,因此会留下您看到的问题。~/.profile
~/.bashrc
~/.profile
~/.bashrc
由于您可以以图形方式登录,因此只需使用 GUI 编辑器删除该行,就像其他人建议的那样,就可以了。
答案2
使用 GUI 编辑器(例如 geany)进行编辑.bashrc
,然后删除您添加的行。 Ubuntu 中必须默认安装一些 GUI 编辑器。
答案3
新的开始(我确实没有多任务处理的能力)。以恢复模式启动
mv /home/your-user-name/.bashrc home/your-user-name/.bashrc.bak
之后 cp 默认文件
cp /etc/skel/.bashrc /home/your-user-name/.bashrc
然后您必须更改该新文件的所有权。
chown your-user-name:your-user-name /home/your-user-name/.bashrc
重启。