diff options
Diffstat (limited to 'os/etc/fstab')
| -rw-r--r-- | os/etc/fstab | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/os/etc/fstab b/os/etc/fstab new file mode 100644 index 0000000..0b4b9d0 --- /dev/null +++ b/os/etc/fstab @@ -0,0 +1,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 |