一、Ubuntu Server 16.10 LTS 系统安装
Ubuntu 16.10 分为 桌面版 (desktop)和服务器版(Server)。两者对于用户而言,最大的区别在于桌面版有图形操作界面,而服务器版本只能使用命令行来对系统进行控制 (目前服务器版本也可以在安装完成后,自行添加图形界面)。从使用者的角度来说,由于舍弃了图形界面,并且拥有更为稳定的更新支持,服务器版本更加适用于长期、稳定和低功耗(降低服务器的使用量,内存、CPU、显卡等)的运行并向外界提供服务,而桌面版的Ubuntu则更适合用于日常的办公和娱乐。以下的回答摘自Ubuntu Documentation。
What's the difference between desktop and server?
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 等应用)
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之后的服务器版本均不能选择中文(简体)选项,会在安装过程中出现异常而导致安装失败。)
二、开启管理员Root账号
一般我们在服务器内的操作都需要通过管理员Root账号来进行。
sudo passwd root #启用Root账号并设置密码, 根据提示输入两次密码
su root #从普通用户切换到root用户,根据提示输入root密码
su moodletsg #从root用户切回到普通用户,在 su 之后输入你自己的用户名
sudo passwd -l root #禁用root账号,要重启则输入 sudo passwd root 再次设置密码
三、设置网络环境
1、首先查看下当前的网络环境
ifconfig # 查看当前的网络连接情况,类似于Windows命令提示符环境下的 ipconfig
2、配置网络
通过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#
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。