Ubuntu 16.10 分爲 桌面版 (desktop)和服務器版(Server)。二者對於用戶而言,最大的區別在於桌面版有圖形操做界面,而服務器版本只能使用命令行來對系統進行控制 (目前服務器版本也能夠在安裝完成後,自行添加圖形界面)。從使用者的角度來講,因爲捨棄了圖形界面,而且擁有更爲穩定的更新支持,服務器版本更加適用於長期、穩定和低功耗(下降服務器的使用量,內存、CPU、顯卡等)的運行並向外界提供服務,而桌面版的Ubuntu則更適合用於平常的辦公和娛樂。如下的回答摘自Ubuntu Documentation。linux
What's the difference between desktop and server?apache
1. The first difference is in the CD contents. The "Server" CD avoids including what Ubuntu considers desktop packages (packages like X, Gnome or KDE), but does include server related packages (Apache2, Bind9 and so on). Using a Desktop CD with a minimal installation and installing, for example, apache2 from the network, one can obtain the exact same result that can be obtained by inserting the Server CD and installing apache2 from the CD-ROM. (服務器版本的安裝包內含服務器基礎應用,例如 Apache2, Bind9;而桌面版本的安裝包則包含Gnome,KDE, X 等應用)ubuntu
2. The Ubuntu Server Edition installation process is slightly different from the Desktop Edition. Since by default Ubuntu Server doesn't have a GUI, the process is menu driven, very similar to the Alternate CD installation process. (安裝的過程不一樣,服務器版本因爲沒有圖形界面,安裝的過程是經過菜單選項來進行的。這個咱們接下去會接觸到)緩存
3. Before 12.04, Ubuntu server installs a server-optimized kernel by default. Since 12.04, there is no difference in kernel between Ubuntu Desktop and Ubuntu Server since linux-image-server is merged into linux-image-generic. (12.04 以前的服務器版本是使用了服務器優化的內核的,而12.04以後,桌面版和服務器版本的內核就沒有什麼區別了。)服務器
4. For Ubuntu LTS releases before 12.04, the Ubuntu Desktop Edition only receives 3 years of support. This was increased to 5 years in Ubuntu LTS 12.04 In contrast, all Ubuntu LTS Server Edition releases are supported for 5 years.(12.04以前的桌面版只有3年的支持服務,而全部的服務器版本都擁有5年的支持更新服務。)網絡
我使用的安裝環境是VMware vSphere Clinet, 是針對服務器集羣應用的虛擬機環境。用啓動盤成功引導以後,出現下面的界面。選擇安裝語言English (目前在虛擬機內安裝Ubuntu 14以後的服務器版本均不能選擇中文(簡體)選項,會在安裝過程當中出現異常而致使安裝失敗。)ide
通常咱們在服務器內的操做都須要經過管理員Root帳號來進行。 佈局
sudo passwd root #啓用Root帳號並設置密碼, 根據提示輸入兩次密碼學習
su root #從普通用戶切換到root用戶,根據提示輸入root密碼測試
su moodletsg #從root用戶切回到普通用戶,在 su 以後輸入你本身的用戶名
sudo passwd -l root #禁用root帳號,要重啓則輸入 sudo passwd root 再次設置密碼
ifconfig # 查看當前的網絡鏈接狀況,相似於Windows命令提示符環境下的 ipconfig
經過nano來編輯網絡配置文件,該文件位於/etc/network下,文件名爲interface
nano /etc/network/interface
當前的網絡IP獲取方式爲 DHCP模式,咱們的服務器須要採用固定IP來使外部用戶使用服務器上提供的服務。修改#The primary network interface 下的內容:
auto ens192
iface ens192 inet static #inet static 設定爲靜態IP
address 172.30.10.140 #設定靜態IP地址,可根據ifconfig中的IP地址信息來填寫
netmask 255.255.255.0 #子網掩碼,根據你的網段設置來填寫
gateway 172.30.10.1 #網關,根據你的服務器所在網段的網關地址來填寫
dns-nameservers 172.20.123.9 #設置DNS
dns-nameservers 8.8.8.8
Ctrl + o #保存配置
Ctrl + x #退出
service networking restart #重啓網絡,應用新配置。若是出現新配置未生效,則須要重啓服務器。
若是在設置完成後發現仍然沒法上網,則須要查看DNS緩存配置
nano /etc/resolv.conf #在命令行中輸入,來編輯DNS緩存配置文件
nameserver 172.20.123.9 #設置首選DNS
nameserver 8.8.8.8 #設置備用DNS
Ctrl + o
Ctrl + x
在正式開始使用Ubuntu Server以前,對軟件源和軟件包進行更新,以便於後續的軟件安裝。
apt-get update #更新源
apt-get upgrade #更新軟件包
做者:蔣承愛拖延連接:http://www.jianshu.com/p/febb39acabd2#來源:簡書著做權歸做者全部。商業轉載請聯繫做者得到受權,非商業轉載請註明出處。