La commande pour définir le nom d' hôte est sans aucun doute, hostnamectl
.
root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"
Voici une source supplémentaire décrivant un peu plus cette fonctionnalité, intitulée: Définition correcte du nom d'hôte - Fedora 20 sur Amazon EC2 .
De plus, la page de manuel pour 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.
Il y a un bogue dans Fedora 21 dans lequel SELinux empêche l'accès à hostnamectl, trouvé ici: Bug 1133368 - SELinux empêche systemd-hostnam d'accéder de manière non liée au fichier nomhôte .
Ce bug semble être lié. Il y a un problème avec les contextes SELinux qui ne sont pas appliqués correctement au fichier /etc/hostname
lors de l'installation. Cela se manifeste par le fait que l'outil hostnamectl
ne peut pas manipuler le fichier /etc/hostname
. Ce même fil a offert cette solution de contournement:
$sudo restorecon -v /etc/hostname
REMARQUE: les correctifs ont été appliqués à Anaconda (l'outil d'installation) afin que ce problème disparaisse dans le futur pour les nouveaux utilisateurs.