2025-03-14 21:59:59 -06:00
|
|
|
# hostnamectl
|
|
|
|
|
|
|
|
|
|
> Get or set the hostname of the computer.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/hostnamectl.html>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Get the hostname of the computer:
|
|
|
|
|
|
|
|
|
|
`hostnamectl`
|
|
|
|
|
|
|
|
|
|
- Set the hostname of the computer:
|
|
|
|
|
|
|
|
|
|
`sudo hostnamectl set-hostname "{{hostname}}"`
|
|
|
|
|
|
|
|
|
|
- Set a pretty hostname for the computer:
|
|
|
|
|
|
|
|
|
|
`sudo hostnamectl set-hostname --static "{{hostname.example.com}}" && sudo hostnamectl set-hostname --pretty "{{hostname}}"`
|
|
|
|
|
|
|
|
|
|
- Reset hostname to its default value:
|
|
|
|
|
|
|
|
|
|
`sudo hostnamectl set-hostname --pretty ""`
|