# /etc/fstab: static file system information. # # 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. # # - noatime turns off atimes for increased performance (atimes normally aren't needed; # It's safe to drop the noatime options if you want and to witch between notail / tail freely. # - notail increases performance of ReiserFS (at the expense of storage efficiency). # # ### NOTE: The next line is critical for boot! proc /proc proc defaults 0 0 ### glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for POSIX shared memory (shm_open, shm_unlink). ### (tmpfs is a dynamically expandable/shrinkable ramdisk, and will use almost no memory if not populated with files) shm /dev/shm tmpfs nodev,nosuid,noexec 0 0 # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts. ### Harddisk: Partitions in disk-order: ### Linux /dev/sda1 /boot reiserfs noatime,notail 0 0 /dev/sda2 none swap sw 0 2 ### /dev/sda3 = extended partition containin /dev/hda5-7 /dev/sda5 / reiserfs noatime,notail 0 1 /dev/sda6 /home reiserfs noatime,notail 0 0 ### Windows partition = located at end of disk ### (preinstalled, was moved there before linux was installed) /dev/sda4 /mnt/win ntfs noauto,noatime 0 0 /dev/sda7 /mnt/media ntfs noauto,noatime,user 0 0 ### Other systems /dev/hda /mnt/cdrom iso9660 noauto,user,ro 0 0 # USB Stick: # -noatime prevents updating timestamp i.e. wear of your NAND memory! # -sync synchronizes so you can (?) rip it out of the usb port at anytime => slow however! # -flush ??? # Phone Sony Ericsson W880i: #/dev/sdb /mnt/usb auto noauto,noatime,user,exec,flush 0 0 /dev/sdb1 /mnt/usb auto noauto,noatime,user,exec,flush 0 0 # PCMCIA Card # /dev/sdb /mnt/pcmcia vfat noauto,user,noatime,exec,sync 0 0