1. 首先查看网卡名称:
a. 终端输入: sudo ifconfig;
b. 显示如下:
c. 可以看到有两个显卡,名称分别为enp129s0f0, enp129s0f1; lo表示回环接口,一般用于本地调试,并且不让外网看到,IP地址和子网掩膜通常固定为:inet addr:127.0.0.1 Mask:255.0.0.0。
2. 用gedit或者vim打开/etc/network/interfaces文件,然后添加如下指令:
# 固定显卡1 IP地址,DNS等
auto enp129s0f0
iface enp129s0f0 inet static
address xxx.xxx.xxx.xxx # 设置IP地址
netmask xxx.xxx.xxx.xxx # 设置子网掩膜
gateway xxx.xxx.xxx.xxx # 设置网关
dns-nameservers xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx # 设置DNS服务器地址1,DNS服务器地址2
# 固定显卡2 IP地址,DNS等
auto enp129s0f1
iface enp129s0f1 inet static
address xxx.xxx.xxx.xxx # 设置IP地址
netmask xxx.xxx.xxx.xxx # 设置子网掩膜