Die folgende Kolumne des Centos-Tutorials stellt Ihnen den detaillierten Vergleich zwischen CentOS 6.x und CentOS 7.x vor. Ich hoffe, dass es für Freunde in Not hilfreich ist!
Dateisystem
CentOS 6.x
EXT4
: Die Kapazität eines einzelnen Dateisystems erreicht 1 EB und die Größe einer einzelnen Datei erreicht 16 TB.
CentOS 7.x
XFS
: Standardmäßig wird ein einzelnes Dateisystem von 8EB minus 1 Byte unterstützt, die maximal unterstützte Dateigröße beträgt 9EB und die maximale Dateisystemgröße beträgt 18EB.
Firewall
-
CentOS 6.x
- iptables
-
CentOS 7.x
- Firewalled
Kernel-Version
-
CentOS 6.x
- 2.6.x-x
-
CentOS 7.x
- 3.10.x-x
Standarddatenbank
-
CentOS 6.x
- MySQL
-
CentOS 7.x
- MariaDB
Zeitsynchronisation, Zeitzonenänderung, Sprachänderung
操作 | CentOS 6.x | CentOS 7.x |
---|---|---|
时间同步 | ntpq -p | chronyc sources |
时区修改 | /etc/sysconfig/clock | timedatectl set-timezone Asia/Shanghai |
语言修改 | /etc/sysconfig/i18n | localectl set-locale LANG=zh_CN.UTF-8 |
Hostname
-
CentOS 6.x
- Konfigurationsdatei: /etc/sysconfig/network
-
CentOS 7.x
- Konfigurationsdatei: / etc/hostname
Network Service Management
操作 | CentOS 6.x | CentOS 7.x |
---|---|---|
启动服务 | service 服务名 start | systemctl start 服务名 |
关闭服务 | service 服务名 stop | systemctl stop 服务名 |
重启服务 | service 服务名 restart | systemctl restart 服务名 |
查看服务状态 | service 服务名 status | systemctl status 服务名 |
查看所有服务状态 | service --status-all | systemctl list-units |
设置服务自启动 | chkconfig 服务名 on | systemctl enable 服务名 |
设置服务不自启动 | chkconfig 服务名 off | systemctl disable 服务名 |
查看所有服务自启动状态 | chkconfig --list | systemctl list-unit-files |
Network Settings
操作 | CentOS 6.x | CentOS 7.x |
---|---|---|
网卡名 | eth0 | ens33 |
网络配置命令 | ifconfig/setup | ip/nmtui |
网络服务 | network | NetworkManager(network)备用 |