上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: 配置本地yum源,把其他repo文件移动到bak目录 cd /etc/yum.repos.d/ mkdir bak mv *.repo ./bak vim local.repo [local] name=local baseurl=file:///cdrom enable=1 gpgcheck=0 阅读全文
posted @ 2022-05-14 20:43 shenshu 阅读(572) 评论(1) 推荐(1)
摘要: https://blog.csdn.net/weixin_42562106/article/details/106916935 阅读全文
posted @ 2022-05-14 18:56 shenshu 阅读(80) 评论(0) 推荐(0)
摘要: 参考文章 ####点对点内网穿透 https://gofrp.org/docs/examples/xtcp/ https://www.jianshu.com/p/8589be3dd393 https://blog.csdn.net/qq_44700810/article/details/120991 阅读全文
posted @ 2022-05-14 11:17 shenshu 阅读(105) 评论(0) 推荐(0)
摘要: 同步时间 每隔1小时同步时间 * */1 * * * ntpdate 172.16.1.1 >/dev/null 2>&1 & https://www.linuxprobe.com/cron-anacron-work.html 阅读全文
posted @ 2022-05-13 10:20 shenshu 阅读(21) 评论(0) 推荐(0)
摘要: https://www.likecs.com/show-203580918.html 阅读全文
posted @ 2022-05-13 10:10 shenshu 阅读(16) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/lei0213/p/7506130.html 阅读全文
posted @ 2022-04-25 10:29 shenshu 阅读(25) 评论(0) 推荐(0)
摘要: 1、Split-Merge-File.ps1 脚本转自: https://www.cnblogs.com/qiushuiblog/p/11510896.html 修改了第134行代码,完整代码如下: # Obtain a suitable buffer length by partial file 阅读全文
posted @ 2022-04-22 20:27 shenshu 阅读(1037) 评论(0) 推荐(0)
摘要: GetUsersNums.ps1 代码 $num=(iex "query user").Count-1 $time=(Get-Date).ToString('yyyy-MM-dd HH:mm:ss') ($time+","+$num)|Out-File -Append "GetUsers.txt" 阅读全文
posted @ 2022-04-19 08:29 shenshu 阅读(104) 评论(0) 推荐(0)
摘要: App.config <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="a1" value="a1_result"/> <add key="a2" value="a2_result"/> < 阅读全文
posted @ 2022-04-18 22:23 shenshu 阅读(232) 评论(0) 推荐(0)
摘要: 方法一 @echo off if not exist "c:\a\b\c\abc123.exe" (goto tagA) else (goto tagB) :tagA echo doing A..... goto end :tagB echo doing B..... goto end :end e 阅读全文
posted @ 2022-04-15 08:48 shenshu 阅读(53) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 下一页