# # /etc/fstab: static file system information # # tmpfs /tmp tmpfs nodev,nosuid,noexec,noatime 0 0 # /dev/sda?: biosgrub # /dev/sda1: System EFI (or whatever gdisk assigned automatically) # should this be mounted? if so, how? UUID= /boot/efi vfat defaults 0 2 # /dev/sda2: boot # should this be errors=remount-ro? and/or 1? #UUID=? /boot ext4 defaults,noatime 0 2 # /dev/sda2: rescue1 # change this to ro later after installation UUID= /mnt/rescue1 ext2 defaults,ro,nodev,noexec,nosuid,noatime 0 2 # /dev/sda3: rescue2 UUID= /mnt/rescue2 ext2 defaults,ro,nodev,noexec,nosuid,noatime 0 2 #/dev/sda4: swap UUID= none swap sw 0 0 #/dev/sda5: arch UUID= / ext4 errors=remount-ro,noatime 0 1 #/dev/sda6: myvar UUID= /var ext4 defaults,noatime 0 2 #/dev/sda7: mylocal UUID= /usr/local ext4 defaults,noatime 0 2 #/dev/sda8: other UUID= /mnt/other ext4 defaults,nodev,noexec,nosuid,noatime 0 2 #/dev/sda9: othervar UUID= /mnt/other/var ext4 defaults,nodev,noexec,nosuid,noatime 0 2 #/dev/sda10: myhome UUID= /home ext4 defaults,noatime 0 2 #/dev/sda11: myfiles UUID= /mnt/myfiles ext4 defaults,noatime 0 2 # Iomega USB HDD UUID= /mnt/MyExternal/ ext4 defaults,nodev,noexec,nosuid,noatime,nofail 0 2 UUID= /mnt/MyExternal/boot/efi vfat defaults,nofail 0 2 UUID= /mnt/MyExternal/var ext4 defaults,nodev,noexec,nosuid,noatime,nofail 0 2 UUID= /mnt/MyExternal/usr/local ext4 defaults,nodev,noexec,nosuid,noatime,nofail 0 2 UUID= /mnt/MyExternal/home ext4 defaults,nodev,noexec,nosuid,noatime,nofail 0 2 UUID= /mnt/MyExternal/mnt/myfiles ext4 defaults,nodev,noexec,nosuid,noatime,nofail 0 2 UUID= /mnt/MyExternal/mnt/rescue1 ext2 defaults,nodev,noexec,nosuid,noatime,nofail 0 2 # note that debian's file does not include /boot (even though it is a # separate partition but it does include a line for /proc # in debian, /tmp seems not to be distinct but tmpfs is used for /lib/init/rw # and /run and /run/shm even though these are not listed in fstab # note that use of no atime can boost performance but may cause issues for # some few apps like mutt - change to relatime if you have problems