我正在按照本教程安装 Gentoo:https://www.youtube.com/watch?v=9mD6aAG7DNA
我现在是 17:20,但他的 fstab 文件看起来与我的完全不同。有人知道我该如何修复它吗?我完全按照说明操作。
我的 fstab 文件:
# /etc/fstab: static file system information.
#
# noatime turns off atimes for increased performance (atimes normally aren't
# needed); notail increases performance of ReiserFS (at the expense of storage
# efficiency). It's safe to drop the noatime options if you want and to
# switch between notail / tail freely.
#
# The root filesystem should have a pass number of either 0 or 1.
# All other filesystems should have a pass number of 0 or greater than 1.
#
# See the manpage fstab(5) for more information.
#
# <fs> <mountpoint> <type> <opts> <dump/pass>
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
#
# NOTE: Even though we list ext4 as the type here, it will work with ext2/ext3
# filesystems. This just tells the kernel to use the ext4 driver.
#
# NOTE: You can use full paths to devices like /dev/sda3, but it is often
# more reliable to use filesystem labels or UUIDs. See your filesystem
# documentation for details on setting a label. To obtain the UUID, use
# the blkid(8) command.
#LABEL=boot /boot ext4 noauto,noatime 1 2
#UUID=58e72203-57d1-4497-81ad-97655bd56494 / ext4 noatime 0 1
#LABEL=swap none swap sw 0 0
答案1
您/etc/fstab
什么也不做,因为每一行都是一条注释(以 开头#
)。
按照文件系统信息Gentoo 手册的部分为您在安装过程中先前选择的分区布局创建适当的文件。
创建 fstab 文件
该
/etc/fstab
文件使用类似表格的语法。每行由六个字段组成,以空格(空格、制表符或混合)分隔。每个字段都有自己的含义:
- 第一个字段显示要挂载的块特殊设备或远程文件系统。块特殊设备节点有几种设备标识符可用,包括设备文件路径、文件系统标签和 UUID 以及分区标签和 UUID。
- 第二个字段显示应挂载分区的挂载点。
- 第三个字段显示分区使用的文件系统。
- 第四个字段显示 mount 想要挂载分区时使用的挂载选项。由于每个文件系统都有自己的挂载选项,因此建议用户阅读 mount 手册页 (man mount) 以获取完整列表。多个挂载选项以逗号分隔。
- 第五个字段由 dump 用于确定分区是否需要转储。通常可以将其保留为 0(零)。
- 第六个字段由 fsck 使用,用于确定在系统未正确关闭时应检查文件系统的顺序。根文件系统应为 1,其余文件系统应为 2(如果不需要检查文件系统,则为 0)。
重要的
Gentoo 提供的默认
/etc/fstab
文件不是有效fstab
文件,而更像是一个模板。