To be a better coder
发布时间:2018-10-19 14:37:35
[root@localhost trunk]# cat zhu.c #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <string.h> int main(int argc[],char *argv[]) {malloc(1); printf("errno = %d\n",errno); fprintf(stderr,"stderr\n"); perror("perr.........【阅读全文】
发布时间:2018-10-19 14:14:01
https://blog.csdn.net/hadas_wang/article/details/43525387首先,要了解什么叫僵尸进程,什么叫孤儿进程,以及服务器进程运行所需要的一些条件。两次fork()就是为了解决这些相关的问题而出现的一种编程方法。 孤儿进程 孤儿进程是指父进程在子进程结束之前死亡(retu.........【阅读全文】
发布时间:2018-10-18 13:37:06
https://sourceforge.net/projects/vtysh/......【阅读全文】
发布时间:2018-10-15 11:00:23
最近管理的一批机器,有个需求是要统一修改一个帐号的用户名密码,比如将qa帐号的密码改为1234,后来还为了脚本化,很方便的执行,还使用了非交互式地修改用户的密码。简单记录一下吧。交互式配置本地用户的密码:passwd 命令[root@host_221-81 ~]# passwd qa Changing password for user qa. New password: .........【阅读全文】