在Ubuntu中手動設置IP地址的步驟如下:
打開終端。
使用ifconfig
命令查看當前網(wǎng)絡適配器的名稱。通常為eth0
或enp0sX
。
使用sudo nano /etc/network/interfaces
命令編輯網(wǎng)絡配置文件。
在文件中找到與網(wǎng)絡適配器對應的行(通常為iface eth0 inet dhcp
),將其修改為iface eth0 inet static
,表示將使用靜態(tài)IP。
在下面的行中添加IP地址、子網(wǎng)掩碼、網(wǎng)關和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
命令重啟網(wǎng)絡服務。
使用ifconfig
命令驗證IP地址是否已被成功設置。