我是新手,使用 Ubuntu v 13.10,在自动更新后,当我启动终端时
而不是来:
naveen@navyad$
它就像
~
(红色波浪符号)
naveen@naveen-Lenovo-G580$
(蓝色)
所有ls
目录都变成蓝色(之前是白色)
有人可以帮忙解决这个问题吗?
更新 当目录被遍历时:
naveen@naveen-Lenovo-G580$ cd temp
就像
~/tmp naveen@naveen-Lenovo-G580$
答案1
终端应该是这样的。
您可以更改其在菜单中显示的颜色Edit,请查找Profile Preferences。
代表~
您当前所在的目录。~
表示它在您的主目录中。如果您更改终端所在的目录:
cd ~/Desktop
更改目录/home/USERNAME/Desktop
你会得到:
如果你运行ls
,你将获得文件夹的内容~/Desktop
,不包括隐藏文件(以 开始.
,以 结束~
)
另一部分的格式如下:
USERNAME@HOSTNAME
如上所示,我的用户名是wmobbs
,计算机的主机名是whm2
。
您可以通过运行以下命令来找到计算机的主机名:
cat /etc/hostname
这将给出文件的内容/etc/hostname
。
wmobbs@whm2:~$ cat /etc/hostname
whm2
wmobbs@whm2:~$
因此它的完整公式是:
USERNAME@HOSTNAME:/PATH/TO/DIRECTORY$
如果您想要获得动态着色,如上图所示,请更改以下几行:
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=no
在~/.bashrc
文件中:
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
您应该能够通过将其更改为 来摆脱它,或者通过在开头no
添加 来将其注释掉。#