Can you explain why you chose /var/memdir and not /tmp/memdir as it is by its very nature temporary.

I'm guessing this is a design decision, not something that is going to be explained in the documentation.

/tmp is often already on a ramdisk-like virtual filesystem, e.g. tmpfs. If not, some boot script cleans up tmp. So /tmp/memdir is gone after a reboot. /var is on persistent storage, so /var/memdir will survive a reboot.

Also, any reason to set the number of blocks to zero?

This documentation doesn't cover the size=1M 0 0 parameter and I cannot find reference to it in the links. I asked because when I looked up what these parameters do I found advice that "It is generally unwise to mount with such options" in this article.

/etc/fstab is structured, six fields separated by whitespace. This implies that no field can contain whitespace. The fields are (in order):

  1. fs_spec (roughly the device to be mounted)
  2. fs_file (the mount point)
  3. fs_vfstype (filesystem type)
  4. fs_mntops (mount options for the filesystem)
  5. fs_freq ("This field is used by dump(8) to determine which filesystems need to be dumped. Defaults to zero (don't dump) if not present.")
  6. fs_passno (used to select the order for fsck at boot. / should have 1, others 2, 0 disables fsck at boot)

"size=1M" is part of the mount options in field 4, the two zeros after that are fields 5 and 6.

stevieb proposed to add this to fstab:

tmpfs /var/memdir tmpfs nodev,nosuid,size=1M 0 0

Split at whitespace and compare with the field descriptions.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

In reply to Re^5: Preventing multiple instances by afoken
in thread Preventing multiple instances by Bod

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.