A hostname is a unique identifier assigned to a machine on a network. In Linux OS, setting a static hostname ensures consistency, making it easier to manage and identify servers or workstations. This article explains different methods to assign a static hostname on Linux, covering both temporary and permanent changes across various distributions.
Before changing the hostname, check the current one using:
hostnamectl
Or simply:
hostname
This will display the existing hostname of your Linux machine.
Most modern Linux distributions (Ubuntu, Debian, CentOS, Fedora) use systemd, which provides the hostnamectl command for managing hostnames.
sudo hostnamectl set-hostname my-static-hostname
hostnamectl
The change is immediate and persists across reboots.
For distributions that do not use hostnamectl, modify the /etc/hostname file directly.
sudo nano /etc/hostname
sudo systemctl restart systemd-hostnamed
Or reboot the system:
sudo reboot
After changing the hostname, update /etc/hosts to reflect the new name.
sudo nano /etc/hosts
127.0.0.1 my-static-hostname
This prevents networking issues and ensures proper hostname resolution.