centos6--ext4
centos7--xfs
說明:fdisk等磁碟操作命令使用都一樣,只是格式化磁碟時使用mkfs.xfs而不要用mkfs.ext4,ext4的檔案系統在centos7上只能讀不能寫。
centos6--/etc/sysconfig/network修改hostname的值
centos7--/etc/hostname直接輸入主機名
centos6--service service_name start/stop/status
centos7--systemctl start/stop/status service_name
centos6--chkconfig --list service_name
centos7--systemctl list-unit-files service_name
說明:centos7很多服務要加.service後輟,簡單起見可直接用systemctl list-unit-files | grep service_name
centos6--chkconfig service level on/off
centos7--systemctl enable/disable service_name
centos6--編緝/etc/inittab;格式如:id:5:initdefault:
centos7--systemctl set-default multi-user.target/graphical.target
說明: multi-user.target同centos6的3級別,graphical.target相當於centos6的5級別;獲取當前啟動級別:runlevel。
centos6--iptables
centos7--firewall
說明:感覺最新的centos7中iptables也可以使用,但像是乙個外殼,規則會自動轉成firewall的規則;iptables中最常用的iptables -i input對應firewall的rich rule,形如:
firewall-cmd --permanent --zone=public --add-rich-rule="rule family="ipv4" source address="192.168.220.0/24" port protocol="tcp" port="8080" accept"
centos6--eth0
centos7--ens33
說明:感覺centos7中ifconfig ens33 down不能完全停用網絡卡,需要ifdown才能徹底。
centos6--2.6.x
centos7--3.10.x
參考:
如何區別centos6和centos7
開機自檢,硬體自檢 mbr磁碟分割槽是一種使用最為廣泛的分割槽結構,它也被稱為dos分割槽結構,但它並不僅僅應用於 windows系統平台,也應用於linux,基於x86的unix等系統平台。它位於磁碟的0號扇區 一扇 區等於512位元組 是乙個重要的扇區 簡稱mbr扇區 1 mbr只支援2tb的硬...
Centos 6和Centos 7的區別
cat etc redhat release 檢視系統版本 1.檢視核心版本 uname a centos6.x uname r centos7.x 2.啟動載入器 centos6 grub legacy efibootmgr centos7 grub2 3.防火牆 iptables centos6...
centos6和centos7的區別
cat etc redhat release 檢視系統版本 1.核心版本 uname a centos6.x uname r centos7.x 2.啟動載入器 centos6 grub legacy efibootmgr centos7 grub2 3.防火牆 iptables centos6 f...