Difference between revisions of "Install/Creating Filesystems/zh-cn"

From Funtoo
Jump to navigation Jump to search
(Created page with "你的文件系统(包括交换分区)现在已经初始化了,这样就可以挂载他们(附加到现有的目录层次结构中)并且用来存储文件。我们...")
Line 53: Line 53:
{{console|body=###i## mkfs.xfs /dev/sda3}}
{{console|body=###i## mkfs.xfs /dev/sda3}}


Your filesystems (and swap) have all now been initialized, so that that can be mounted (attached to your existing directory heirarchy) and used to store files. We are ready to begin installing Funtoo Linux on these brand-new filesystems.
你的文件系统(包括交换分区)现在已经初始化了,这样就可以挂载他们(附加到现有的目录层次结构中)并且用来存储文件。我们已经准备好在崭新的分区上安装 Funtoo Linux。


==== Additional Filesystems ====
==== Additional Filesystems ====

Revision as of 21:17, April 7, 2021

Other languages:
English • ‎español • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎ • ‎中文(台灣)‎

安装指南:创建文件系统

Install Guide, Chapter 5 < Prev Next >
   Note

本节同时覆盖 BIOS 和 UEFI 安装两种方法。不要跳过!

Before your newly-created partitions can be used, the block devices that were created in the previous step need to be initialized with filesystem metadata. This process is known as creating a filesystem on the block devices. After filesystems are created on the block devices, they can be mounted and used to store files.

Let's keep this simple. Are you using legacy MBR partitions? If so, let's create an ext2 filesystem on /dev/sda1:

root # mkfs.ext2 /dev/sda1

如果在 UEFI 中使用 GPT 分区,或者为 Raspberry Pi 安装,需要在第一个分区上创建一个 vfat 文件系统。在 Raspberry Pi 的情况下,这将是 mmcblk0p1

root # mkfs.vfat -F 32 /dev/sda1

现在,创建一个交换分区。Funtoo Linux 会将此分区用于基于磁盘的虚拟内存空间。

由于交换分区不是用来存储文件的,因此无需对于交换分区创建文件系统。但是需要使用 mkswap 将其初始化。由于之后的安装过程中需要交换分区,所以要运行 swapon 命令使交换分区立即在 Live CD 环境生效:

root # mkswap /dev/sda2
root # swapon /dev/sda2

根目录文件系统

Now, we need to create a root filesystem. This is where Funtoo Linux will live. We generally recommend ext4 or XFS root filesystems. Keep in mind that some filesystems will require additional filesystem tools to be emerged prior to rebooting. Please consult the following table for more information:

文件系统推荐作为根文件系统?安装所需的额外工具
ext4
XFSsys-fs/xfsprogs
reiserfs是——可能需要启用内核支持sys-fs/reiserfsprogs
zfs - 仅限高级用户sys-fs/zfs
btrfs - 仅限高级用户sys-fs/btrfs-progs
   Important

我们不建议用户将 ZFS 或 BTRFS 设置为他们的根文件系统。这会复杂得多,而且通常没有 必要。相反,选择 XFS 或 ext4。我们确实支持 ZFS 或 BTRFS 作为非 root 文件系统,这在配置上要简单得多。在完成设置 Funtoo Linux 系统后,看 ZFSBTRFS 来配置 ZFS 或 BTRFS,用于 额外的二级存储。

如果不确定,就选择 ext4。下面是如何创建一个根目录 ext4 文件系统:

root # mkfs.ext4 /dev/sda3

……这里是如何创建一个 XFS 根目录文件系统,如果你喜欢使用 XFS 而不是 ext4:

root # mkfs.xfs /dev/sda3

你的文件系统(包括交换分区)现在已经初始化了,这样就可以挂载他们(附加到现有的目录层次结构中)并且用来存储文件。我们已经准备好在崭新的分区上安装 Funtoo Linux。

Additional Filesystems

   Note

这对树莓派系统非常有用!

You may want to create additional filesystems for various parts of your Funtoo filesystem tree. It is not uncommon to place /home or /var on separate filesystems.

For Raspberry Pi, you may not have a lot of spare room on the card depending on the capacity of your microSD card, and it may make a lot of sense to put the entire /var filesystem on an external hard drive or solid state disk. This will not only ensure you don't run out of disk space, but can also improve performance since writes to the microSD card typically aren't that fast.

To do this, you will want to use fdisk or gdisk to create a partition on your external drive, and then use the mkfs.xfs or mkfs.ext4 commands to create a filesystem on the new partition. We will mount this new filesystem in the next step prior to extracting the stage3 tarball.

Install Guide, Chapter 5 < Prev Next >