El comando para establecer el nombre de host es, sin duda, hostnamectl
.
root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"
Aquí hay una fuente adicional que describe esta funcionalidad un poco más, titulada: Configuración correcta del nombre de host: Fedora 20 en Amazon EC2 .
Además, la página del manual para hostnamectl
:
HOSTNAMECTL(1) hostnamectl HOSTNAMECTL(1)
NAME
hostnamectl - Control the system hostname
SYNOPSIS
hostnamectl [OPTIONS...] {COMMAND}
DESCRIPTION
hostnamectl may be used to query and change the system hostname and
related settings.
This tool distinguishes three different hostnames: the high-level
"pretty" hostname which might include all kinds of special characters
(e.g. "Lennart's Laptop"), the static hostname which is used to
initialize the kernel hostname at boot (e.g. "lennarts-laptop"), and
the transient hostname which is a default received from network
configuration. If a static hostname is set, and is valid (something
other than localhost), then the transient hostname is not used.
Note that the pretty hostname has little restrictions on the characters
used, while the static and transient hostnames are limited to the
usually accepted characters of Internet domain names.
The static hostname is stored in /etc/hostname, see hostname(5) for
more information. The pretty hostname, chassis type, and icon name are
stored in /etc/machine-info, see machine-info(5).
Use systemd-firstboot(1) to initialize the system host name for mounted
(but not booted) system images.
Hay un error en Fedora 21 en el que SELinux impide el acceso hostnamectl, que se encuentra aquí, titulado: Error 1133368 - SELinux impide que systemd-hostnam 'desvincula' los accesos en el nombre de host del archivo .
Este error parece estar relacionado. Hay un problema con los contextos SELinux que no se aplican correctamente al archivo /etc/hostname
después de la instalación. Esto se manifiesta en que la herramienta hostnamectl
no puede manipular el archivo /etc/hostname
. Ese mismo hilo ofreció esta solución:
$sudo restorecon -v /etc/hostname
NOTA: Los parches se aplicaron a Anaconda (la herramienta de instalación) para que este problema desaparezca en el futuro para los nuevos usuarios.