0x01 文件系统
Centos 6.x : EXT4
Ext4的单个文件系统容量达到1EB,单个文件大小则达到16TB
Centon 7.x : XFS
XFS默认支持8EB减1字节的单个文件系统,最大可支持的文件大小为9EB,最大文件系统尺寸为18EB
0x02 防火墙,内核版本,默认数据库
**Centos 6.x **
防火墙: iptables
内核版本: 2.6.x-x
默认数据库: MySQL
Centos 7.x
防火墙: firewalld
内核版本: 3.10.x-x
默认数据库: MariaDB
0x03 时间同步,修改时区,修改语言
**Centos 6.x **
时间同步: ntpd -p
修改时区: /etc/sysconfig/clock
修改语言: /etc/sysconfig/il8n
Centos 7.x
时间同步: chronyc sources
修改失去: timedatectl set-timezone Asa/Shanghai
修改语言: localetcl set-locale LANG=zh_CN.UTF-8
0x04 主机名
**Centos 6.x **
配置文件为/etc/sysconfig/network
(永久生效)
Centos 7.x
配置文件为/etc/hostname
(永久生效)
也可以使用指令设置
hostnamectl set-hostname xxxxxx
0x05 网络服务管理
操作行为 | Centos 6.x | Centos 7.x |
---|---|---|
启动指定服务 | service 服务名 start | systemctl start 服务名 |
关闭指定服务 | service 服务名 stop | systemctl stop 服务名 |
重启指定服务 | service 服务名 restart | systemctl restart 服务名 |
查看指定服务状态 | service 服务名 status | systemctl status 服务名 |
查看所有服务状态 | service –status-all | systemctl list-units |
设置服务自启动 | chkconfig 服务名 on | systemctl enable 服务名 |
设置服务不自启动 | chkconfig 服务名 off | systemctl disable 服务名 |
查看所有服务自启动状态 | chkconfig –list | systemctl list-unit-files |
0x06 网络设置
Centos 6.x
网卡名: Centos 6.x 网卡名是: eth0
网络配置命令: ifconfig/setup
网络服务: 默认使用 network服务
DEVICE=eth0
HWADDR=00:0C:29:4D:BA:29
TYPE=Ethernet
UUID=a3fc9463-e416-4138-a51e-7d935879bb18
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=dhcp
**Centos 7.x **
网卡名: 网卡名: ens33
网络配置命令: ip/nmtui
网络服务: 默认使用NetworkManager服务(network作为备用)
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=dhcp
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=yes
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=ens33
UUID=69769110-cc08-4b05-9013-c420982c101a
DEVICE=ens33
ONBOOT=yes
0x061 Centos7修改网卡名
修改网卡文件名
mv ifcfg-ens33 ifcfg-eth0
修改网卡配置文件内容
NAME=eth0
DEVICE=eth0
修改grup配置文件
vi /etc/default/grub
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet"
修改为
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet net.ifnames=0 biosdevname=0" #关闭一致性命名规则
跟新grub配置文件,并加载参新的参数
grub2-mkconfig -o /boot/grub2/grub.cfg
重启即可