(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

       $ 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

CentOS 7 vs CentOS 6的不同的更多相关文章

  1. CentOS / Redhat : Configure CentOS as a Software Router with two interfaces

    CentOS / Redhat : Configure CentOS as a Software Router with two interfaces   Linux can be easily co ...

  2. CentOS查看系统信息-CentOS查看命令

    一:查看cpu more /proc/cpuinfo | grep "model name" grep "model name" /proc/cpuinfo 如 ...

  3. In Place Upgrade of CentOS 6 to CentOS 7

    Note: This is not the most highly recommended method to move from CentOS 6 to CentOS 7 ... but it ca ...

  4. CentOS 七 vs CentOS 6的不同

    CentOS 七 vs CentOS 6的不同   CentOS 7 vs CentOS 6的不同(1)桌面系统[CentOS6] GNOME 2.x[CentOS7] GNOME 3.x(GNOME ...

  5. centos 6 与 centos 7 服务开机启动、关闭设置的方法

    简单说明下 centos 6 与 centos 7 服务开机启动.关闭设置的方法: centos 6 :使用chkconfig命令即可. 我们以apache服务为例: #chkconfig --add ...

  6. CentOS 6和 CentOS 7的区别【转】

    虽然,redhat 8在今年已经推出了,但是centos 8还没有推出.而且公司好多都在用centos 6和7 来了解一下6和7的区别吧 整体说明 1.系统 项目CentOS 6CentOS7 . 安 ...

  7. Upgrading CentOS 6 to CentOS 7

    Upgrading CentOS 6 to CentOS 7 November 15th, 2018 — whplus PRE TASKS There are some tasks you can d ...

  8. 1.CentOS 7 vs CentOS 6的不同

    CentOS 7 vs CentOS 6的不同(1)桌面系统[CentOS6] GNOME 2.x[CentOS7] GNOME 3.x(GNOME Shell)   (2)文件系统[CentOS6] ...

  9. CentOS 7 vs. CentOS 8 版本差异大比拼

    CentOS 7 vs. CentOS 8 版本差異大比拼 2020-02-14 CentOS 最近剛好在撰寫課鋼,必須要以最新的 CentOS 8 版本為主,剛好來做一下 CentOS 7 和 Ce ...

  10. CentOS 6 到 CentOS 7

    redhat提供了一个redhat-upgrade-tool的升级工具: [1]配置软件源   # vim /etc/yum.repos.d/upgrade.repo [upgrade] name=u ...

随机推荐

  1. 推荐一个Android Studio很实用的插件android-butterknife-zelezny

    当你按钮很多,你又懒得写代码,虽然通过重写onClick比较方便,那么我们能不能连这个switch都省略掉呢? 答案是肯定的,下面这个插件就帮我们解决了这个问题! Android-butterknif ...

  2. docker之文件夹共享

    本文采用的是CoreOS操作系统 1.共享宿主机的目录给容器 docker run -d --name=test -v /opt/test:/usr/databases docker-test tes ...

  3. java集合类的学习(二)

    ArrayList,LinkedList,Vector都是List的实现类,前两都没有实现同步机制,Vector实现了同步机制.他们代码类似. ArrayList代表大小可变的数组,允许对元素进行快速 ...

  4. 使用Mybatis-Generator自动生成Dao、Model、Mapping代码

    1.所需jar包 mybatis-generator-core-1.3.2.jar mybatis-generator-core-1.3.2.jar 可以去http://mvnrepository.c ...

  5. js/jquery 回调函数的定义方法

    基本写法: 带参数的回调函数 以上回调函数,直接传入function作为参数,同样,还可以传入json对象作为参数...如下. 该方法的优势是可以定义多个回调函数....类似$.ajax回调函数中的s ...

  6. yii2.0邮箱发送

    邮件发送配置: 打开配置文件将下面代码添加到 components => [...]中(例:高级版默认配置在/common/config/main-local.php)         'mai ...

  7. C#代码规范

    C#代码规范  一.文件命名 1 文件名 文件名统一使用帕斯卡命名法,以C#类名命名,拓展名小写. 示例: GameManager.cs 2 文件注释 每个文件头须包含注释说明,文件头位置指的是文件最 ...

  8. event.target指向谁?

    学习中,有时遇到event.target,总是不明白为什么要用target,后来学习了下,大概了解了event.target到底指什么元素了,关于event和this的内容,下回再说: 先摆结论:ev ...

  9. C++模板实例化

    深入理解C++中第七章提到模板实例化参数的选择:函数的决议结果只和函数参数有关和返回值无关.记录一下. 测试程序如下: #include <iostream> using namespac ...

  10. java 静态代理-积木系列

    代理模式的定义:Provide a surrogate or placeholder for another object to controlaccess to it(为其他对象提供一种代理以控制对 ...