Gentoo fstab问题并注释掉了


1

我正在按照本教程安装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

Answers:


1

/etc/fstab什么都不做,因为每一行都是评论(以...开头#)。

按照Gentoo手册的“ 文件系统信息”部分中的说明为您之前在安装中选择的分区布局创建适当的文件。

创建fstab文件

/etc/fstab文件使用类似于表的语法。每行由六个字段组成,由空格(空格,制表符或混合)分隔。每个领域都有自己的含义:

  1. 第一个字段显示要安装的块特殊设备或远程文件系统。块特殊设备节点可以使用多种设备标识符,包括设备文件,文件系统标签和UUID以及分区标签和UUID的路径。
  2. 第二个字段显示应安装分区的安装点。
  3. 第三个字段显示分区使用的文件系统。
  4. 第四个字段显示mount在挂载分区时使用的挂载选项。由于每个文件系统都有自己的挂载选项,因此建议用户阅读挂载手册页(man mount)以获取完整列表。多个挂载选项以逗号分隔。
  5. dump使用第五个字段来确定是否需要转储分区。这通常可以保留为0(零)。
  6. fsck使用第六个字段来确定在系统未正确关闭时应检查文件系统的顺序。根文件系统应该有1而其余的应该有2(如果不需要文件系统检查,则为0)。

重要

/etc/fstabGentoo提供的默认文件不是有效 fstab文件,而是更多模板。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.