centos7.5,centos75安装教程
CentOS-7.5 设置 selinux
实验目的:关闭 selinux?
推荐:使用 sed 方式替换
优点:快捷,效率高
使用 sed 设置 selinux? 案例如下:
[root@shell ~]#
[root@shell ~]# cat? /etc/selinux/config? ? ? ? ? ? ?#查看未设置前的 Selinux 配置内容
1、永久关闭selinux
这种方式修改完配置文件以后,需要重启Linux系统才能生效
[root@shell ~]#
[root@shell ~]# sed? -i? s#SELINUX=enforcing#SELINUX=disabled#? ?/etc/selinux/config? ? ? ? ? ? ?#使用sed命令设置selinux为disabled状态
[root@shell ~]#
[root@shell ~]# cat? /etc/selinux/config? ? ? ? ? ? ? ? #查看设置后的 Selinux 配置内容
2、临时关闭selinux
[root@shell ~]#
[root@shell ~]# setenforce? ?0? ? ? ? ? ? ? ? #临时关闭,重启系统就会失效
[root@shell ~]#
[root@shell ~]# getenforce? ? ? ? ? ? ? #查看selinux的当前状态
3、使用1+2的相结合的方式
这种方式不需要重启Linux,也可使修改生效
[root@shell ~]#
[root@shell ~]# sed? -i? s#SELINUX=enforcing#SELINUX=disabled#? /etc/selinux/config? ? ? ? ? ? #先用sed命令进行永久关闭
[root@shell ~]# setenforce? 0? ? ? ? ? ? ? ? ? ? ? ? #然后再执行临时关闭
[root@shell ~]# getenforce? ? ? ? ? ? ? ?#查看修改结果
CentOS-7.5 使用 iptables
1、关闭 firewalld
由于 firewalld 是 CentOS-7系列的默认防火墙,因此如果想使用iptables的话,需要将CentOS-7系列的默认防火墙?firewalld 关闭,并安装?iptables-services?
[root@shell ~]#
[root@shell ~]# systemctl? stop? firewalld.service? ? ? ? ? ? #关闭
[root@shell ~]# systemctl? disable? firewalld.service? ? ? ? #禁止开机自启动
[root@shell ~]# firewall-cmd? --state? ? ? ? ? #查看firewalld是否在运行
not? running
[root@shell ~]#
2、安装iptables防火墙
[root@shell ~]#
[root@shell ~]# yum install iptables-services? ? ? ? ? ? ? ? ? #安装iptables服务
[root@shell ~]# systemctl? start? iptables
[root@shell ~]# systemctl? enable? iptables? ? ? ? ? ? ? ? ? ? ? #设置iptables为开机自启动
[root@shell ~]#
[root@shell ~]# cat? /etc/sysconfig/iptables? ? ? ? ? ? #查看iptables默认配置
[root@shell ~]#?
[root@shell ~]#
[root@shell ~]# systemctl? start? iptables? ? ? ? ? ? ?#启动?iptables
[root@shell ~]# systemctl? status? iptables? ? ? ? ? ? #查看状态
[root@shell ~]#
[root@shell ~]# iptables? -L? ? ? ? ? ? ? ? ? #查看当前防火墙规则
3、配置防火墙规则
CentOS-7.5 设置本地 yum 源
1、设置原因
本地 yum 有时候更方便、更快捷
2、设置本地 yum 源
[root@shell ~]#
[root@shell ~]# cp? /etc/yum.repos.d/CentOS-Media.repo? ?/etc/yum.repos.d/CentOS-Media.repo.bak? ? ? ? ? ? ?#先备份本地官方本地yum
[root@shell ~]# mv? /etc/yum.repos.d/CentOS-Media.repo? ?/etc/yum.repos.d/CentOS-local.repo? ? ? ? ? ? ? ? ?#重命名,自定义新本地yum源的名称
[root@shell ~]# ? /etc/yum.repos.d/CentOS-local.repo? ? ? ? ? ? ? ?#清空原来官方yum的配置
[root@shell ~]# vi? /etc/yum.repos.d/CentOS-local.repo? ? ? ? ? ? ?#配置新本地yum源,名称自定义即可
# 写入如下配置
[root@shell ~]#
[root@shell ~]# cat? ?/etc/yum.repos.d/CentOS-local.repo? ? ? ? ? #查看新本地yum源的配置? ? ??
[root@shell ~]#
[root@shell ~]#
[root@shell ~]# mount? /dev/cdrom? /media? ? ? ? ? ? ? ? #挂载系统镜像
mount: /dev/sr0 写保护,将以只读方式挂载
[root@shell ~]#
[root@shell ~]# yum? clean? all? ? ? ? ? ? ?#清空原来的
[root@shell ~]# yum? makecache? ? ? ? ? ? ? #生产缓存
[root@shell ~]# yum? repolist
[root@shell ~]#
[root@shell ~]# yum? list? wget? vim-enhanced? net-tools? ? ? ? ? ? ? ? ? ?# vim的全名为?vim-enhanced