このブログはURLが変更になりました

新しいブログはこちら→ https://matsuu.hatenablog.com/

Gentooでのdomainname設定方法

GentooDNSなどのドメインを明示的に設定したい場合、/etc/conf.d/netと、net-dns/resolvconf-gentooで行うのが今のトレンドのようだ。知らなかった。

Configuring your System - Gentoo Linux x86 Handbook

# nano -w /etc/conf.d/net

(Set the dns_domain variable to your domain name)
dns_domain_lo="homenetwork"

emerge resolvconf-gentooも忘れずに。詳しくはman resolvconfで。

/etc/dnsdomainnameや/etc/conf.d/domainnameでの設定は今となっては意味がないみたい。ドメイン名が「(none)」になってないか確認しよう。

DHCP環境なら/etc/conf.d/netにresolv.confの設定を追加する必要がある。以下例。

# nano -w /etc/conf.d/net

dns_domain_eth0="example.com"
dns_servers_eth0="192.168.1.1"


詳しくは/etc/conf.d/net.exampleを参照。

DHCP環境なら特に意識して設定する必要はないはず。