Develop in linux
Voider7
软件手工艺者,当前从事LPWAN下LoRa领域。
展开
-
换行 in window and linux
文本数据linux和windows处理换行符差一个字符.linux是/nwindows是/r/n If copy file created in window to linux, you need the delete /r . sed -i s//r//g file-name 文件file-name里的/r没了原创 2009-11-04 10:05:00 · 931 阅读 · 1 评论 -
gdb 调试汇编
ref: http://blog.csdn.net/haiyan0106/archive/2007/05/26/1627007.aspx as -o procedure.o -gstabs procedure.sgcc -o procedure procedure.ogdb procedure- - - - - - - - - - - - -- - - - s原创 2009-11-01 14:04:00 · 549 阅读 · 0 评论 -
bash
<br />Bash Guide for Beginnershttp://tldp.org/LDP/Bash-Beginners-Guide/html/Bash-Beginners-Guide.html#sect_07_01原创 2010-08-31 16:21:00 · 640 阅读 · 0 评论 -
Java web
<br />Connect mysql error:<br /> <br />Error com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the serve原创 2010-10-06 10:08:00 · 456 阅读 · 0 评论 -
grep Note
<br />以前老是苦于递归grep时不会限定文件类型,今天网上看到http://www.unixresources.net/linux/clf/vrml/archive/00/00/35/86/358606.html<br /> find apilib/src/stvid/ -name *.h -print | xargs grep -w STVID_Start<br />好强大,各种工具要活学活用原创 2011-05-11 16:34:00 · 487 阅读 · 0 评论 -
Ubuntu 编程环境搭建
One,apt-get install build-essential http://hi.baidu.com/mrprogrammer/blog/item/294b512b17efb993023bf62f.htmlTwo,1.in synaptic install the cscope2.the dirctory of the project# cscope -Rbkq# vim file.ct原创 2009-08-26 16:05:00 · 465 阅读 · 0 评论 -
mutex and Condition Variables
ref: http://blog.csdn.net/locape/article/details/6040383http://blog.chinaunix.net/space.php?uid=23061624&do=blog&cuid=2127853链接对 线程同步的转载 2011-10-09 09:46:04 · 421 阅读 · 0 评论