Quote:
Originally posted by nny0000
also it seems that my prompt is not uniform throught the shells (one shell gives bash-2.05 and the other gives out root@localhost) how can i make them all root@localhost?
|
This is setup in your .bashrc file or /etc/profile. If your a regular user that gets the bash-2.05 prompt and only get root@localhost when your logged in as root, you need to create a .bashrc file for your user in their home directory.
Simple way of doing it is this:
cat /etc/profile > /home/<username>/.bashrc
This will copy profile and create the file .bashrc. Then you can go edit it accordingly to your desire, etc.