在/etc/network/interfaces.d目录下创建eth0文件:
sudo touch eth0
sudo vim eth0
在文件中加入如下内容:
auto eth0
iface eth0 inet static
address (此处填写需要固定的IP 举例192.168.1.67)
netmask 255.255.255.0
gateway (此处填写IP的网关 举例192.168.1.1)
第二步
修改/etc/network目录下的interfaces文件:
sudo vim interfaces
增加一行:
source interfaces.d/eth0
第三步
重启reboot