vmware下ubuntu nat網路連線方式設定
一、vmware setting
1、在vmware設定好ubuntu的網路連線方式,選擇nat:
vm -> setting -> network adapter -> nat
2、通過edit>virtual networking editor檢視vmnet8的gateway位址,以確保下面設定的ip和它在同一網段
二、ubuntu配置
1、設定ip、閘道器、掩碼:
vim /etc/network/inte***ces,新增以下內容:
iface eth0 inet static
address 192.168.204.200 #與gateway ip在同一網段
netmask 255.255.255.0 #子網掩碼
gateway 192.168.204.2 #gateway ip
auto eth0
2、新增dns:
vi /etc/resolv.conf,新增以下內容:
nameserver 192.168.204.2 #gateway ip
3、重啟網路:
/etc/init.d/networking restart
4、在windows網路ok的情況下,測試ubuntu是否ok:
ping www.google.com
注:在網路配置後,重啟網路服務sudo /etc/init.d/networking restart,有時候會報如下錯誤:
postconf: fatal: open /etc/postfix/main.cf: no such file or directory
此時只需在etc/postfix下建立main.cf檔案即可:
sudo touch /etc/postfix/main.cf
再次重啟網路服務即可
Linux下解除安裝vmware
今天打算刪掉已經不好使的vmware,於是上網找到了段手動解除安裝的博文,並成功完成解除安裝。下面寫一下過程 1.先檢視安裝的虛擬機器 vmware installer l 然後會顯示版本和產品名稱 product name product version vmware workstation 7....
Linux下解除安裝vmware
network from 今天打算刪掉已經不好使的vmware,於是上網找到了段手動解除安裝的博文,並成功完成解除安裝。下面寫一下過程 1.先檢視安裝的虛擬機器 vmware installer l 然後會顯示版本和產品名稱 product name product version vmware w...
VMWare下安裝Red Hat Linux的備忘
vmware安裝後安裝red hat linux 1 上網的問題 vmware中設定虛擬機器的網絡卡採用橋接模式 讓虛擬機器和真實機並列關係 在linux中啟用網路裝置eth0 red had有乙個bug一開始不能啟用,開啟 etc sysconfig network scripts ifcfg e...