linux
唐三角
如果我们在错误的方向上,将不会有人为我们收尸;如果我们在正确的方向上,我们将会被自己人埋葬。
展开
-
linux 大量生成core dump文件
近日发现个别服务器大量生成core文件,以前一直没有注意这个问题,经过排查发现,这些服务器设置了 ulimit -c unlimited经过查找 $HOME/.bash_profile$HOME/.bashrc /etc/profile删除了该命令,通过系统默认的:vi /etc/profile# No core files by defaultulimit原创 2013-01-06 13:39:27 · 1909 阅读 · 0 评论 -
gcc 编译升级备忘 4.1.2 to 4.7.1
这是我编译中 gcc 4.7.1 频繁遇到的问题:/bin/sh: line 3: cd: ./fixincludes: No such file or directorymake[1]: *** [install-fixincludes] Error 1make[1]: Leaving directory `/usr/local/gccinstall/gcc-build'make: *原创 2012-12-31 15:43:50 · 6931 阅读 · 0 评论 -
linux named pipe
http://www.linuxjournal.com/content/using-named-pipes-fifos-bashlinux shell 管道命令(pipe)使用及与shell重定向区别http://www.cnblogs.com/chengmo/archive/2010/10/21/1856577.htmlHow do you read from stdin in py原创 2012-04-12 10:21:08 · 836 阅读 · 0 评论 -
Centos 6.0 yum 网易搜狐中科大更新源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.DEFAULTvi /etc/yum.repos.d/CentOS-Base.repo# CentOS-Base.repo # # This file uses a new mirrorlist system developed by Lance转载 2011-11-01 14:16:40 · 1441 阅读 · 0 评论 -
UNIX和Linux系统下SUID、SGID的解析
由于用户在UNIX下经常会遇到SUID、SGID的概念,而且SUID和SGID涉及到系统安全,所以用户也比较关心这个问题。关于SUID、SGID的问题也经常有人提问,但回答的人一般答得不够详细,加上曾经回答过两个网友的问题,还查了一些资料,决定整理成本文,以供大家参考。限于本人的水平问题,文章中如果有不当之处,请广大网友指正。一、UNIX下关于文件权限的表示方法和解析 SUID 是 S转载 2011-10-28 12:50:27 · 628 阅读 · 0 评论 -
centos 源码编译安装gcc 4.7.0
官方参考:http://gcc.gnu.org/wiki/InstallingGCCGCC tends to have problems when configured in the same directory as the GCC source code, or in any subdirectory therein, as stated in theConfigu转载 2012-09-03 18:49:45 · 1445 阅读 · 0 评论 -
查看文件状态以及级联删除软连接
#include #include #include #include #include intmain(int argc, char *argv[]){ struct stat sb; if (argc != 2) { fprintf(stderr, "Usage: %s \n", argv[0]); exit(EXIT_FAILU转载 2012-04-09 14:40:23 · 715 阅读 · 0 评论 -
几种经典的网络服务器架构模型的分析与比较
前言事件驱动为广大的程序员所熟悉,其最为人津津乐道的是在图形化界面编程中的应用;事实上,在网络编程中事件驱动也被广泛使用,并大规模部署在高连接数高吞吐量的服务器程序中,如 http 服务器程序、ftp 服务器程序等。相比于传统的网络编程方式,事件驱动能够极大的降低资源占用,增大服务接待能力,并提高网络传输效率。关于本文提及的服务器模型,搜索网络可以查阅到很多的实现代码,所以,本文将不拘泥于转载 2014-09-03 22:43:15 · 524 阅读 · 0 评论