摘要:
ethtool -p ens33 (从ifconfig 或者 ip a 中获得,网卡灯会闪) ethtool ens33 Link detected: no 阅读全文
摘要:
echo "查看syslog日志审计服务是否开启:"if service rsyslog status | egrep " active \(running";then echo ">>>经分析,syslog服务已开启"else echo ">>>经分析,syslog服务未开启,建议通过servic 阅读全文
摘要:
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 阅读全文
摘要:
https://mirrors.tuna.tsinghua.edu.cn/OpenBSD/OpenSSH/portable/ 阅读全文
摘要:
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 阅读全文
摘要:
powershell 执行 irm https://massgrave.dev/get | iex 阅读全文
摘要:
systemctl start firewalld.service firewall-cmd --permanent --add-port=7000/udpfirewall-cmd --permanent --add-port=7000/tcp #取消放行的80端口 firewall-cmd --z 阅读全文
摘要:
https://www.cnblogs.com/songbiao/p/12470163.html 阅读全文
摘要:
### 1、生成自签名证书 ```powershell $certname = "certnameTest" ## Replace {certificateName} $cert = New-SelfSignedCertificate -Subject "CN=$certname" -CertSto 阅读全文
摘要:
1. 获取文件中的关键字key: cat fileName | grep "key" 2. 获取文件中的某个关键字key1, key2, key3: cat fileName | grep -E "key1|key2|key3" 3. 获取文件中的多个关键字,同时满足: cat fileName | 阅读全文