上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 42 下一页
摘要: ping 192.168.1.1 -c 10 | awk '{ print $0"\t" strftime("%Y-%m-%d %H:%M:%S",systime())}' 后台运行 nohup ping 192.168.1.1 -c 10 | awk '{ print $0"\t" strftim 阅读全文
posted @ 2020-09-11 17:30 hbg-rohens 阅读(1889) 评论(0) 推荐(0) 编辑
摘要: 开启core, 采集程序崩溃端状态 vi /etc/profile ulimit -S -c unlimited > /dev/null 2>&1 source /etc/profile 将崩溃文件记录下来 vi /etc/sysctl.conf kernel.core_pattern = ./co 阅读全文
posted @ 2020-09-04 18:07 hbg-rohens 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 当紧接着执行两条select语句时, 产生了 2014的错误码. 查询问题原因:调用存储过程后,没有完全释放资源:需要在最后调用以下代码: MYSQL_RES *res; while (!mysql_next_result(gp_conn)) { res = mysql_store_result(g 阅读全文
posted @ 2020-09-01 20:44 hbg-rohens 阅读(870) 评论(0) 推荐(0) 编辑
摘要: 支持cgi修改配置文件 /usr/local/apache2/conf/httpd.conf 主要修改地方有: 1)更改网页启动的主路径 DocumentRoot "/var/www/html/" 2)添加cgi支持 cgi-bin文件存放路径 ScriptAlias /cgi-bin/ "/var 阅读全文
posted @ 2020-08-28 16:30 hbg-rohens 阅读(188) 评论(0) 推荐(0) 编辑
摘要: eg: { "oper": 147, "data": { "codes": ["0755VF", "0756SB", "0734OP"], "ids": [1,2,3,4], } } char *pResponse; cJSON *root, *json_oper, *json_data, *jso 阅读全文
posted @ 2020-08-27 15:01 hbg-rohens 阅读(591) 评论(0) 推荐(0) 编辑
摘要: sudo cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local -D CUDA_nppi_LIBRARY=true -D CUDA_GENERATION=Kepler .. -D CUDA_nppi_LIBRARY= 阅读全文
posted @ 2020-07-01 16:19 hbg-rohens 阅读(435) 评论(0) 推荐(0) 编辑
摘要: ubuntu16.04 安装 apache21、 sudo apt update2、 sudo apt-get install apache2 apache2-utils3、 qid3、 测试安装ok? 打开页面 http://localhost/ 来启动访问的服务器, 服务器将会跳转到 http: 阅读全文
posted @ 2020-06-17 13:50 hbg-rohens 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 无线网卡有个100兆端eth口,与工控机的千兆口直连. 无线网卡异常启动后,速率总是协商不成功,导致工控机端有线口up不起来. 解决方案: 强制工控机端端口为100兆,不去协商. 命令为: sudo ethtool -s enp3s0 speed 100 duplex full autoneg of 阅读全文
posted @ 2020-06-16 10:59 hbg-rohens 阅读(2926) 评论(0) 推荐(0) 编辑
摘要: sudo touch if_interface_up.shsudo chmod 777 if_interface_up.sh sudo vi if_interface_up.sh #!/bin/bashwhile true do result=`cat /sys/class/net/enp0/car 阅读全文
posted @ 2020-06-09 20:03 hbg-rohens 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 守护进程1 定义守护进程是脱离于终端并且在后台运行的进程.2 创建守护进程步骤1)创建子进程,父进程退出.2)在子进程中创建新会话.(最重要的一步,使用系统函数setsid)3)改变当前目录为根目录4)重设文件权限掩码5)关闭文件描述符调用setsid有三个作用:1)让进程摆脱原会话的控制2)让进程 阅读全文
posted @ 2020-06-02 10:39 hbg-rohens 阅读(171) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 42 下一页