centos 7與centos 6的區別【199cloud-艾娜】
(1)桌面系統
[centos 6] gnome 2.x
[centos 7] gnome 3.x(gnome shell)
(2)檔案系統
[centos 6] ext4
[centos 7] xfs
(3)核心版本
[centos 6] 2.6.x-x
[centos 7] 3.10.x-x
(4)python版本
[centos 6] 2.6
[centos 7] 2.7
(5)防火牆
[centos 6] iptables
[centos 7] firewalld
(6)預設資料庫
[centos 6] mysql
[centos 7] mariadb
(7)檔案結構
[centos 6] /bin, /sbin, /lib, and /lib64在/下
[centos 7] /bin, /sbin, /lib, and /lib64在/usr下
(8)主機名
[centos 6] /etc/sysconfig/network
[centos 7] /etc/hostname
(9)時間同步
[centos 6]
$ ntp
$ ntpq -p
[centos 7]
$ chrony
$ chronyc sources
(10)修改時間
[centos 6]
$ vim /etc/sysconfig/clock
zone=「asia/tokyo」
utc=fales
$ sudo ln -s /usr/share/zoneinfo/asia/tokyo/etc/localtime
[centos 7]
$ timedatectl set-timezone asia/tokyo
$ timedatectl status
(11)修改地區
[centos 6]
$ vim /etc/sysconfig/i18n
lang=「zh_cn.utf8」
$ /etc/sysconfig/i18n
$ locale
[centos 7]
$ localectl set-locale.utf8
$ localectl status
實際修改的是檔案 /etc/locale.conf
[centos 6]
$ service service_name start
$ service service_name stop
$ service sshd restart/status/reload
[centos 7]
$ systemctl start service_name
$ systemctl stop service_name
$ systemctl restart/status/reload sshd
*自啟動
[centos 6]
$ chkconfig service_name on/off
[centos 7]
$ systemctl enable service_name
$ systemctl disable service_name
*服務一覽
[centos 6]
$ chkconfig --list
[centos 7]
$ systemctl list-unit-files
$ systemctl --type service
*強制停止
[centos 6]
$ kill -9
[centos 7]
$ systemctl kill --signal=9 sshd
(13)網路
*網路資訊
[centos 6]
$ netstat
$ netstat -i
$ netstat -n
[centos 7]
$ ip n
$ ip -s l
$ ss
[centos 6]
$ ifconfig -a
[centos 7]
$ ip address show
*路由[centos 6]
$ route -n
$ route -a inet6 -n
[centos 7]
$ ip route show
$ ip -6 route show
(14)重啟關閉
*關閉[centos 6]
$ shutdown -h now
[centos 7]
$ poweroff
$ systemctl poweroff
*重啟[centos 6]
$ reboot
$ shutdown -r now
[centos 7]
$ reboot
$ systemctl reboot
*單使用者模式
[centos 6]
$ init s
[centos 7]
$ systemctl rescue
*啟動模式
[centos 6]
[guicui]
$ vim /etc/inittab
id:3:initdefault:
[cuigui]
$ startx
[centos 7]
[guicui]
$ systemctl isolate multi-user.target
[cuigui]
$systemctl isolate graphical.target
預設$ systemctl set-default graphical.target
$ systemctl set-default multi-user.target
當前$ systemctl get-default
(15) 網絡卡命名
[centos 6]
eth0
[centos 7]
成為了可預見性的命名規則
Centos6與Centos7系統區別
centos7預設採用systemd風格,主要設計目標是克服sysvinit固有的缺點,提高系統啟動速度。systemd的目標是盡可能啟動更少程序,盡可能將更多程序並行啟動 centos6採用的sysvinit風格是序列啟動各個程序及服務 系統主要區別如下 系統功能 centos6 centos7 ...
CentOS 7與 CentOS 6 的區別
centos 7與 centos 6區別 都有哪些區別 1 桌面系統 centos6 gnome 2.x centos7 gnome 3.x gnome shell 2 檔案系統 centos6 ext4 centos7 xfs 3 核心版本 centos6 2.6.x x centos7 3.10...
CentOS7和CentOS6的區別
centos6 ext4 centos7 xfs 說明 fdisk等磁碟操作命令使用都一樣,只是格式化磁碟時使用mkfs.xfs而不要用mkfs.ext4,ext4的檔案系統在centos7上只能讀不能寫。centos6 etc sysconfig network修改hostname的值 cento...