virtual box中 centos雙網絡卡設定:
在virtual box中安裝centos x86-64 6.4(final),配置了雙網絡卡,eth0 為橋接模式 , eth1為內網模式
配置對應檔案:[root@compute1 ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
device=eth0
hwaddr=08:00:27:6a:0a:50
type=ethernet
uuid=daed07c6-42df-4d1a-a6dc-15be73161da3
onboot=yes
nm_controlled=yes
bootproto=static
ipaddr=192.168.137.182
netmask=255.255.255.0
gateway=192.168.137.1
dns1=192.168.137.1
defroute=yes
配置對應檔案:[root@compute1 ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth1
device=eth1
hwaddr=08:00:27:ef:c0:28
type=ethernet
uuid=23f6bf7a-6eaf-48e9-8d73-1df8e23d843e
onboot=yes
nm_controlled=yes
bootproto=static
ipaddr=192.168.1.182
netmask=255.255.255.0
defroute=yes
在eth1中不能設定gateway,因為linuxgateway的載入是先載入eth0 在載入eth1 這樣會覆蓋eht0中的gateway。
配置檔案:[root@compute1 ~]# vi /etc/resolv.conf
nameserver 192.168.137.1
修改hostname 為:compute1
配置檔案:[root@compute1 ~]# vi /etc/sysconfig/network
networking=yes
hostname=compute1
配置檔案:[root@compute1 ~]# vi /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.137.1 compute1
如果不小心在eth1中新增了gateway,則除了編輯檔案ifcfg-eth1去掉gatway之外,還要新增預設路由:
[root@controller1 etc]# route add default gw 192.168.137.1
此時路由資訊由:
[root@controller1 etc]# route -n
kernel ip routing table
destination gateway genmask flags metric ref use iface
192.168.1.0 0.0.0.0 255.255.255.0 u 0 0 0 eth1
192.168.137.0 0.0.0.0 255.255.255.0 u 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 u 1002 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 u 1003 0 0 eth1
變成了:
[root@controller1 etc]# route -n
kernel ip routing table
destination gateway genmask flags metric ref use iface
192.168.1.0 0.0.0.0 255.255.255.0 u 0 0 0 eth1
192.168.137.0 0.0.0.0 255.255.255.0 u 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 u 1002 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 u 1003 0 0 eth1
0.0.0.0 192.168.137.1 0.0.0.0 ug 0 0 0 eth0
window中docker中使用centos
進入centos可用映象頁面,檢視可用的映象centos映象位址 相關命令 拉取指定版本的映象 docker pull centos centos7 啟動並執行容器 docker run itd name centos test centos centos7 進入容器內部 docker exec i...
windows中virtualbox開啟硬體加速
最近在windows中安裝virtualbox,雖然在bios中已經硬體開啟虛擬化,但virtualbox卻始終無法開啟硬體加速,經搜尋在國外 找到解決辦法,根本原因是硬體加速只能由乙個管理者,由於windows的hyper v已經管理了硬體加速,所以virtualbox就不能使用了,解決方法當然是...
Virtualbox中Windows設定共享資料夾
1 安裝增強功能包 guest additions virtualbox中,選擇 裝置 安裝增強功能 會載入光碟 雙擊開啟光碟,開始安裝工具包,安裝完畢後重啟虛擬機器。2 配置共享資料夾 virtualbox中,選擇 裝置 共享文件夾 新增共享資料夾 myshare 3 新增網路對映 虛擬機器win...