前提条件: 主机系统为 WindowsServer 2016+ 或 Win10+
嵌套虚拟化只针对虚拟机,所以要为每个虚拟机开启。
1 |
Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true |
… 阅读全文
前提条件: 主机系统为 WindowsServer 2016+ 或 Win10+
嵌套虚拟化只针对虚拟机,所以要为每个虚拟机开启。
1 |
Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true |
… 阅读全文
npm 有两个代理设置,一个是 http 代理,一个是 https 代理。
在命令行设置代理服务器。
1 2 3 4 5 6 |
#获取 http 请求的代理设置 npm config get proxy npm config set proxy="http://127.0.0.1:1080" #获取 https 请求的代理设置 npm config get https-proxy npm config set https-proxy="http://127.0.0.1:1080" |
代理服务器可以使用小灰机(小灰机同时支持 socks 代理和 http 代理)… 阅读全文
当前最新 .net core 版本为 2.1
打开 .net core 下载页面,https://www.microsoft.com/net/download/linux ,页面包含 .net core sdk 及 .net core runtime 两个安装包。
如果需要在 linux 上进行开发,要安装 .net core sdk 版本,不需要开发推荐安装 .net core runtime 版本。
点击 install .NET Core 2.1 Runtime ,进入下载页面,在下拉框中选择 Centos。
按提示输入以下命令