上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页
摘要: 一、检查同步在线yum源repo源所有rpm包的占用大小 yum repolist AppStream -v 二、下载带目录bclinux/el8.2/,下载目录下除iso及index的目录及文件 wget -r -np -nH -R iso,index.html* https://mirrors. 阅读全文
posted @ 2024-12-09 16:44 gkhost 阅读(627) 评论(0) 推荐(0)
摘要: 一、查看openssl软件包 rpm -qa | grep openssl 二、查看当前软件包修复的CVE漏洞 rpm -q openssl --changelog | grep -i 'cve' 三、升级最新软件包 1、检查yum源最新的openssl包 yum list available -- 阅读全文
posted @ 2024-12-09 16:09 gkhost 阅读(298) 评论(0) 推荐(0)
摘要: 一、查看openssh-8.2p1-29.oe2003sp4.x86_64依赖包 yum deplist openssh | grep -A 50 openssh-8.2p1-29.oe2003sp4.x86_64 二、网站archlinux查看gcc相关依赖包及软件目录结构 1、参考 https: 阅读全文
posted @ 2024-12-09 15:40 gkhost 阅读(423) 评论(0) 推荐(0)
摘要: 一、准备工具 1、python3.7、pip3.7安装 参考:https://www.cnblogs.com/gkhost/p/18595021 2、pip3更换源 # 永久设定pip3源pip config set global.index-url https://mirrors.huaweicl 阅读全文
posted @ 2024-12-09 15:20 gkhost 阅读(862) 评论(0) 推荐(0)
摘要: 一、安装python 1、安装依赖环境 yum install gcc -y yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-dev 阅读全文
posted @ 2024-12-09 15:20 gkhost 阅读(339) 评论(0) 推荐(0)
摘要: mysql 主从数据同步失败手动同步数据的方法 进入master执行 1、锁表 flush tables with read lock; 2、导出备份数据 mysqldump -u root -p test1 > /tmp/mysql.sql 3、查看主库状态记录偏移量position的值 show 阅读全文
posted @ 2024-12-05 10:50 gkhost 阅读(88) 评论(0) 推荐(0)
摘要: 一、Gtid简介 GTID transactions are identified by a global transaction identifier (GTID) in the form UUID:NUMBER. Every GTID transaction in a log is always 阅读全文
posted @ 2024-12-05 10:48 gkhost 阅读(346) 评论(0) 推荐(0)
摘要: du -ah /home --max-depth=6 | sort -rh | head -10 倒序查找当前目录中前四个GB大小的文件 # 输出前四行的文件名 [root@harbor ~]# for i in `du -sh ./* | egrep "M" | sort -r -n -k 1 | 阅读全文
posted @ 2024-12-05 10:43 gkhost 阅读(37) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2024-12-04 17:33 gkhost 阅读(28) 评论(0) 推荐(0)
摘要: 1、将字段串“plugins=1”替换为“plugins=0” sed -i 's/plugins=1/plugins=0/g' /etc/yum.conf 2、将字符串“\$1>="\$date_source" \&\& \$1<="\$date_dest"”替换为“\$1>='\"\$date_ 阅读全文
posted @ 2024-12-04 15:28 gkhost 阅读(49) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页