RockyLinux9配置静态IP

修改 NetworkManager 配置文件 ens160为我的网卡名称 1 vim /etc/NetworkManager/system-connections/ens160.nmconnection 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 [connection] id=ens160……

Python任务调度-APScheduler参数传递

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 from apscheduler.schedulers.blocking import BlockingScheduler def job1(para1, para2,para3): print("This is job1") print("The para1 is "+str(para1)) print("The para2 is "+str(para2)) print("The para2 is……

利用s3fs在linux上挂载S3存储桶

安装 RockyLinux 1 dnf install -y s3fs-fuse 创建全局凭证文件 1 2 echo ACCESS_KEY_ID:SECRET_ACCESS_KEY > /etc/passwd-s3fs chmod 600 /etc/passwd-s3fs 挂载 1 s3fs mybucket /path/to/mountpoint -o passwd_file=/etc/passwd-s3fs 检查挂载情况 1 df -h……

裸机部署esxi7.0

裸机是指一台物理计算机,更具体地说是一台服务器,它只有一个操作系统。 这样区分在现代计……

利用GitHub API获取最新Releases版本号

本文以 docker-compose: Define and run multi-container applications with Docker 为例,展示利用 GitHub API 获取 Repo 中最新 Releases 的版本号。 代码 1 curl --silent --connect-timeout 10 --retry 1 "https://api.github.com/repos/docker/compose/releases/latest"……