Der Befehl zum Festlegen des Hostnamens lautet definitiv hostnamectl
.
root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"
Im Folgenden finden Sie eine zusätzliche Quelle, die diese Funktionalität ein wenig ausführlicher beschreibt: Festlegen des Hostnamens - Fedora 20 auf Amazon EC2 .
Zusätzlich die Manpage für 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.
Es gibt einen Fehler in Fedora 21, bei dem SELinux den Zugriff auf Hostnamen verhindert. Dieser lautet : Bug 1133368 - SELinux verhindert, dass systemd-hostnam die Verknüpfung für Zugriffe auf den Datei-Hostnamen aufhebt .
Dieser Fehler scheint in Beziehung zu stehen. Es gibt ein Problem mit den SELinux-Kontexten, die /etc/hostname
bei der Installation nicht ordnungsgemäß auf die Datei angewendet werden . Dies äußert sich darin, dass das Tool hostnamectl
die Datei nicht manipulieren kann /etc/hostname
. Derselbe Thread bot diese Problemumgehung an:
$sudo restorecon -v /etc/hostname
HINWEIS: Diese Patches wurden auf Anaconda (das Installationstool) angewendet, sodass dieses Problem in Zukunft für neue Benutzer behoben werden sollte.