2021-05-12 14:32:11
如何修改Ubuntu終端使用者名稱顏色修改為紅色
Linux作業系統:Ubuntu 14.04
由於輸入特定符號會導致亂碼,亂碼部分用.............顯示,有些截圖顯示!!!!!!!!
整個操作程式碼流程圖片和最終顯示結果
輸入>echo $PS1
顯示:如上圖
在個人使用者資料夾輸入
輸入gedit ~/.bashrc
修改這幾行程式碼
if [ "$color_prompt" = yes ]; then
PS1=....
else
PS1==...
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
重改為:
# if [ "$color_prompt" = yes ]; then
#PS1='$..........[ 33[01;32m]u@h[ 33[00m]:[ 33[01;34m]w[ 33[00m]$ '
# else
# PS1='$........................u@h:w$ '
# fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
然後再檔案的末尾一行加上:
(下一行是截圖)PS1='$................... 33[01;31m]u[ 33[00m]@h:w$ '
儲存後退出,然後source一下,也就是輸入>source ~/.bashrc
在root資料夾裡面位置 /root也同樣操作一遍。
以上是我個人的修改。
以下是網上的參考:(再下面是截圖)
customer: PS1='$........................[ 33[01;32m]u@h[ 33[00m]:[ 33[01;34m]w[ 33[00m]$ '
root: PS1='$........................[ 33[01;32m]u@h[ 33[00m]:[ 33[01;34m]w[ 33[00m]$ '
相關文章