06 2024 档案
摘要:由于电脑受限制,无法在界面修改时间,无法手动同步时间。 这是一种在 windows10 系统,修改系统时间的方式: 1.使用管理员权限打开powershell ,设置电脑时间 Set-Date "06/27/2024 14:18:30" linux 同步电脑时间; yum install ntpda
阅读全文
摘要:sudo tcpdump -i any -w capture.pcap
阅读全文
摘要:每隔2秒,执行一次 ss -nltpa | grep 5080 一共执行10000次, 并且将执行后的结果写入到配置文件; 在屏幕输出每次执行情况 #!/bin/bash count=1 while [ $count -le 10000 ] do echo "Execution $count:" s
阅读全文