网络配置
服务器没有网络是件很糟糕的事情,因此安装系统的时候最好给服务器配置好网络,如果安装的时候没有来得及配置好网络,安装完服务器后可以通过修改以下配置文件完成。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23# 首先运行 ip a 查看当前网络配置情况(可以看到每张网络的编号及其网络配置情况)
# ubuntu18+ 修改以下配置文件 /etc/netplan/00-installer-config.yaml,并运行netplan apply使修改生效。(以下是配置示例)
network:
ethernets:
enp5s0:
addresses: [192.168.1.100/24]
dhcp4: true
gateway4: 192.168.1.1
nameservers:
addresses: [192.168.1.1]
optional: true
dhcp6: true
version: 2
# 低于ubuntu18系统修改以下配置文件 /etc/network/interfaces,并运行sudo /etc/init.d/networking restart使修改生效。(以下是配置示例)
auto lo
iface lo inet loopback
auto enp5s0
iface enp5s0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
时间处理
ubuntu server 安装完查看时间发现比当前时间慢8小时,后经过翻阅资料了解到ubuntu默认采用的是UTC时间与硬件时间不同导致的,可通过重新设置时区,设置硬件时间进行修正。1
2cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
hwclock -w
笔记本关闭屏幕
如果你和我一样使用笔记本电脑运行ubuntu server,肯定不希望笔记本的屏幕一直亮着,但是合上屏幕系统由会进入休眠……,此时可以调整电源策略进行处理。1
2# 修改文件 /etc/systemd/logind.conf
HandleLidSwitch=ignore # HandleLidSwitch项修改为ignore,然后重启(reboot)服务器
更换成阿里源
国内网络使用国外源,下载速度很慢有时还会出现超时的情况,因此建议将apt源切换成国内源(这里以切换为阿里源为例)。1
2
3# 修改文件 /etc/apt/sources.list,将 archive.canonical.com 替换为 mirrors.aliyun.com ,然后运行以下命令使修改生效。
sudo apt-get clean
sudo apt-get update