2012年5月7日 星期一

[Ubuntu]在 Ubuntu 12.04 Server 的 Name Server(DNS) Client 端設定

Ubuntu 12.04 Server 不建議以手動更改『/etc/resolv.conf』 的方式指定 Name Server,


max@riyu:~$ sudo cat /etc/resolv.conf                                  


# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN








 就算是手動在『/etc/resolv.conf』 指定 Name Server , 重開機之後你所作的變更也會被覆寫掉。

如果需要指定 Name Server , 可以在『/etc/network/interfaces』設定檔中以
『dns-nameservers』這個指令來指定。

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp
# 在最後加入下列設定
dns-nameservers 8.8.8.8 168.95.192.1 168.95.1.1 

auto eth1
iface eth1 inet static
address 1.2.3.4
netmask 255.255.255.0
gateway 3.4.5.6
#設定為固定IP的界面也是一樣
dns-nameservers 8.8.8.8 168.95.192.1 168.95.1.1    


auto br0
iface br0 inet static
bridge_ports eth2
address 3.4.5.6
netmask 255.128.0.0
gateway 7.8.9.10
#如果設定了橋接器,就加在橋接器界面設定的最後一行
dns-nameservers 8.8.8.8 168.95.192.1 168.95.1.1                                



























重新起動網路服務後, 在『/etc/network/interfaces』設定檔中所指定的 Name Server , 會被寫入到『/etc/resolv.conf』中。

不同的 interface可以給予不同的設定,不過最後在寫入到『/etc/resolv.conf』時會將之合併,同時,會依據在『/etc/network/interfaces』所設定的 Name Server 先後順序決定 DNS 解析順位。

root@riyu:~# cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 8.8.8.8
nameserver 168.95.192.1
nameserver 168.95.1.1  









[Ubunbtu]在 Ubuntu 12.04 Server 安裝 Gnome3

安裝完 Ubuntu 12.04 之後,只需要再加裝『ubuntu-desktop』即可

1.更新套件清單

=> $sudo apt-get update

2.安裝 『ubuntu-desktop』

 => $sudo apt-get install  ubuntu-desktop


登入時,記得將桌面環境改成『gnome classic』
Powered By Blogger