
linux & unix
Qyee16
给自己一个自己的家
linux/window/mac;c++/ VC/Qt/object-c/JAVA
展开
-
windows 下使用 snprintf
#include #include #ifdef _MSC_VER#define snprintf c99_snprintfinline int c99_vsnprintf(char* str, size_t size, const char* format, va_list ap){ int count = -1; if (size != 0) count = _vsnp转载 2014-09-13 16:26:57 · 3260 阅读 · 0 评论 -
linux 未识别的服务
给linux添加服务的步骤:第一:编写服务脚本,命名为:testServicestart(){ echo "start testService" /usr/local/bin/testService & #可执行文件路径 exit 0;}stop(){ echo -n "stop testService" if pkill testS原创 2012-08-30 23:58:46 · 11470 阅读 · 0 评论 -
【linux】自己常用命令总结
零碎的记录下自己使用linux下常用的一些命令和简单的说明,希望能帮助一些人! 1.ss:用于显示socket状态. 他可以显示PACKET sockets, TCP sockets, UDP sockets, DCCP sockets, RAW sockets, Unix domain sockets等等统计。 补充:使用man ss在命令行下即可查原创 2015-10-12 01:54:27 · 617 阅读 · 0 评论 -
【linux】记一次httpd服务正常,http不能访问的惨痛教训
记一次httpd服务启动正常,http服务死活不能访问的问题记录。 1.在linux下,使用ps和grep查看httpd服务# ps aux | grep httpdroot 7579 0.0 0.0 3872 656 pts/1 S+ 17:48 0:00 grep httpdapache 12229 0.0 0.3 32940 7108 ?原创 2016-04-03 18:07:42 · 21417 阅读 · 2 评论 -
【MAC】 curl : (1) Protocol https not supported or disabled in libcurl
Download it here https://curl.haxx.se/download.htmlsudo ./configure --with-darwinsslmakemake install 原文:https://stackoverflow.com/questions/6884669/curl-1-protocol-https-not-supported-or-dis转载 2017-09-25 21:03:10 · 1625 阅读 · 0 评论