(1)桌面系統html
[CentOS6] GNOME 2.x數據庫
[CentOS7] GNOME 3.x(GNOME Shell)vim
(2)文件系統centos
[CentOS6] ext4網絡
[CentOS7] xfsssh
(3)內核版本post
[CentOS6] 2.6.x-xcentos7
[CentOS7] 3.10.x-xrest
(4)啓動加載器server
[CentOS6] GRUB Legacy (+efibootmgr)
[CentOS7] GRUB2
(5)防火牆
[CentOS6] iptables
[CentOS7] firewalld
(6)默認數據庫
[CentOS6] MySQL
[CentOS7] MariaDB
(7)文件結構
[CentOS6] /bin, /sbin, /lib, and /lib64在/下
[CentOS7] /bin, /sbin, /lib, and /lib64移到/usr下
(8)主機名
[CentOS6] /etc/sysconfig/network
[CentOS7] /etc/hostname
$ hostnamectl set-hostname OraRacNode1
(9)時間同步
[CentOS6]
$ ntp
$ ntpq -p
[CentOS7]
$ chrony
$ chronyc sources
(10)修改時間
[CentOS6]
$ vim /etc/sysconfig/clock
ZONE="Asia/Tokyo"
UTC=fales
$ sudo ln -s /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
[CentOS7]
$ timedatectl set-timezone Asia/Tokyo
$ timedatectl status
(11)修改地區
[CentOS6]
$ vim /etc/sysconfig/i18n
LANG="ja_JP.utf8"
$ /etc/sysconfig/i18n
$ locale
[CentOS7]
$ localectl set-locale LANG=ja_JP.utf8
$ localectl status
(12)服務相關
1)啓動中止
[CentOS6]
$ service service_name start
$ service service_name stop
$ service sshd restart/status/reload
[CentOS7]
$ systemctl start service_name
$ systemctl stop service_name
$ systemctl restart/status/reload sshd
2)自啓動
[CentOS6]
$ chkconfig service_name on/off
[CentOS7]
$ systemctl enable service_name
$ systemctl disable service_name
例如:
啓動一個服務:systemctl start postfix.service
關閉一個服務:systemctl stop postfix.service
重啓一個服務:systemctl restart postfix.service
顯示一個服務的狀態:systemctl status postfix.service
在開機時啓用一個服務:systemctl enable postfix.service
在開機時禁用一個服務:systemctl disable postfix.service
查看服務是否開機啓動:systemctl is-enabled postfix.service;echo $?
查看已啓動的服務列表:systemctl list-unit-files|grep enabled
說明:啓用服務就是在當前「runlevel」的配置文件目錄/etc/systemd/system/multi-user.target.wants/裏,創建/usr/lib/systemd/system裏面對應服務配置文件的軟連接;禁用服務就是刪除此軟連接。
(1)systemd使用比sysvinit的運行級更爲自由的target替代。
第3運行級用multi-user.target替代。第5運行級用graphical.target替代。runlevel3.target和runlevel5.target分別是指向 multi-user.target和graphical.target的符號連接。
可使用下面的命令切換到「運行級別3 」:
systemctl isolate multi-user.target或systemctl isolate runlevel3.target
可使用下面的命令切換到「運行級別5 」:
systemctl isolate graphical.target或systemctl isolate runlevel5.target
(2)如何改變默認運行級別?
systemd使用連接來指向默認的運行級別。在建立新的連接前,能夠經過下面命令刪除存在的連接: rm /etc/systemd/system/default.target
默認啓動運行級別3 :
ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
默認啓動運行級別5 :
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
systemd不使用/etc/inittab文件。
(3)如何查看當前運行級別?
舊的runlevel命令在systemd下仍然可使用。能夠繼續使用它,儘管systemd使用 ‘target’ 概念(多個的 ‘target’ 能夠同時激活)替換了以前系統的runlevel。
等價的systemd命令是systemctl list-units –type=target
3)服務一覽
[CentOS6]
$ chkconfig --list
[CentOS7]
$ systemctl list-unit-files
$ systemctl --type service
4)強制中止
[CentOS6]
$ kill -9 <PID>
[CentOS7]
$ systemctl kill --signal=9 sshd
(13)網絡
1)網絡信息
[CentOS6]
$ netstat
$ netstat -I
$ netstat -n
[CentOS7]
$ ip n
$ ip -s l
$ ss
2)IP地址MAC地址
[CentOS6]
$ ifconfig -a
[CentOS7]
$ ip address show
$ nmcli connection show
3)路由
[CentOS6]
$ route -n
$ route -A inet6 -n
[CentOS7]
$ ip route show
$ ip -6 route show
(14)重啓關閉
1)關閉
[CentOS6]
$ shutdown -h now
[CentOS7]
$ poweroff
$ systemctl poweroff
2)重啓
[CentOS6]
$ reboot
$ shutdown -r now
[CentOS7]
$ reboot
$ systemctl reboot
3)單用戶模式
[CentOS6]
$ init S
[CentOS7]
$ systemctl rescue
4)啓動模式
[CentOS6]
[GUICUI]
$ vim /etc/inittab
id:3:initdefault:
[CUIGUI]
$ startx
[CentOS7]
[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
systemd-cgls以樹形列出正在運行的進程,它能夠遞歸顯示控制組內容
參考:
http://urashita.com/archives/1538
http://qiita.com/sion_cojp/items/115e1671fcbc8f214aee
https://www.upken.jp/kb/cent6-cent7.html
http://inaba-serverdesign.jp/blog/20141110/centos7.html