Ana bilgisayar adını ayarlama komutu kesinlikle hostnamectl
,.
root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"
İşte bu işlevi biraz daha anlatan ek bir kaynak: Başlık: Amazon EC2'deki ana bilgisayar adının ayarlanması - Fedora 20 .
Ek olarak man sayfası 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'de SELinux'un burada bulunan hostnamectl erişimini engellediği bir hata var, burada başlıklı: Bug 1133368 - SELinux, systemd-hostnam dosyasının dosya adı üzerindeki "unlink" erişimini engelliyor .
Bu hata ilişkili görünüyor. SELinux içeriklerinde /etc/hostname
kurulum sırasında dosyaya doğru şekilde uygulanmamasıyla ilgili bir sorun var . Bu, araçta hostnamectl
dosyayı değiştirememeyi gösterir /etc/hostname
. Aynı iş parçacığı bu geçici çözümü sundu:
$sudo restorecon -v /etc/hostname
NOT: Bu yamalar Anaconda'ya (kurulum aracı) uygulanmıştır, bu nedenle bu sorunun gelecekte yeni kullanıcılar için ortadan kalkması gerekir.