Magellan Linux

Diff of /trunk/magellan-initscripts/etc/fstab

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 130 by niro, Fri Jul 1 18:19:04 2005 UTC revision 131 by niro, Sat Jul 2 19:55:20 2005 UTC
# Line 1  Line 1 
1  # noatime increases performace - turns off atime, which is normally not needed  # /etc/fstab - static file system information
2  # if your boot-device is reiserfs, add notail to options  # $Header: /home/cvsd/magellan-cvs/magellan-src/magellan-initscripts/etc/fstab,v 1.3 2005-07-02 19:55:20 niro Exp $
3    
4  # filesystem mount-point fs-type options dump/fsck-order  # 'noatime' turns off atimes for increased performance (atimes normally aren't
5  /dev/BOOT /boot ext3 noauto,noatime 1 1  # needed; 'notail' increases performance of ReiserFS (at the expense of storage
6  /dev/ROOT / ext3 defaults 0 0  # efficiency).  It's safe to drop the noatime options if you want and to
7  /dev/SWAP swap swap pri=1 0 0  # switch between notail / tail freely.
8    #
9    # When using a journalling file system, the 1 1 (dump/fsck-order) at the end
10    # of the line should be replaced with 0 0 because such a partition does not
11    # need to be dumped or checked.
12    #
13    # If your boot device is formated with reiserfs, add 'notail' to options.
14    #
15    # See the manpage fstab(5) for more information.
16    
17  /dev/cdrom /mnt/cdrom iso9660 noauto,ro,user 0 0  # filesystem mount-point fs-type options dump/fsck-order
18  /dev/fd0 /mnt/floppy auto noauto,rw,user 0 0  /dev/BOOT /boot ext3 noauto,noatime 1 1
19    /dev/ROOT / ext3 defaults 0 0
20    /dev/SWAP swap swap pri=1 0 0
21    
22  none /proc proc defaults 0 0  /dev/cdrom /mnt/cdrom iso9660 noauto,ro,user 0 0
23  none /dev/shm tmpfs defaults 0 0  /dev/fd0 /mnt/floppy auto noauto,rw,user 0 0
24    
25  # if you want to connect usb devices install sys-apps/hotplug and  none /proc proc defaults 0 0
26    none /dev/shm tmpfs defaults 0 0
27    
28    # If you want to connect usb devices install sys-apps/hotplug and
29  # enable this line:  # enable this line:
 #none /proc/bus/usb usbfs defaults 0 0  
30    #none /proc/bus/usb usbfs defaults 0 0

Legend:
Removed from v.130  
changed lines
  Added in v.131