Changing System name [duplicate]

I am given an old Ubuntu working system and the previous user had everything on his name so started turning it to my name as typing his name everywhere was bugging me. I tried:

$ usermod -l hussain darhamid

This turned the darhamid@darhamid:$ into hussain@darhamid:$

But I want hussain@darhamid:$ also changed to hussain@hussain. What should I do?

I am using ubuntu 12.04


Solution 1:

You have to change the computers hostname as well.

Edit the hostname file and replace the name

gksudo gedit /etc/hostname

also change the name in hosts

gksudo gedit /etc/hosts

Leave the other stuff there untouched.

For the username, it would be cleaner if you deleted the old user and created your new one.

Solution 2:

You'll have to edit /etc/hostname and /etc/hosts, and replace the old hostname with the new.

PS: On the second thought, I'd probably just reinstall to get a clean system.

Solution 3:

  1. Open a terminal window.

  2. Input the following command and hit Enter: gksudo gedit /etc/hostname

  3. When prompted, enter the administrator password and click the OK button.

  4. The hostname file will open, displaying the current computer name. Replace the current computer name with the desired new name.

  5. Click Save.

  6. Close all open windows and restart your system.


Source: http://www.tech-recipes.com/rx/2732/ubuntu_how_to_change_computer_name/