To be a better coder
发布时间:2018-10-29 15:27:26
https://my.oschina.net/kisops/blog/151084当服务器有多块硬盘时,如果有多个分区。默认不指定的情况下,KickStart会将分区分别放到各个盘上。比如第1块盘是根分区,第2块盘是交换分区,第3块盘放数据分区。这样的分法会让你很崩溃! 红帽缺陷跟踪里有记录: https://bugzilla.redhat.com/show_bug.cgi?i.........【阅读全文】
发布时间: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.........【阅读全文】