21

I would like to change my "Device name" as shown in the settings panel. How do I do this?

enter image description here

Anwar
  • 77,855
Victor S
  • 692

5 Answers5

28

Execute the following command using a terminal:

sudo sed -i 's/present-host-name/new-host-name/' /etc/hosts
sudo sed -i 's/present-host-name/new-host-name/' /etc/hostname

You can check your present-host-name by cat /etc/hostname or hostname.

Then reboot the computer, to see the changes.

vine_user
  • 2,871
10
  • Open a terminal and issue the command

    gksu gedit /etc/hosts
    
  • Then change the line

    127.0.1.1   victor-System-Product-Name
    

    with

     127.0.1.1    your-desired-name
    
  • Then also open the file /etc/hostname with command gksu gedit /etc/hostname and change the hostname there to reflect the new name.

  • Then reboot the computer, to see the changes

Anwar
  • 77,855
4

You can use the built in service hostnamectl

sudo hostnamectl set-hostname [NEW-HOSTNAME]

replacing [NEW-HOSTNAME] with the hostname you would like this should work immediately on most things but I would reboot for good measure.

Zanna
  • 72,312
Ember
  • 161
2

Since there are plenty of ways to get something done here is one more:

While in your root directory:

cd /etc
sudo vi hostname  

Type in your admin password, press Enter.

Press i to 'insert' and change existing device name to the desired device name.

Press Esc and type :wq!, press Enter.

Restart the system for the change to take affect.

Seth
  • 59,332
0

Run this command , it will open up Text editor

sudo gedit /etc/hostname 

Replace the present name to your Desired name. Save and close. Reboot for it to take effect.

atenz
  • 12,858