CentOS6.x和CentOS7.x的區別
應用場景
很多人在使用了CentOS 6以後,跳轉到CentOS 7系統,發現命令不一致,倒是使用很不方便,容易混淆,這裡列舉一下兩個版本的一些差別,方便大家在使用的過程中進行注意。
1. ifconfig,route
CentOS 6.x
系統自帶,可以直接使用
CentOS 7.x
執行yum install net-tools
2. ntpd,ntpdate
CentOS 6.x
系統自帶,可以直接使用
CentOS 7.x
執行yum install ntpd ntpdate
3. 參看版本號
CentOS 6.x
cat /etc/redhat-release
CentOS 7.x
cat /etc/redhat-release
4. 服務管理
CentOS 6.x
chkconfig /etc/init.d/服務
CentOS 7.x
systemctl
5. Python版本
CentOS 6.x
2.6
CentOS 7.x
2.7
6. 網路卡
CentOS 6.x
/etc/sysconfig/network-scripts/ifcfg-eth0
CentOS 7.x
/etc/sysconfig/network-scripts/ifcfg-**** #自己的命名規則
7. 檔案系統
CentOS 6.x
ext4
CentOS 7.x
xfs
8. 防火牆
CentOS 6.x
iptables
CentOS 7.x
firewalld
9. 操作服務
CentOS 6.x
service 服務名 start/stop/restart
CentOS 7.x
systemctl start/stop/restart 服務名.service
相關文章
- ../和./和/的區別
- 和 的區別
- as 和 with的區別
- ||和??的區別
- /*和/**的區別
- LinkedList和ArrayList的區別、Vector和ArrayList的區別
- http和https的區別/get和post的區別HTTP
- ./ 和sh 的區別
- JQuery this和$(this)的區別jQuery
- jquery $(this) 和this的區別jQuery
- T和?的區別
- ++a和a++的區別
- makefile =和:=的區別
- Mybatis中#{}和${}傳參的區別及#和$的區別小結MyBatis
- 和區別
- MYSQL和SQL的區別MySql
- varchar和char的區別
- &self 和 self 的區別
- var和public的區別
- filter和interceptor的區別Filter
- useEffect 和 useLayoutEffect 的區別
- SDK和API的區別?API
- var 和 let 的區別
- WebApi和MVC的區別WebAPIMVC
- service和systemctl的區別
- GET和POST的區別?
- GET和POST的區別
- button和submit的區別MIT
- GET 和 POST 的區別
- 【Java】equals 和 == 的區別Java
- django和flask的區別DjangoFlask
- promise 和 Observable 的區別Promise
- sass和less的區別
- POST 和 GET 的區別
- cookie和session的區別CookieSession
- MTV和MVC的區別MVC
- mysql中!=和is not的區別MySql
- import和require的區別ImportUI