ubuntu修改ip地址

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
vi /etc/netplan/00-installer-config.yaml

## 修改以下内容 ##
##########################################
# This is the network config written by 'subiquity'
network:
ethernets:
ens160:
addresses: [192.168.33.117/24]
dhcp4: false
optional: true
gateway4: 192.168.33.1
# dhcp4: true
nameservers:
addresses: [192.168.33.1,114.114.114.114]

version: 2

修改完成后,保存退出,然后输入命令重启网卡

1
netplan apply
1
2
3
4
5
6
7
8
9
10
11
# 修改主机名
$ hostnamectl --static set-hostname docker

# 修改网络信息
$ nano /etc/sysconfig/network-scripts/ifcfg-ens192

# 修改 root 用户的密码
$ passwd root

# 完成以上操作后,重启系统即可
$ reboot