Linux运维
HymanLiuTS
年过而立,又酸又臭,忙时敲代码,闲时读书写文章。
展开
-
查看core dumped的详细错误原因
什么是Core Dump?今天调试一个程序, 用到了core dump, 于是写出来, 记于此.什么是Core Dump?Core的意思是内存, Dump的意思是扔出来, 堆出来.开发和使用Unix程序时, 有时程序莫名其妙的down了, 却没有任何的提示(有时候会提示core dumped). 这时候可以查看一下有没有形如core.进程号的文件生成, 这个文件便是操作系统把程转载 2016-11-08 14:56:36 · 38200 阅读 · 1 评论 -
error: call to '__open_missing_mode' declared with attribute error:
今天安装gettext-0.17时,make命令出现了下面的错误,后面找了半天的资料才解决,记录一下: In file included from /usr/include/fcntl.h:289:0, from ../gnulib-lib/fcntl.h:27, from write-catalog.c:25: In fu原创 2016-07-21 22:24:52 · 11501 阅读 · 4 评论 -
Python中lxml模块的安装(Ubuntu下)
1、安装libxml2$ sudo apt-get install libxml2 libxml2-dev libxml2默认的安装目录是/usr/include/libxml22、安装 libxslt$ sudo apt-get install libxlst libxslt-dev 这一步是网上很多资料给出的,但原创 2017-12-14 19:10:07 · 3239 阅读 · 1 评论 -
【linux命令】常用的Linux命令
find -name '文件或目录名称' | xargs rm -rf原创 2016-12-03 14:05:04 · 824 阅读 · 0 评论 -
【Python环境】Linux修改系统以及pip更新源
原文链接:http://blog.csdn.net/henulwj/article/details/47061527?locationNum=2&fps=1转载 2016-10-19 17:43:29 · 3136 阅读 · 0 评论 -
linux中设置环境变量和gcc/g++的include路径
1、设置linux默认的环境变量 1.1 查看当前默认的环境变量: echo PATH 结果: root@hyman-laptop:/home/hyman/src# echoPATH 结果: root@hyman-laptop:/home/hyman/src# echo PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/原创 2016-07-23 14:38:39 · 35036 阅读 · 0 评论