Linux - Best file system for /var/log partition?

7,284

Solution 1

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 the data on that partition is.

If you don't care about losing the data written on /var/log, then you could go with ext2. It's fast and reliable, as long as no one pulls the power cord or you get hit by a power cut or hard disk 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 today in the Linux world.

Solution 2

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 lose some messages in case of power failure.

Share:
7,284

Related videos on Youtube

user3114802
Author by

user3114802

DevOps Engineer at Intact Financial Corporation

Updated on September 17, 2022

Comments

  • user3114802
    user3114802 over 1 year

    I am under Debian Squeeze 6.0.

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

  • Sirex
    Sirex over 13 years
    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.
  • poige
    poige over 13 years
    "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
    poige over 13 years
    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.