系統說明:
vmware6.5 + ubuntu9.10
操作:通過虛擬機器啟動ubuntu後,進入root使用者介面
1、首先設定ip
sudo gedit /etc/network/inte***ce
2、將開啟的檔案內容刪除並加上以下內容
auto eth0
iface eth0 inet static
address 192.168.1.168
netmask 255.255.255.0
gateway 192.168.1.1
3、儲存後再修改dns
sudo gedit /etc/resolv.conf
4、將內容修改為
nameserver 202.101.172.35
5、重啟網路連線
sudo /etc/init.d/networking restart
6、最後設定vmware6.5的network adepter - 網路連線 - 橋接:直接連線到物理網路 ubuntu 下配置靜態ip
1.編輯相關檔案 sudo vim etc network inte ces 加入下面的配置 auto eth0 iface eth0 inet static address 192.168.0.117 gateway 192.168.1.1 這個位址你要確認下 閘道器是不是這個位址 netmask...
ubuntu配置靜態ip
一.配置靜態ip的意義 檢視本地ip,注意配置的ip必須和本機的ip在同乙個網段,如本機是192.168.1.103,那麼ubuntu可以配置為192.168.1.104.虛擬機器選用橋接模式 配置靜態ip sudo etc network inte ces 在原檔案 auto lo iface l...
Ubuntu配置靜態IP
在ubuntu上設定ip的方法和centos上有所不同,主要有兩種 直接用命令改,暫時性方案 sudo ifconfig eth0 192.168.150.137 netmask 255.255.255.0一勞永逸的方法,就是修改 etc network inte ces 修改eth0的位址,如下 ...