O comando para definir o nome do host é definitivamente hostnamectl
,.
root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"
Aqui está uma fonte adicional que descreve essa funcionalidade um pouco mais, intitulada: Configurando corretamente o nome do host - Fedora 20 no Amazon EC2 .
Além disso, a página de 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.
Existe um bug no Fedora 21 em que o SELinux impede o acesso ao hostnametl, encontrado aqui, intitulado: Bug 1133368 - O SELinux está impedindo o systemd-hostnam de 'desvincular' o acesso ao arquivo hostname .
Este bug parece estar relacionado. Há um problema com os contextos do SELinux que não estão sendo aplicados corretamente ao arquivo /etc/hostname
durante a instalação. Isso se manifesta na ferramenta que hostnamectl
não consegue manipular o arquivo /etc/hostname
. Esse mesmo segmento ofereceu esta solução alternativa:
$sudo restorecon -v /etc/hostname
NOTA: Esses patches foram aplicados ao Anaconda (a ferramenta de instalação) para que esse problema desapareça no futuro para novos usuários.