unix&linux
Wooce Yang 杨
这个作者很懒,什么都没留下…
展开
-
makefile里面的@XX@ 的意义
Q: 你知道makefile里面@XX@和$XX的变量的区别么? # Top level hierarchyprefix = @prefix@# Pathname of directory to install the binaryBINDEST = @prefix@/bin# Pathname of directory to install the man pageM...原创 2008-12-23 13:48:23 · 325 阅读 · 0 评论 -
samba client运行出现 libreadline.so.6: undefined symbol: PC的解决办法
Q:yum install samba-client然后运行smbclient, 出现错误:smbclient: symbol lookup error: /usr/local/lib/libreadline.so.6: undefined symbol: PCA by Wooce:cd /usr/local/libmkdir tempmv libreadline* t...2012-11-06 17:36:34 · 614 阅读 · 0 评论 -
apache启动报No address associated with hostname: mod_unique_id: unable to find IPv4
apache不能启动,查error_log, 有以下错误信息: [Fri Jul 08 10:07:33 2011] [alert] (EAI 5)No address associated with hostname: mod_unique_id: unable to find IPv4 address of "LinuxServer3"解决方法: 注释掉LoadMod...原创 2011-07-08 10:45:12 · 268 阅读 · 0 评论 -
What Every Programmer Should Know About Memory
pdf下载地址: http://people.redhat.com/drepper/cpumemory.pdf 这个pdf系统了讲述了 cpu和内存,L1 L2 Cache等等的关系, 最关键的是它说了程序员如何利用这些特性去提高性能,对于写高性能的程序非常有帮助! ...原创 2009-07-20 15:36:45 · 120 阅读 · 0 评论 -
在php里从本地通过msmtp发送邮件
参看http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/ 的步骤: Step by step instructions: First of a...2011-06-21 13:48:05 · 934 阅读 · 0 评论 -
Progress商业数据库的访问接口的C++包装
iprogressdb.h:[code="c++"]/* Written by Wooce Date: 2002-04 */#ifndef _IPROGRESSDB_H#define _IPROGRESSDB_H#include "idbbase.h"#include "idbbasetype.h"...原创 2009-05-04 18:14:27 · 106 阅读 · 0 评论 -
如何写根目录下的总的Makefile
Q:: 我在各子目录下编了makefile,都可以执行: 想在根目录下编一个总的makefile,但是总不成功: 内容如下:: cd p1 Makefile: cd p2 Makefile: cd p3 Makefile: cd p4 Makefile: cd p5 Makefile: 哪儿有错?A by Wooce: 可以这么写:DIRS =...原创 2009-01-13 09:45:18 · 228 阅读 · 0 评论 -
在64位linux系统下载安装apache的问题
Q: 在 64位linux 系统下载装 apache , 在 make 的时候出现如下错误 /usr/lib/libexpat.so: could not read symbols: File in wrong format A by wooce: 在64位的系统上编译时需要链接64位的库文件,而/usr/lib/libexpat.so是32位的ELF格式,所以格式不对。在configu...原创 2008-12-23 13:58:19 · 123 阅读 · 0 评论 -
清除Suckit rootkit
一台Redhat 7.3 Server上在目录下ls找不到当前目录下的*.sh文件, 但ls单个文件例如ls httpd.sh则可以知道httpd.sh还是存在的。用chkrootkit检查是中了Suckit rootkit , 搜索sk, 找到在/usr/local/games/sk/ 下面。 cd /usr/local/games/sk/./sk u...原创 2008-12-23 13:53:04 · 292 阅读 · 0 评论 -
unix/linux系统查看进程内存的一个易混淆的问题
2005-11-16:在top命令查看的时候, 如果结果是: 20452 mysql 20 0 1820 1820 1420 S 0.0 0.7 0:00 mysqld20454 mysql 15 0 1820 1820 1420 S 0.0 0.7 0:00 mysqld20455 mysql 20 0 1820 1...2013-04-18 16:57:30 · 117 阅读 · 0 评论