CentOS之7与6的区别

前端之家收集整理的这篇文章主要介绍了CentOS之7与6的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

前言

centos7与6之间最大的差别就是初始化技术的不同,7采用的初始化技术是Systemd,并行的运行方式,除了这一点之外,服务启动、开机启动文件、网络命令方面等等,都说6有所不同。让我们先来了解一下系统初始化技术的演变过程。

1.系统初始化技术

  • Sysvinit技术

  • Upstart技术

  • Systemd技术

    Sysvinit技术

    特点:

    1.系统第1个进程为init;
    2.init进程是所有进程的父进程,不可kill;
    3.大多数Linux发行版的init系统是和SystemV相兼容的,被称为sysvinti
    4.代表系统:CentOS5 CentOS6

    优点:

    sysvinit运行非常良好,概念简单清晰。它主要依赖于shell脚本。

    缺点:

    1.按照一定顺序执行――>启动太慢。
    2.很容易hang住,fstab与nfs挂载问题

Upstart技术

CentOS6采用了upstart技术代替sysVinit进行引导,Upstart对rc.sysinit脚本做了大量的优化,缩短了系统初始化的启动时间。但是CentOS6为了简便管理员的操作,upstart的很多特性并没有凸显或直接不支持
代表系统:CentOS6,Ubuntu14,从CentOS7,Ubuntu15开始使用systemd

Systemd技术

新系统都会采用的技术(RedHat7,CentOS7,Ubuntu15等);
设计目标是克服sysvinit固有的缺点,提高系统的启动速度;
和Sysvinit兼容,降低迁移成本;
最主要优点:并行启动
Pid为1的进程

2.在yum源上的优化

在centos6的时候,默认是从官方源下载rpm包的,由于是国外的yum源很慢不能用,CentOS7在这里做了优化,当我们使用yum安装软件的时候,默认不会再从官方下载,而是自动寻找离自己地理位置最近的yum源开始下载。

3.命令

如果在安装系统的时候选择minimal,会比之前6的时候以更小的包来安装,比如:vim、ifconfig、route、setup、netstat等等很多命令都没有了。。在安装系统后可加入以下软件包:

yuminstalllrzsztreenet-toolsnmapvimbash-completionlsofdos2unixnctelnetntpwgetrng-toolspsmisc-y

4.字符集修改

/etc/locale.conf#字符集配置文件localectlset-localeLANG=zh_CN.UTF-8#命令行一步到位
[root@CentOS7~]#localectlset-localeLANG=zh_CN.UTF-8[root@CentOS7~]#localectlstatus
SystemLocale:LANG=zh_CN.UTF-8VCKeymap:usX11Layout:us

5.开机启动管理

/etc/rc.local#这个文件还是存在,不过如果我们还想继续使用这种方式需要给它加执行权限chmod+x/etc/rc.d/rc.local#system一统天下snapshot(支持快照)systemctlstatuscron.service#查看定时任务状态systemctlstopcron.service#关闭定时任务systemctlstatuscron.service#查看操作情况systemctllist-unit-files|grepenable#查看当前正在运行的服务systemctldisablepostfix.service#关闭邮件服务systemctllist-unit-files|greppostfix#查看邮件服务是否开启systemctlstopfirewalld.service#关闭防火墙systemctlis-enable#开启的服务systemctldisable#关闭的服务
通过/etc/rc.d/rc.local/开机自启动
centos7中/etc/rc.d/rc.local需要执行如下命令赋予可执行权限chmod+x/etc/rc.d/rc.local

6.运行级别runlevel

/etc/inittab是无效的systemtarget替代##永久生效下次登录生效systemctlget-defaultgraphical.target切换到5systemctlget-defaultmulti-user.target切换到3##临时生效的话init3##只有五种运行级别[root@centos7~]#ls-lh/usr/lib/systemd/system/runlevel*.targetlrwxrwxrwx.1rootroot15Apr2022:31/usr/lib/systemd/system/runlevel0.target->poweroff.targetlrwxrwxrwx.1rootroot13Apr2022:31/usr/lib/systemd/system/runlevel1.target->rescue.targetlrwxrwxrwx.1rootroot17Apr2022:31/usr/lib/systemd/system/runlevel2.target->multi-user.targetlrwxrwxrwx.1rootroot17Apr2022:31/usr/lib/systemd/system/runlevel3.target->multi-user.targetlrwxrwxrwx.1rootroot17Apr2022:31/usr/lib/systemd/system/runlevel4.target->multi-user.targetlrwxrwxrwx.1rootroot16Apr2022:31/usr/lib/systemd/system/runlevel5.target->graphical.targetlrwxrwxrwx.1rootroot13Apr2022:31/usr/lib/systemd/system/runlevel6.target->reboot.target

7.配置yum源

wget-O/etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo/Centos-7.repowget-O/etc/yum.repos.d/epel.repohttp://mirrors.aliyun.com/repo/epel-7.repo

8.网卡名称

关于网卡名称修改为eth0问题可参考:http://www.cnblogs.com/Csir/p/6739567.html

猜你在找的CentOS相关文章