To be a better coder
发布时间:2018-10-29 15:19:13
https://ieevee.com/tech/2016/10/09/kickstart-part.html背景在前面如何为linux集群批量装机?这篇文章里介绍了我们的服务器装机流程,其中ks文件中磁盘分区的配置是这样的:# Allow anaconda to partition the system as needed clearpart --all --initlabel autopart ignoredisk --only-use=sda 使用a.........【阅读全文】
发布时间:2018-10-29 15:18:18
https://www.cnblogs.com/set-config/p/9040407.html必须的分区 boot分区: 作用:引导分区,包含了系统启动的必要内核文件,即使根分区顺坏也.........【阅读全文】
发布时间:2018-10-24 13:47:43
if (access("/etc/yunhai.ini",F_OK) == 0) { p = strchr(ip, '/'); if(p != NULL) { &nbs.........【阅读全文】
发布时间: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.........【阅读全文】