I am under Debian Squeeze 6.0.

What is the best file system for the /var/log partition, and why ?

link|improve this question

74% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Short answer: there is no best .

Long answer: it depends on what you are going to do with that partition, what programs are going to write their logs on that partition, and how important is the data on that partition.

If you don't care losing the data written on /var/log, then you could go with ext2. It's fast an reliable, as long as no one pulls the power chord or you get hit by a power cut or hard disc corruption.

If you care about your data there, then you should go with a journaling file system, I would say go with ext4. It's well tested, reliable and probably the most used FS up to day in the Linux world.

link|improve this answer
I wouldn't recommend default ext4 for log files you care about, although ext4 with delayed allocation turned off should do the job. If bad things happen the log files is often all you have to go on, so its worth going for something rock solid, you might as well use ext3. – Sirex Feb 10 '11 at 15:16
EXT4 is no way better tested that EXT3, or Reiser3, so it a false assumption. Both EXT3 and Reiser3 support for data=journal, which gives better protection against garbage in log files, if it's of any importance to you, of course. – poige Feb 13 '11 at 7:14
feedback

If performance is a concern for you, I would suggest using syslog-ng with a rather high sync(). The sync option tells syslog-ng how many messages it should hold in memory before flushing to disk, meaning less i/o but the potential to loose some messages in case of power failure.

link|improve this answer
feedback

i think it is better to use a FS that supports journaling such as ext3 or ext4 to avoid corrupted log in case of power failure

link|improve this answer
"to avoid corrupted log", journal isn't of a much help there unless you specify data=journal. Copy-on-Write is much better way to achieve data mess inside log files. – poige Feb 13 '11 at 7:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.