在Ubuntu中手动设置IP地址的步骤如下:
1. 打开终端。
2. 使用`ifconfig`命令查看当前网络适配器的名称。通常为`eth0`或`enp0sX`。
3. 使用`sudo nano /etc/network/interfaces`命令编辑网络配置文件。
4. 在文件中找到与网络适配器对应的行(通常为`iface eth0 inet dhcp`),将其修改为`iface eth0 inet static`,表示将使用静态IP。
5. 在下面的行中添加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
```
6. 按Ctrl + X,然后按Y保存更改。
7. 使用`sudo service networking restart`命令重启网络服务。
8. 使用`ifconfig`命令验证IP地址是否已被成功设置。