摘要: 1、qt安装时可能无法启动,原因是缺少依赖项,执行以下指令: sudo apt-get install libxcb-xinerama0 2、qt运行时报错:GL/gl.h: No such file or directory。执行以下指令: sudo apt install mesa-common 阅读全文
posted @ 2023-07-25 11:22 快活杰 阅读(13) 评论(0) 推荐(0) 编辑
摘要: cd ./grpc/cmake/build sudo rm -rf * cmake ../.. -DBUILD_SHARED_LIBS=ON make sudo make install sudo ldconfig –v fftw配置时,sop中的以下语句会报错,其中空格有不对的地方,使用以下语句即 阅读全文
posted @ 2023-07-25 11:21 快活杰 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 3、IB虚拟网络配置 检查是否支持: cat /boot/config-$(uname -r) | grep RXE 安装驱动: sudo apt-get install libibverbs1 ibverbs-utils librdmacm1 libibumad3 ibverbs-provider 阅读全文
posted @ 2023-07-25 11:21 快活杰 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1、Docker安装 1、pre install sudo apt-get update sudo apt-get install ca-certificates curl gnupg sudo install -m 0755 -d /etc/apt/keyrings curl -fsSL http 阅读全文
posted @ 2023-07-25 11:20 快活杰 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Slurm 测试环境配置 1.机器规划 Host: HPC_Slurm_Main:192.168.141.135 Clients: HPC_Slurm_Client01:192.168.141.136 HPC_Slurm_Client02:192.168.141.137 HPC_Slurm_Clie 阅读全文
posted @ 2023-07-25 11:20 快活杰 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Windows Server 2019 CTP3.1打开时提示mmc无法创建单元 阅读全文
posted @ 2019-07-23 09:57 快活杰 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 网上的代码在win10上可能会报错。改了一下,现在已经OK了。Mark一下 public class IEProxySetting { public static bool UnsetProxy() { return SetProxy(null, null); } public static boo 阅读全文
posted @ 2019-06-06 17:17 快活杰 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 如果不用组件,可以用下列方法: public bool IsWebServiceAvaiable(String url) { try { HttpWebRequest myHttpWebRequest =... 阅读全文
posted @ 2014-11-25 15:08 快活杰 阅读(486) 评论(0) 推荐(0) 编辑
摘要: public static short[][] GetPixs(Bitmap bitmap) { int height = bitmap.Height; int width = bitmap.Width; byte tempB, tempG, tempR; short[][] spOriginData = new short[height][]; for (int i = 0; i < height; i++) { sp... 阅读全文
posted @ 2013-06-22 08:38 快活杰 阅读(2999) 评论(0) 推荐(0) 编辑
摘要: 从别人的博客Copy过来的,方便自己查数据JQGridjqGrid学习之-------------安装 jqGrid安装很简单,只需把相应的css、js文件加入到页面中即可。 按照官网文档: /myproject/css/ ui.jqgrid.css /ui-lightness/ /images/ jquery-ui-1.7.2.custom.css /myproject/js/ /i18n/ grid.locale-bg.js list of all language files …. Changes.txt jquery-1.3.2.min.js jquery.j... 阅读全文
posted @ 2013-05-31 23:56 快活杰 阅读(373) 评论(1) 推荐(0) 编辑