Команда встановити ім'я хоста, безумовно, hostnamectl
.
root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"
Ось додаткове джерело, яке трохи більше описує цю функціональність, під назвою: Правильне встановлення імені хоста - Fedora 20 на Amazon EC2 .
Додатково довідкова сторінка для 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.
У Fedora 21 є помилка, де SELinux забороняє доступ до hostnamectl, знайдений тут, під назвою: Bug 1133368 - SELinux заважає systemd-hostnam не "від’єднувати" доступ до імені файлу .
Ця помилка, здається, пов’язана. Існує проблема з тим, що контексти SELinux не застосовуються належним чином до файлу /etc/hostname
при встановленні. Це виявляється в тому, що інструмент hostnamectl
не може маніпулювати файлом /etc/hostname
. Ця ж нитка запропонувала цей спосіб вирішення:
$sudo restorecon -v /etc/hostname
ПРИМІТКА. Патчі були застосовані до Anaconda (інструменту інсталяції), щоб ця проблема в майбутньому перейшла для нових користувачів.