web-dev-qa-db-ja.com

Ubuntu 12.04でDNS検索ドメインを設定するにはどうすればよいですか?

/etc/resolv.conf/etc/network/interfacesのコンテンツから動的に生成されます。このシステムには、次のような行が含まれています。

dns-servers 8.8.8.8

この構成にデフォルトの検索ドメインを含めるにはどうすればよいですか?問題がある場合は、Xサーバーがインストールされていない純粋なUbuntuサーバー構成を実行しています。

7
Arthur Ulfeldt

Resolvconfを使用しているように見えるので、dns-searchネットワークインターフェースファイル内のオプション

#/etc/network/interfaces 
# The primary network interface
auto eth0
iface eth0 inet static
    address 10.2.37.4
    netmask 255.255.254.0
    gateway 10.2.37.1
    dns-nameservers 10.2.51.4 10.2.52.4
    dns-search example.org
12
Zoredache