摘要: 出现以上问题解决方案: 可以尝试修改csproj file 工程文件,然后添加如下代码: <PropertyGroup>…<DisableOutOfProcTaskHost>true</DisableOutOfProcTaskHost></PropertyGroup> 阅读全文
posted @ 2022-03-02 21:18 农村手艺人 阅读(94) 评论(0) 推荐(0) 编辑
摘要: dotnet watch run debug 自动编译 阅读全文
posted @ 2021-10-14 14:07 农村手艺人 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 扩充磁盘 fdisk -ldf -h fdisk /dev/sda 进入fdisk管理菜单,后续操作如下:输入n,创建分区=>输入开始扇区号,直接回车,即使用默认=>输入结束扇区号: 若输入数字,表示指定结束扇区号,如 40000000 若输入+数字,表示占用的扇区数,如:+1000 即占1000个 阅读全文
posted @ 2021-08-19 10:18 农村手艺人 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 首先找一个能联网的机器,该机器安装完docker 并且有mysql nginx的镜像: Mysql安装: 1,在能联网的机器上执行:docker save -o /root/app/mysql57.tar mysql:5.7; 2,把/root/app/mysql57.tar文件上传到无法上网的机器 阅读全文
posted @ 2021-07-09 17:18 农村手艺人 阅读(1541) 评论(1) 推荐(1) 编辑
摘要: 删除 API 功能 替代功能 attachEvent addEventListener window.execScript eval window.doScroll window.scrollLeft、window.scrollTop document.all document.getElement 阅读全文
posted @ 2020-12-02 08:54 农村手艺人 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 创建 gbase 用户,并更改它的密码useradd gbasepasswd gbase 开始安装 cd /home/gbase/setup/GBaseInstallsh ./Install_lin.sh 配置文件位置./config/gbase_8a_gbase8a.cnf 启动服务:gbase. 阅读全文
posted @ 2020-10-28 11:18 农村手艺人 阅读(814) 评论(0) 推荐(0) 编辑
摘要: 下载conda3conda create -n TF2.2 python=3.7conda activate TF2.2conda install cudatoolkit=10.1conda install cudnn=7.6pip install tensorflow==2.2 阅读全文
posted @ 2020-05-23 09:16 农村手艺人 阅读(97) 评论(0) 推荐(0) 编辑
摘要: go env -w GOPROXY=direct go env -w GOSUMDB=off go env -w GOPROXY=https://goproxy.io,direct go env -w GO111MODULE="on" go env 阅读全文
posted @ 2019-12-07 21:23 农村手艺人 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 清理低版本 sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ doc 阅读全文
posted @ 2019-11-30 20:09 农村手艺人 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 在安装MongoDB之后,先关闭auth认证,启动服务端,创建一个帐号,该账号需要有grant权限,即:账号管理的授权权限。注意一点,帐号是跟着库走的,所以在指定库里授权,必须也在指定库里验证(auth)。 添加管理用户: use admin db.createUser( {user: "admin 阅读全文
posted @ 2019-11-20 09:39 农村手艺人 阅读(1734) 评论(0) 推荐(0) 编辑