Sysop:FileSystemsLinux

Aus immerda
Zur Navigation springen Zur Suche springen
  • SSHFS Remote filesystems remotly over SSH
  • NFS Network File System
  • sysop:GFS Global File System

BTRFS

Add to /etc/fstab

autodefrag,compress=lzo,space_cache #evtl. mit ssd für ssds

Defrag for each mountpoint:

find / -xdev -type f -print -exec btrfs filesystem defrag '{}' \;
reboot

Defrag again for each mountpoint:

btrfs filesystem defragment -v -clzo /
reboot

XFS

From http://spamaps.org/raidtests.php :

EXT3 is extremely robust and mature. [...] but slow ....

XFS takes the performance numbers [...] XFS *really* gets trounced on the delete speed. [...] it makes one think twice about using XFS for something like Maildir storage.

Additional interesting Links:

maildirsetup

mkfs.xfs -f -l size=64m -d agcount=16
mount -t xfs -o noatime,nodiratime,logbufs=8

Random bits:

Links