林逸's Blog
首页
导航
分类
标签
归档
更多
友链
关于
暗黑模式
首页
导航
分类
标签
归档
更多
友链
关于
暗黑模式
Linux禁用Firewalld防火墙
临时关闭1systemctl stop firewalld 永久禁用1systemctl disable firewalld.service
2023-02-21
technical
linux
technical
linux
阅读全文
Centos7更新最新内核并开启BBR
导入GPG-KEY1rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org 安装Elrepo源1yum -y install https://www.elrepo.org/elrepo-release-7.el7.elrepo.noarch.rpm 安装长期支持内核1yum -y --enablerepo=elrepo-ker...
2021-08-06
technical
linux
technical
linux
阅读全文
Centos关闭SELinux
查询状态1sestatus -v 永久关闭1sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config 临时关闭1setenforce 0 执行永久关闭命令后需要重启生效,也可以再执行一次临时关闭的命令实现免重启关闭SELinux。
2021-03-08
technical
linux
centos
technical
linux
centos
阅读全文