林逸's Blog
首页
导航
分类
标签
归档
更多
友链
关于
暗黑模式
首页
导航
分类
标签
归档
更多
友链
关于
暗黑模式
Centos优雅地编译安装最新版Git
前言众所周知Centos yum源里面的git版本还停留在1.8.3的远古版本,此版本无法使用docker build来构造github上面的镜像,手动编译安装最新版即可解决因git版本过低导致的一系列问题。 卸载系统内旧版Git1yum -y autoremove git #卸载git及相关依赖 安装依赖库和编译工具1yum -y install gcc gettext curl-d...
2021-10-31
technical
linux
centos
technical
linux
centos
阅读全文
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
阅读全文