上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 下载bootstrapper https://learn.microsoft.com/en-us/visualstudio/install/create-an-offline-installation-of-visual-studio?view=vs-2022#step-1 download-the 阅读全文
posted @ 2022-12-11 10:37 ChasingDreams 阅读(3049) 评论(0) 推荐(0) 编辑
摘要: 本地端口转发(访问其他网段机器) -L 本地端口转发 命令:ssh -N -L [本地ip]:[本地端口]:[远程ip]:[远程端口] 远程服务器 本地ip可以省略不写 在本机执行 例如:ssh -N -L 3012:远程ip:2220 root@网关ip 含义:把本机的3012映射到远程服务器的2 阅读全文
posted @ 2022-11-27 22:12 ChasingDreams 阅读(167) 评论(0) 推荐(0) 编辑
摘要: # 实验环境 3块SSD 奇偶校验 | 3块HDD 奇偶校验 | 1块HDD热备 (如做归档使用,建议不做SSD存储层,直接用HDD,本文以有SSD存储层为例) # 安装重复数据删除 Install-WindowsFeature -Name FS-Data-Deduplication # 查看物理磁 阅读全文
posted @ 2022-11-13 19:04 ChasingDreams 阅读(1033) 评论(1) 推荐(0) 编辑
摘要: 新增端口转发: 首先打开命令提示符(cmd) netsh interface portproxy add v4tov4 listenport=监听端口 connectaddress=转发到的地址 connectport=转发到的端口 例子: netsh interface portproxy add 阅读全文
posted @ 2022-10-09 09:38 ChasingDreams 阅读(159) 评论(0) 推荐(1) 编辑
摘要: 目标 返回结果和ASP.NET 创建的Webservice完全一样,实现兼容 代码 <ItemGroup> <PackageReference Include="SoapCore" Version="1.1.0.30" /> </ItemGroup> public static void Main( 阅读全文
posted @ 2022-08-10 09:30 ChasingDreams 阅读(431) 评论(0) 推荐(0) 编辑
摘要: server { listen 22222; server_name localhost; location / { if ($request_method = 'OPTIONS') { add_header Access-Control-Allow-Origin 'http://localhost 阅读全文
posted @ 2022-08-03 15:16 ChasingDreams 阅读(422) 评论(0) 推荐(0) 编辑
摘要: c#:HttpClient使用详解 jackletter 已于 2022-07-05 20:53:05 修改 10570 已收藏 61 分类专栏: .netcore c# 文章标签: c# 开发语言 后端 于 2021-08-19 16:13:09 首次发布 版权声明:本文为博主原创文章,遵循 CC 阅读全文
posted @ 2022-08-02 14:26 ChasingDreams 阅读(2350) 评论(0) 推荐(0) 编辑
摘要: # 查看网卡编号 route print # if是网卡编号 192.168.1.0是目标网段 192.168.1.254是网关 metric 是优先级 数越小优先级越高 route add -p 192.168.1.0 mask 255.255.255.0 192.168.1.254 if 19 阅读全文
posted @ 2022-07-06 22:59 ChasingDreams 阅读(677) 评论(0) 推荐(0) 编辑
摘要: Console [Unit] Description=Long running service/daemon created from .NET worker template [Service] # will set the Current Working Directory (CWD). Wor 阅读全文
posted @ 2022-06-28 09:08 ChasingDreams 阅读(133) 评论(1) 推荐(1) 编辑
摘要: 先安装dotnet sdk 然后把nuget包下载好 “1”为文件夹名称 dotnet tool install --global dotnet-counters --version 3.1.141901 --add-source "1" 阅读全文
posted @ 2022-06-14 10:46 ChasingDreams 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页