摘要:
9MS4-27Q5-VL5P-7TD3-GNOY8YD8-45Q3-TX9A-9YH4-FNOY9KQ5-59L5-MU5F-5BD4-PNOY 阅读全文
摘要:
有的只要做了第一步就够了。有的第三就够了。需不同系统不同版本测试。第一步:sudo vim /etc/security/limits.conf 文件尾追加 * hard nofile 65535* soft nofile 65535* soft core unlimited第二步:sudo vim 阅读全文
摘要:
tmux #开启tmuxtmux ls #显示已有tmux列表(C-b s)tmux attach -t key #选择tmux的sessiontmux attach-session -t 数字 #选择tmux的session C-b d #临时断开会话,可以重连 tmux kill-session 阅读全文
摘要:
匿名访问windows 2008 R2 文件服务器的共享,七步: 第一步 取消简单文件共享; 第二步 设置需要共享的文件夹everyone权限; 第三步 net user guest /active:y (开户Guest帐户); 第四步 compmgmt.msc 设置共享;测试情况中5和6默认是开启 阅读全文
摘要:
每个系统可能路径会不同:桌面路径: echo %systemdrive%%homepath%\桌面 或者 "%USERPROFILE%\desktop\hotfix.txt" %HOMEDRIVE% = C:\ 当前启动的系统的所在分区 %SystemRoot% = C:\WINDOWS 当前启动的 阅读全文
摘要:
terminate called after throwing an instance of 'std::system_error'what(): Enable multithreading to use std::thread: Operation not permittedAborted (co 阅读全文
摘要:
svn list https://192.168.16.23/svn/project/ --username xiao 查看svn目录树 svn up --username zhangsan --password 123456 临时切换 Repositoreis属性里有hooks脚本设置如pre-c 阅读全文
摘要:
Stevens在文章中一共比较了五种IO Model: blocking IO nonblocking IO IO multiplexing signal driven IO asynchronous IO由于signal driven IO在实际中并不常用,所以我这只提及剩下的四种IO Model 阅读全文
摘要:
一般来说,C++的类成员函数不能作为线程函数。这是因为在类中定义的成员函数,编译器会给其加上this指针.如果一定要以类成员函数作为线程函数,通常有如下解决方案: (1)将该成员函数声明为static类型,去掉this指针;但是将成员函数声明为静态虽然可以解决作为线程函数的问题,但是它带来了新的问题 阅读全文
摘要:
对libevent中Timer的分析:(http://www.monkey.org/~provos/libevent/doxygen-2.0.1/)Timer:libevent can also be used to create timers that invoke a callback afte 阅读全文