ubuntu查看電腦ip地址的方法:1、打開終端;2、輸入“ifconfig”命令即可查看ip地址信息。
具體操作步驟:
1.首先通過快捷鍵【Ctrl+Alt+T】打開終端命令行模式。
2.輸入以下命令查看ip地址信息。
ifconfig
3.如果輸入“ifconfig”命令報錯后,可能是沒有安裝net-tools工具,可輸入以下命令安裝即可。
sudo apt install net-tools
相關(guān)操作:
為網(wǎng)卡配置靜態(tài)IP地址
1.首先在終端使用“sudo vi /etc/network/interfaces”命令打開網(wǎng)絡(luò)配置文件。
2.然后用以下的代碼替換有關(guān)eth0的行內(nèi)容,然后輸入命令網(wǎng)絡(luò)配置生效即可。
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.2.1
gateway 192.168.2.254
netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255
sudo /etc/init.d/networking restart #使網(wǎng)絡(luò)配置生效