Author Archives: Plus7

CentOS8 升级CentOS 8 stream

确认CentOS8版本: cat /etc/centos-release 从2021年2月1日后,CentOS8的repo彻底失效,全部迁移至https://vault.centos.org/,需要先替换为vault repo sed -e ‘s|^mirrorlist=|#mirrorlist=|g’ \ -e ‘s|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|’ \ -i.bak \ /etc/yum.repos.d/CentOS-*.repo详情: https://forums.centos.org/viewtopic.php?f=54&t=78708 下载转换repo: dnf install -y centos-release-stream 确认repo列表: dnf repolist 更换repo (https://vault.centos.org/centos/8/extras/x86_64/os/Packages/): dnf swap -y centos-{linux,stream}-repos 或dnf swap -y centos-linux-repos centos-stream-repos 切换发行版: dnf distro-sync 确认CentOS8版本: cat … Continue reading

Posted in Linux | Tagged , | Leave a comment

ping.pe

前段时间被介绍了一个工具,发现还是挺有用的,也挺有意思:ping.pe。 当时的情况是要对服务器的ping测试,主要是看国内外到服务器的延迟状况。 经过好哥们的推荐,发现这个工具真的很棒,而且界面也很帅。

Posted in Online Tools, Tools | Tagged | 2 Comments

openssl的常用使用方法

查询证书详情: openssl x509 -in 【证书的cert文件】-text 例:echo | openssl s_client -connect   10.108.20.161:443  | openssl x509 -noout -text 查看证书文件详情:openssl x509 -in [CERTFILE] -text 例:openssl x509 -in apiserver-kubelet-client.crt -text

Posted in Common Tools, Tools | Leave a comment

适配于树莓派的CentOS系统安装

系统下载连接:http://mirror.centos.org/altarch/7/isos/armhfp/ 请注意,如果是树莓派3/4,一定要从这个 官网下载,否则有可能会出现彩虹屏的情况。 使用烧录工具或者dd命令写入到sd卡中即可。

Posted in Device, PC and other personal devices | Tagged , , | Leave a comment

收集诊断包文件(日志)

Posted in Device, Loadbalancer | Tagged , , , | Leave a comment