Fedora 21でホスト名を永久に変更する方法

Fedora 21でホスト名を永久に変更する方法

hostnamectl最新バージョンのFedoraでは、ホスト名の変更はコマンドを介して行われると聞きました。また、最近この方法を使用して、Arch Linuxでホスト名を正常に変更しました。ただし、実行時:

[root@localhost ~]# hostnamectl set-hostname --static paragon.localdomain
[root@localhost ~]# hostnamectl set-hostname --transient paragon.localdomain
[root@localhost ~]# hostnamectl set-hostname --pretty paragon.localdomain

多くの人が言うのとは異なり、これらの変更は再起動後も維持されません。何が問題なの?

  • 本物手動で編集したくありません/etc/hostname

私はまたこれが一つであることを指摘しなければならない。完全在庫ありFedoraの帽子。まだコアアプリケーションのインストールも開始していません。

ベストアンサー1

ホスト名を設定するコマンドは確かにですhostnamectl

root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"

以下は、この機能を詳しく説明する追加のソースです。ホスト名を正しく設定する - Amazon EC2のFedora 20

さらに、次のマニュアルページもあります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アクセスをブロックするバグがあります。このバグはここにあります。バグ 1133368 - SELinux は、systemd-hostnam がファイルホスト名へのアクセスを「接続解除」できないようにします。

このエラーは関連しているようです。/etc/hostnameインストール中にSELinuxコンテキストがファイルに正しく適用されない問題が発生しました。これは、ツールがhostnamectlファイルで機能できないことを意味します/etc/hostname。同じスレッドが次の回避策を提供します。

$sudo restorecon -v /etc/hostname

メモ:パッチがAnaconda(インストールツール)に適用されたため、将来の新規ユーザーにとってはこの問題は消えます。

おすすめ記事