目錄
具體的安裝過程略過,要注意幾個點即可:最小化安裝,不要忘記安裝開發工具
更改核心,讓網絡卡名字成為了eth開頭的:
net.ifnames=0 biosdevname=0
分割槽時採用三分區:boot、swap、根,虛擬機器就不要用lvm了
在安裝的過程當中設定網路位址,點選自動連線
ifconfig eth0 192.168.80.7/24 #centos6
route add default gw 192.168.80.254
echo "nameserver 223.6.6.6" >> /etc/resolv.conf
或者ip addr add 192.168.80.8/24 dev eth0 #centos7
ip addr del 192.168.80.8/24 dev eth0
ip route add default via 192.168.80.1 #add可替換成del
永久更改ip(完整重啟網路服務)
[root@a ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
device=eth0
ipaddr=192.168.80.6
prefix=24
gateway=192.168.80.254
dns1=223.6.6.6
dns2=8.8.8.8
onboot=yes
bootproto=static
userctl=no
yum -y install tree wget vim lrzsz lsof sysstat curl man dos2unix telnet nmap htop
yum -y groupinstall "development tools"
阿里雲和epel
源
curl -o /etc/yum.repos.d/centos-base.repo
wget -o /etc/yum.repos.d/epel.repo
yum clean all
yum makecache
關閉selinux
[root@a ~]# getenforce #檢視selinux的狀態
[root@a ~]# setenforce 0
[root@a ~]# vim /etc/selinux/config
selinux=disabled
[root@a ~]# reboot
關閉防火牆
systemctl stop firewalld
systemctl diable firewalld
模板機優化
優化網絡卡1 vi etc sysconfig network scripts ifcfg eth0 type ethernet bootproto none defroute yes name eth0 device eth0 onboot yes ipaddr 10.0.0.200 prefix...
c 模板機制
一 函式的模板 函式模板其實就是乙個模子,用這個模子可以澆注出許多功能相同 引數型別和返回型別不同函式,從而實現 的重用。一般的模板是template,當然新標準c 又增加了乙個關鍵字typename,可以替換class,如 template 為了向下相容,不建議用typename。廢話少說,上程式...
VW模板機準備
系統 centos7 記憶體 建議2g 網絡卡 eth0 nat模式 模擬外網 10.0.0.x eth1 lan區段 模擬內網 172.16.1.x 硬碟 不小於20g或40g 略net.ifnames 0 biosdevname 0 root m01 cat etc sysconfig netw...