CentOS7安装程序何时创建单独的/home文件系统?

CentOS7安装程序何时创建单独的/home文件系统?

我注意到,当我在具有 8G 驱动器的虚拟机中安装 CentOS 7(最小安装,接受默认设置)时,它/home驻留在根文件系统上。当我分配 80G 驱动器时,安装会创建单独的/home文件/系统。我的问题是,安装程序/home默认创建单独文件系统的最小驱动器大小是多少?

答案1

这确实是一个有趣的问题。

rh安装程序代码在这里,会给你更深刻的见解。

看起来 / 的分割点是 50GiB,而 home 的分割点至少是 500 MiB,所以既然你80G为它分配了,它可能会得到 50G 的空间/,其余的则分配给/home

答案2

鉴于CentOS是RHEL的一个分支,并且RHEL 7文档说50GB,CentOS应该是相同的。

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Installation_Guide/sect-disk-partitioning-setup-x86.html#sect-recommended-partitioning-scheme-x86

摘录:

/home partition - recommended size at least 1 GB

To store user data separately from system data, create a dedicated 
partition within a volume group for the /home directory. This partition 
should be sized based on the amount of data that will be stored locally, 
number of users, and so on. This will enable you to upgrade or reinstall 
Red Hat Enterprise Linux without erasing user data files. 

If your storage space is bigger than 50 GB, a /home partition will be created 
along with other partitions if you select automatic partitioning.

答案3

根据我使用 Centos 7 和 6 的经验,默认情况下根分区上有 /home。该文档说明了您应该创建一个单独的分区并给 /home 一个分钟。 100MB 空间。但即使您使用 LVM,安装程序也不会创建单独的分区。我的系统最多使用 60GB,但 Centos 7 / 6 从未将 /home 分离到另一个分区。我总是使用默认值 /home on /

相关内容