随笔分类 -  Unix/Linux

摘要:目标:统计当前目录下java文件的个数 指令:`ls -R ./ | grep .java$ | wc -l` 原理:`ls -R ./`列出当前文件夹下的所有FILE,包括目录以及文件;`grep .java$`找出匹配正则`.java$`的内容,也就是以.java结尾的内容,并把每个匹配的结果按 阅读全文
posted @ 2018-03-08 20:12 rldts 阅读(212) 评论(0) 推荐(0) 编辑
摘要:原文链接:http://wangchunfeng192.blog.163.com/blog/static/43280937201482310028144/ 故障现象: ubuntu14.04安装了im-switch后系统设置中不见了语言支持这个图标 故障原因: im-switch与语言支持不兼容,两 阅读全文
posted @ 2016-07-27 00:40 rldts 阅读(411) 评论(0) 推荐(0) 编辑
摘要:http://arstechnica.com/information-technology/2015/11/visual-studio-now-supports-debugging-linux-apps-code-editor-now-open-source/--------------------... 阅读全文
posted @ 2015-11-19 20:43 rldts 阅读(283) 评论(0) 推荐(0) 编辑
摘要:http://stackoverflow.com/questions/1789594/how-to-write-cd-command-in-makefile 阅读全文
posted @ 2015-11-17 14:42 rldts 阅读(448) 评论(0) 推荐(0) 编辑
摘要:http://www.gnu.org/-> Software(http://www.gnu.org/software/software.html)->搜索 "gcc"(http://www.gnu.org/software/gcc/)->右侧 "Manual" (https://gcc.gnu.or... 阅读全文
posted @ 2015-11-17 10:57 rldts 阅读(527) 评论(0) 推荐(0) 编辑
摘要:GDB:特别简单,直接写调用式子即可,如下图的p word.c_str(),其中word的类型是std::stringWinDbg:目前都说是.call命令,说实话我宁愿不用。。。见:http://cfc.kizzx2.com/index.php/tutorial-using-windbg-to-c... 阅读全文
posted @ 2015-07-03 19:58 rldts 阅读(664) 评论(0) 推荐(0) 编辑
摘要:sudo passwd root可以修改root密码,但首先会要求你输入当前用户的密码sudo的意思是switch user do,默认切换到root,要求当前用户的密码,会自动调用exit返回到原用户su没有参数的话就默认切换到root,要求root密码。可以通过调用exit返回到原用户。在权限上... 阅读全文
posted @ 2015-06-03 10:56 rldts 阅读(982) 评论(0) 推荐(0) 编辑
摘要:为了方便,VBOX安装的Ubuntu,并在硬盘上创建了一个与Windows的共享文件夹sharefolder方便在两个系统之间传文件 但是经常发现的问题就是从sharefolder中拷贝文件到ubuntu中会出现很多毛病,比如说经常按了CTRL+C之后没有拷贝最新的文件(因为你必须在ubuntu自己 阅读全文
posted @ 2015-04-30 18:26 rldts 阅读(875) 评论(0) 推荐(0) 编辑
摘要:sudo chown -R <user-name> <folder-name> /* 其中-R的意思是recursive,你懂的,chown --help可以查看帮助信息 */ 或者你先使用命令su进入root权限,然后再直接使用如下命令也行: chown -R <user-name> <folde 阅读全文
posted @ 2015-04-30 18:16 rldts 阅读(3344) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/chengmo/archive/2010/10/21/1856577.html 阅读全文
posted @ 2015-04-29 10:05 rldts 阅读(146) 评论(0) 推荐(0) 编辑
摘要:代码如下:其中ZJ::open_max返回系统允许的打开的文件的最大个数#include "util.h"#include // int close(int fd);#include int main(void){ const long opmax = ZJ::open_max(); ... 阅读全文
posted @ 2015-04-29 00:40 rldts 阅读(669) 评论(0) 推荐(0) 编辑
摘要:其实我之前就遇到过这个问题,也强调过,GNU-G++在link阶段是依赖输入的.o或者.a文件的顺序的。如果顺序错误会导致undefined reference错误见这篇随笔:http://www.cnblogs.com/qrlozte/p/4137704.html刚才我遇到的问题是什么呢?代码de... 阅读全文
posted @ 2015-04-29 00:21 rldts 阅读(1097) 评论(0) 推荐(0) 编辑
摘要:#include "apue.h"#include static void sig_int(int); /* our signal-catching function */int main(int argc, char *argv[]){ printf("uid = %d, gid = %d\... 阅读全文
posted @ 2015-04-24 12:35 rldts 阅读(1773) 评论(0) 推荐(0) 编辑
摘要:刚才看到APUE(高级UNIX环境编程)里面的apue.h中有一行typedef void Sigfunc(int);没搞懂什么意思其实就是定义一个函数指针类型,等价于typedef void (*Sigfunc)(int)参考资料:http://blog.csdn.net/dingyuanpu/a... 阅读全文
posted @ 2015-04-19 13:20 rldts 阅读(990) 评论(0) 推荐(0) 编辑
摘要:参考资料: http://jingyan.baidu.com/article/2fb0ba40541a5900f2ec5f07.html http://zycao.com/virtualbox-ubuntu-vboxsguestadditions.html/comment-page-1 http:/ 阅读全文
posted @ 2015-04-19 12:53 rldts 阅读(917) 评论(0) 推荐(0) 编辑
摘要:参考资料:http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/ 1.去Sublime Text官网下载32-bit linux的压缩包 // 64-bit的我反正用不了不知到为什么(报错:bas 阅读全文
posted @ 2015-04-18 00:24 rldts 阅读(483) 评论(0) 推荐(0) 编辑
摘要:2017-11-12更新 安装搜狗拼音: http://blog.csdn.net/iamplane/article/details/70447517 因为IBus在14.04中有些问题(见此随笔:http://www.cnblogs.com/qrlozte/p/5709546.html),所以我改 阅读全文
posted @ 2015-04-17 23:58 rldts 阅读(565) 评论(0) 推荐(0) 编辑
摘要:1. 打开VBOX(Oracle VM VirtualBox),启动Ubuntu 2. 点击"设备>安装增强功能" 3. 进入Ubuntu打开文件管理器,如下图 4. 输入root用户的密码,等待安装完毕后(出现什么Press Return to close this window),按ENTER完 阅读全文
posted @ 2015-04-17 23:30 rldts 阅读(1582) 评论(0) 推荐(0) 编辑
摘要:输入ulimit -a 如果core file size为0,那就说明没有打开core dump,尽管你的程序crash的时候会显示core dumped,但实际上不会生成core file 输入ulimit -c 1024即可,其中1024是生成的core file的最大大小。这个值可以根据实际情 阅读全文
posted @ 2015-04-17 15:26 rldts 阅读(1030) 评论(0) 推荐(0) 编辑
摘要:多文件程序的调试,例子:文件结构:/demo Makefile /src demo.cpp util.cpp /include util.h截图:-----------------------------------------------------------------... 阅读全文
posted @ 2015-04-16 13:46 rldts 阅读(460) 评论(0) 推荐(0) 编辑