We all know that computers over a local area network are identified by IP addressed. Instead of expecting others to remember your IP, you can share with them your computer name which is also called a hostname. A hostname lets other users access your system locally by remembering a more user-friendly form of identification. This is exactly how you access web pages on the Internet by just remembering URLs instead of the Numeric IP of a web-server. In this article, we will tell you how you can set a new hostname for your Linux system through the command line and GUI.

We have run the commands and processes mentioned in this article on a Debian 10 Buster system but you can easily replicate them on most Linux distros.

Changing the Hostname through the Linux UI

The Linux UI can only be used to change what you can call a pretty hostname. This form of hostname is a user-friendly free-form computer name that is mostly used in the UI environments. Contrary to that, a static hostname is the traditional computer name that is set by the user in the /etc/hostname and /etc/hosts file.

The pretty hostname can be changed through your system’s Settings utility. There are two ways in which you can access the system Settings.

Access the Application Launcher through the Super/Windows key and then enter the keywords ‘settings’ in the search bar as follows: How to Set a New Hostname for your Linux System System Administration

Click the downward arrow in the top panel of the Debian/Ubuntu desktop and then click on the ‘settings’ icon from the following drop-down menu:How to Set a New Hostname for your Linux System System Administration

In the Settings utility, select the Details tab from the left panel and then select the About tab on it to open the About settings view. This is how the view looks like:

How to Set a New Hostname for your Linux System System Administration

The Device name that you see on this view is the pretty hostname of your computer. You can change this name to a new one by simply editing the Device name text box. As soon as you enter a new name, your system will recognize it as the new pretty hostname of your system.

Tip: One easy and quick  way to access the “About” settings is to enter the keyword ‘device’ in the Application Launcher as follows:

How to Set a New Hostname for your Linux System System Administration

Follow the rest of the article in order to learn how you can change the static hostname of your Linux system, both temporarily and permanently.

Changing the Hostname through the Command Line

Through the command line, you get a lot more power on Linux in order to make detailed system configurations. In order to launch the default command line application on Linux Debian and Ubuntu, open the Application Launcher and enter the ‘Terminal’ keywords as follows:

How to Set a New Hostname for your Linux System System Administration

As the Terminal opens, you can change the static hostname through the following two ways:

  • Change the hostname manually through the /etc/hostname and /etc/hosts file
  • Change the hostname using the hostnamectl command

Change the hostname manually through the /etc/hostname and /etc/hosts file

The hostname command is the easiest way to change the hostname. However, the change is only temporary and the hostname changes to its previous value when you restart the system. Nevertheless, we will explain how you can use this command. Enter the following command to fetch your current hostname:

How to Set a New Hostname for your Linux System System Administration

You can then use the following command as sudo, in order to set a new temporary hostname.

$ sudo hostname “new-hostname”

Please note that only an authorized user can change static hostnames on Linux.

Example:

$ sudo hostname debian-linux

How to Set a New Hostname for your Linux System System Administration

In the above example, I changed the hostname and then verified the change through the hostname command.

In order to permanently change the hostname, that stays the same even after restart, please follow these steps:

Open the /etc/hostname file in one of the available text editors. For example, we used the nano editor to open the file as follows:

$ sudo nano /etc/hostname

How to Set a New Hostname for your Linux System System Administration

Change the hostname to the one you wish and then hit Ctrl x. This will ask you if you want to save the changes. Enter Y and the changes will be saved to the hostname file.

The next step is to change the /etc/hosts file in a similar manner. Open the file as follows:

Then, set the new static hostname that is listed against the IP: 127.0.1.1 and then save the file.

How to Set a New Hostname for your Linux System System Administration

Now when you restart your system, the new static hostname will be set which will not revert back on a system restart.

Change the hostname using the hostnamectl command

The systemd utility on Linux is the most efficient method to change both static and pretty hostnames. If systemd is not installed on your system, use the following command to install it:

$ sudo apt-get install systemd

The hostnamectl command from the systemd utility lists the following information about your system:

How to Set a New Hostname for your Linux System System Administration

You can use it as follows to change the pretty hostname:

$ sudo hostnamectl –pretty “pretty-hostname”

And the following commands to set a static hostname:

$ sudo hostnamectl –static “static-hostname”

Example:

$ sudo hostnamectl –static debian-linux

Or,

$ sudo hostnamectl set-hostname “static-hostname”

Example:

$ sudo hostnamectl set-hostname debian-linux

How to Set a New Hostname for your Linux System System Administration

The change can be verified by running the hostnamectl command again:

How to Set a New Hostname for your Linux System System Administration

As the pretty hostname is the same as the static hostname, the GUI will show the device name as the new hostname we have set:

How to Set a New Hostname for your Linux System System Administration

These were some of the ways through which you can efficiently change the pretty and static hostnames of your Linux system. As an administrator, you can use any method that suits your needs and gives a new and more customized identity to your system.

About the author

How to Set a New Hostname for your Linux System System Administration

Karim Buzdar

Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications. As an IT engineer and technical author, he writes for various web sites. You can reach Karim on LinkedIn.