会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
18cm的烦恼
博客园
首页
新随笔
联系
订阅
管理
[置顶]
制作ISO文件
摘要: mkisofs -o ./test.iso -R -J -v ./test
阅读全文
posted @ 2024-06-26 20:32 18cm的烦恼
阅读(13)
评论(0)
推荐(0)
[置顶]
查看服务器的出口IP
摘要: #只返回IP地址 curl whatismyip.akamai.com wget -qO - ifconfig.co curl icanhazip.com dig +short myip.opendns.com @resolver1.opendns.com curl ident.me curl v4
阅读全文
posted @ 2022-07-19 11:21 18cm的烦恼
阅读(234)
评论(0)
推荐(0)
2025年7月16日
临时脚本存放
摘要: from collections import defaultdict input_file = 'input.txt' output_file = 'output.txt' # 第一步:按前3列分组,合并第4列 grouped_3 = defaultdict(list) with open(inp
阅读全文
posted @ 2025-07-16 12:10 18cm的烦恼
阅读(10)
评论(0)
推荐(0)
2024年12月30日
每2周执行1次crontab任务
摘要: 0 3 * * 6 [ $(($(date +\%U) \% 2)) -eq 0 ] && /path/to/backup.sh
阅读全文
posted @ 2024-12-30 08:30 18cm的烦恼
阅读(31)
评论(0)
推荐(0)
2024年6月18日
判断nas挂载
摘要: #!/bin/bash # 定义配置文件路径 AUTOMOUNT_CONFIG="/etc/auto.nfsc" MOUNTS_FILE="/proc/mounts" # 检查autofs服务配置文件 if [ -f "$AUTOMOUNT_CONFIG" ]; then echo "Autofs配
阅读全文
posted @ 2024-06-18 13:14 18cm的烦恼
阅读(43)
评论(0)
推荐(0)
2024年6月10日
rh342练习题
该文被密码保护。
阅读全文
posted @ 2024-06-10 20:22 18cm的烦恼
阅读(4)
评论(0)
推荐(0)
2024年6月7日
autofs
摘要: test -fstype=cifs,rw,username=system-admin,password="test",uid=867,gid=654,iocharset=gb2312,file_mode=0777,dir_mode=0777 ://192.168.252.81/test
阅读全文
posted @ 2024-06-07 21:17 18cm的烦恼
阅读(9)
评论(0)
推荐(0)
2024年5月23日
检查初始化结果
该文被密码保护。
阅读全文
posted @ 2024-05-23 07:54 18cm的烦恼
阅读(1)
评论(0)
推荐(0)
2024年5月19日
日志过滤器
摘要: 1. 安全相关的关键字 认证失败 regex复制代码Failed\s+password Invalid\s+user authentication\s+failure Failed\s+publickey Failed\s+keyboard-interactive/pam 用户相关 regex复制代
阅读全文
posted @ 2024-05-19 23:22 18cm的烦恼
阅读(30)
评论(0)
推荐(0)
2023年3月9日
metric
摘要: metric 配置网卡的默认metric 给网卡配置默认的metric值,当添加路由的时候如果没有手动指定 metric 值,则使用默认值,默认值为 -1 ,表示自动配置路由的metric值。metric 数值越大,路由的优先级越低。 没有 NetworkManager 的情况下设置 修改位于/et
阅读全文
posted @ 2023-03-09 08:36 18cm的烦恼
阅读(1998)
评论(0)
推荐(1)
2023年2月28日
同步脚本
摘要: #!/bin/bash #1. 判断参数个数 if [ $# -lt 1 ] then echo Not Enough Arguement! exit; fi #2. 遍历集群所有机器 rpm -q rsync &>/dev/null || yum install -y rsync for host
阅读全文
posted @ 2023-02-28 17:13 18cm的烦恼
阅读(31)
评论(0)
推荐(0)
下一页