Last active
July 4, 2025 20:47
-
-
Save dardo82/cf03e3cff9801be2280f2330c7332adc to your computer and use it in GitHub Desktop.
FSTAB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/fstab: static file system information. | |
# Use 'blkid' to print the universally unique identifier for a device; this may | |
# be used with UUID= as a more robust way to name devices that works even if | |
# disks are added and removed. See fstab(5). | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
UUID=3463baed-f571-41bc-a11b-d0871ea82a20 / btrfs defaults,noatime,compress=zstd,subvol=/@ 0 0 | |
UUID=3463baed-f571-41bc-a11b-d0871ea82a20 /home btrfs defaults,noatime,compress=zstd,subvol=/@home 0 0 | |
UUID=3463baed-f571-41bc-a11b-d0871ea82a20 /root btrfs defaults,noatime,compress=zstd,subvol=/@root 0 0 | |
UUID=3463baed-f571-41bc-a11b-d0871ea82a20 /srv btrfs defaults,noatime,compress=zstd,subvol=/@srv 0 0 | |
UUID=3463baed-f571-41bc-a11b-d0871ea82a20 /var/cache btrfs defaults,noatime,compress=zstd,subvol=/@cache 0 0 | |
UUID=3463baed-f571-41bc-a11b-d0871ea82a20 /var/log btrfs defaults,noatime,compress=zstd,subvol=/@log 0 0 | |
UUID=3463baed-f571-41bc-a11b-d0871ea82a20 /var/tmp btrfs defaults,noatime,compress=zstd,subvol=/@tmp 0 0 | |
UUID=900f871d-0df5-4acd-9ee0-c435851b34e7 /mnt/backup btrfs defaults,noatime,compress=zstd,noauto,user 0 0 | |
UUID=A61E-B28B /boot/efi vfat defaults,noatime 0 2 | |
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment