Last active
August 23, 2020 04:50
-
-
Save Microtribute/0b3ffbfecff6037952346f2c6b920a95 to your computer and use it in GitHub Desktop.
Directory mounting through /etc/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> | |
# / was on /dev/nvme0n1p2 during installation | |
UUID=caccca41-8abb-4bb4-a65e-fba8142a55ce / ext4 errors=remount-ro 0 1 | |
# /boot/efi was on /dev/nvme0n1p1 during installation | |
UUID=9F5B-B6E5 /boot/efi vfat umask=0077 0 1 | |
/swapfile none swap sw 0 0 | |
UUID=f8041f06-c4e5-4f3c-a267-59b6a1d3e3bb /me auto nosuid,nodev,nofail,x-gvfs-show 0 0 | |
/me/.../var /var none bind 0 0 | |
/me/.../tmp /tmp none bind 0 0 | |
/me/.../root /root none bind 0 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/tmp /me/.../tmp none defaults,bind 0 0
/var /me/.../var none defaults,bind 0 0
/root /me/.../root none defaults,bind 0 0