जवाबों:
अपने टर्मिनल में जाओ Preferences फलक और नेविगेट करने के लिए;
Settings & Gt; Advanced
क्लिक करें Display Terminal as: (या ऐसा ही कुछ, वहां अंग्रेजी पर भाषा नहीं मिली है) और एक गैर-रंग प्रदर्शन-विधि का चयन करें;

मैंने इसे bash_profile फ़ाइल में जोड़कर हल किया:
Bash_profile खोलें:
vi .bash_profile
फ़ाइल के अंत में इसे जोड़ें:
export PS1="\e[0;34m[\u@\h \w]\$ \e[m "
फ़ाइल को सहेजें और बंद करें।
अंतिम परिणाम: पथ नीले रंग में है 0;34, \u आपको उपयोगकर्ता नाम देता है \h आप मेजबान नाम कम कर देता है और \w आपको पूरी वर्किंग डायरेक्टरी देता है।
उपलब्ध पूर्ण विकल्प:
\u = your username
\H = full hostname, e.g. bob.example.com
\h = reduced hostname, e.g. bob
\w = full working directory, e.g. /home/jamie/bin
\W = basename of the working directory, e.g. bin
\t = time in 24-hour format
\# = command number
\$ = root identifier; $ for regular users, # for root
\T = time in 12-hour format
\l = terminal device, e.g. tty4
\j = number of background/suspended processes
/etc/bashrc