1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# /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.
PARTLABEL=efi /boot/efi vfat defaults,noauto 0 2
UUID=065b7787-8e79-4555-b87a-eeae2b2e8191 / f2fs defaults,noatime,compress_algorithm=zstd:6,compress_chksum,atgc,gc_merge,lazytime 0 1
UUID=bdea2258-1a48-41a5-8d92-91a8bb7db246 /var f2fs defaults,noatime,compress_algorithm=zstd:6,compress_chksum,atgc,gc_merge,lazytime 0 1
UUID=0cb50f2f-9ede-4b4b-bcf7-f8c017367bde /home f2fs defaults,noatime,compress_algorithm=zstd:6,compress_chksum,atgc,gc_merge,lazytime 0 1
tmpfs /tmp tmpfs defaults,size=4G,exec 0 0
#tmpfs /var/tmp tmpfs defaults,size=8G 0 0
/var/swapfile none swap sw 0 0
PARTUUID=505d3e00-01 /media/fwdrive exfat auto,nofail,noatime 0 2
/media/fwdrive/music /home/robert/music/external none auto,bind,ro 0 0
|