摘要: mkisofs -o ./test.iso -R -J -v ./test 阅读全文
posted @ 2024-06-26 20:32 18cm的烦恼 阅读(13) 评论(0) 推荐(0)
摘要: #只返回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)
摘要: 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)
摘要: 0 3 * * 6 [ $(($(date +\%U) \% 2)) -eq 0 ] && /path/to/backup.sh 阅读全文
posted @ 2024-12-30 08:30 18cm的烦恼 阅读(31) 评论(0) 推荐(0)
摘要: #!/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)
该文被密码保护。 阅读全文
posted @ 2024-06-10 20:22 18cm的烦恼 阅读(4) 评论(0) 推荐(0)
摘要: 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)
该文被密码保护。 阅读全文
posted @ 2024-05-23 07:54 18cm的烦恼 阅读(1) 评论(0) 推荐(0)
摘要: 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)
摘要: metric 配置网卡的默认metric 给网卡配置默认的metric值,当添加路由的时候如果没有手动指定 metric 值,则使用默认值,默认值为 -1 ,表示自动配置路由的metric值。metric 数值越大,路由的优先级越低。 没有 NetworkManager 的情况下设置 修改位于/et 阅读全文
posted @ 2023-03-09 08:36 18cm的烦恼 阅读(1998) 评论(0) 推荐(1)
摘要: #!/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)