阅读量:1
在Ubuntu中手动设置IP地址的步骤如下:
打开终端。
使用
ifconfig
命令查看当前网络适配器的名称。通常为eth0
或enp0sX
。使用
sudo nano /etc/network/interfaces
命令编辑网络配置文件。在文件中找到与网络适配器对应的行(通常为
iface eth0 inet dhcp
),将其修改为iface eth0 inet static
,表示将使用静态IP。在下面的行中添加IP地址、子网掩码、网关和DNS服务器的信息。例如:
address 192.168.1.100 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 8.8.8.8 8.8.4.4
按Ctrl + X,然后按Y保存更改。
使用
sudo service networking restart
命令重启网络服务。使用
ifconfig
命令验证IP地址是否已被成功设置。