Advertisement
Guest User

df & fstab

a guest
Jul 3rd, 2013
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. # df
  2. Filesystem 1K-blocks Used Available Use% Mounted on
  3. rootfs 36699036 2993404 33705632 9% /
  4. /dev/sda6 36699036 2993404 33705632 9% /
  5. devtmpfs 1973596 0 1973596 0% /dev
  6. tmpfs 1975628 492 1975136 1% /run
  7. shm 1975628 0 1975628 0% /dev/shm
  8. cgroup_root 10240 0 10240 0% /sys/fs/cgroup
  9. /dev/sda7 122007216 32840 121974376 1% /home
  10. /dev/sdb1 7545088 201924 7343164 3% /mnt
  11.  
  12. # cat /etc/fstab
  13. # /etc/fstab: static file system information.
  14. #
  15. # noatime turns off atimes for increased performance (atimes normally aren't
  16. # needed); notail increases performance of ReiserFS (at the expense of storage
  17. # efficiency). It's safe to drop the noatime options if you want and to
  18. # switch between notail / tail freely.
  19. #
  20. # The root filesystem should have a pass number of either 0 or 1.
  21. # All other filesystems should have a pass number of 0 or greater than 1.
  22. #
  23. # See the manpage fstab(5) for more information.
  24. #
  25.  
  26. # <fs> <mountpoint> <type> <opts> <dump/pass>
  27.  
  28. # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
  29. /dev/sda5 /boot reiserfs noauto,noatime,notail 1 2
  30. /dev/sda6 / reiserfs noatime,notail 0 1
  31. /dev/sda7 /home reiserfs noatime,notail 0 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement