Last active
May 8, 2020 08:47
-
-
Save authmane512/e4270888a10e37bbef17c7a0b8520fad to your computer and use it in GitHub Desktop.
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> | |
# root | |
UUID=<UUID> / ext4 errors=remount-ro 0 1 | |
# swap | |
/dev/mapper/MyVG-swapLV none swap sw 0 0 | |
# cd | |
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0 | |
# personnal FAT partition | |
UUID=<UUID> /media/fat-part auto user,auto,umask=000 0 0 | |
# home | |
/dev/mapper/MyVG-homeLV /home ext4 auto 0 2 | |
# var | |
/dev/mapper/MyVG-varLV /var ext4 auto 0 2 | |
# tmp | |
/dev/mapper/MyVG-tmpLV /tmp ext4 auto 0 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment