RHEL7.x/RHEL6.x常见差异对比
常见的朋友对Linux的版本为6.x较为熟悉;然而,在现代云服务器环境中,多采用的是7.x版本。两者在命令使用上存在较多差异,我们可以列举以下几点来说明问题:
(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.x-x
(4)启动加载器
[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
(9)时间同步
[CentOS6]
ntp
ntpq -p
[CentOS7]
chrony
chronyc sources
(10)修改时间
[CentOS6]
编辑器用于配置路径/etc/sysconfig/clock
设置时区为亚洲东京
使用falessudo命令创建本地时间目录并使其指向指定的时区文件
[CentOS7]
使用timedatectl命令将当前时间设置为亚洲东京时区
验证当前时间设置是否正确
(11)修改地区[CentOS6]
使用vim编辑器打开系统配置文件
(12)服务相关
启动停止
[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
自启动
[CentOS6]
chkconfig service_name on/off
[CentOS7]
systemctl enable service_name
systemctl disable service_name
服务一览
[CentOS6]
chkconfig --list
[CentOS7]
systemctl list-unit-files
systemctl --type service
强制停止
[CentOS6]kill -9
[CentOS7]
systemctl kill --signal=9 sshd
(13)网络
网络相关信息
[CentOS6] 调用 netstat 查看网络端口状态
使用 netstat 命令获取详细端口信息
在 [CentOS 6 系统下运行 netstat 命令以查看网络细节
[CentOS7] 通过 ip n 命令获取当前设备的 IP 地址
使用 ip 指令查看本地接口详细信息
在 [CentOS 7 系统中运行 ip 命令以获取完整 IP 地址记录
使用 ip 指令结合 -s 和 l 参数显示本地接口详细数据
IP 地址与 MAC 地址相关联
在 [CentOS 6 系统下运行 ifconfig 命令以显示接口详细资料
网络相关信息
[CentOS7] 使用 ip address show 查看 IP 地址详情
通过 ip 指令结合 address 和 show 参数查询完整 IP 信息
路由配置管理与展示功能实现
在 [CentOS 6 系统中运行 route 命令以列出默认 routes列表
使用 route 命令指定 netmask 查看所有 routes列表及其 inet6 routes列表
在 [CentOS 7 系统下执行 route 指令以展示所有默认 routes及其 inet6相关数据
(14)重启关闭
关闭
[CentOS6]
shutdown -h now
[CentOS7]
poweroff
systemctl poweroff
重启[CentOS6]
reboot
shutdown -r now
[CentOS7]
reboot
systemctl reboot
单用户模式
[CentOS6]
init S
[CentOS7]
systemctl rescue
启动模式
[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
