上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: ethtool -p ens33 (从ifconfig 或者 ip a 中获得,网卡灯会闪) ethtool ens33 Link detected: no 阅读全文
posted @ 2024-05-20 21:07 shenshu 阅读(26) 评论(0) 推荐(0) 编辑
摘要: echo "查看syslog日志审计服务是否开启:"if service rsyslog status | egrep " active \(running";then echo ">>>经分析,syslog服务已开启"else echo ">>>经分析,syslog服务未开启,建议通过servic 阅读全文
posted @ 2024-04-22 14:33 shenshu 阅读(4) 评论(0) 推荐(0) 编辑
摘要: mount -t cifs //192.168.2.145/share /mnt/test -o username=test,password=123456 编辑/etc/fstab //192.168.2.145/share /mnt/test cifs username=test,passwor 阅读全文
posted @ 2024-04-18 09:31 shenshu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: https://mirrors.tuna.tsinghua.edu.cn/OpenBSD/OpenSSH/portable/ 阅读全文
posted @ 2024-04-03 11:55 shenshu 阅读(12) 评论(0) 推荐(0) 编辑
摘要: cd /usr/share/nginx/html/mkdir -p files/a/b/cvim /etc/nginx/default.d/t1.conf location / { root /usr/share/nginx/html/files; autoindex on; autoindex_e 阅读全文
posted @ 2024-03-29 20:32 shenshu 阅读(64) 评论(0) 推荐(0) 编辑
摘要: powershell 执行 irm https://massgrave.dev/get | iex 阅读全文
posted @ 2023-12-30 11:37 shenshu 阅读(129) 评论(0) 推荐(0) 编辑
摘要: systemctl start firewalld.service firewall-cmd --permanent --add-port=7000/udpfirewall-cmd --permanent --add-port=7000/tcp #取消放行的80端口 firewall-cmd --z 阅读全文
posted @ 2023-08-29 20:47 shenshu 阅读(63) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/songbiao/p/12470163.html 阅读全文
posted @ 2023-08-17 10:38 shenshu 阅读(19) 评论(0) 推荐(0) 编辑
摘要: ### 1、生成自签名证书 ```powershell $certname = "certnameTest" ## Replace {certificateName} $cert = New-SelfSignedCertificate -Subject "CN=$certname" -CertSto 阅读全文
posted @ 2023-08-02 20:22 shenshu 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1. 获取文件中的关键字key: cat fileName | grep "key" 2. 获取文件中的某个关键字key1, key2, key3: cat fileName | grep -E "key1|key2|key3" 3. 获取文件中的多个关键字,同时满足: cat fileName | 阅读全文
posted @ 2023-07-30 20:40 shenshu 阅读(34) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页