source: trunk/docs/filesystem-notes.rst

Last change on this file was 1b0b49a, checked in by Zooko Wilcox-O'Hearn <zooko@…>, at 2013-11-12T16:37:02Z

update link to Maildir tips (thanks MK_FG)

  • Property mode set to 100644
File size: 1.1 KB
Line 
1.. -*- coding: utf-8-with-signature -*-
2
3=========================
4Filesystem-specific notes
5=========================
6
71. ext3_
8
9Tahoe storage servers use a large number of subdirectories to store their
10shares on local disk. This format is simple and robust, but depends upon the
11local filesystem to provide fast access to those directories.
12
13ext3
14====
15
16For moderate- or large-sized storage servers, you'll want to make sure the
17"directory index" feature is enabled on your ext3 directories, otherwise
18share lookup may be very slow. Recent versions of ext3 enable this
19automatically, but older filesystems may not have it enabled::
20
21  $ sudo tune2fs -l /dev/sda1 |grep feature
22  Filesystem features:      has_journal ext_attr resize_inode dir_index filetype needs_recovery sparse_super large_file
23
24If "dir_index" is present in the "features:" line, then you're all set. If
25not, you'll need to use tune2fs and e2fsck to enable and build the index. See
26`http://wiki2.dovecot.org/MailboxFormat/Maildir`_ for some hints.
27
28.. _`http://wiki2.dovecot.org/MailboxFormat/Maildir`: http://wiki2.dovecot.org/MailboxFormat/Maildir
Note: See TracBrowser for help on using the repository browser.