In article <[EMAIL PROTECTED]>, Adeodato Simó <[EMAIL PROTECTED]> wrote: >* Steve Langasek [Thu, 01 Sep 2005 23:03:21 -0700]: > >> Hrm. If this information is all just being copied to the real >> filesystem at the end of the boot process anyway, why does it need to >> write it out to disk instead of just storing it in memory, anyway? > > He claimed it's not possible: > > http://lists.debian.org/debian-devel/2005/08/msg01673.html
Actually, it's pretty simple to do this, by using a lazy unmount. No need to add an extra /run directory. #! /bin/sh cd / mount -n -t tmpfs tmpfs /tmp cd /tmp umount -n -fl /tmp # From this point on, the current working directory of this script # and all its children is a tmpfs mount that isn't seen by the # rest of the system. As soon as this script exits the tmpfs # mount is cleaned up. ... bla, blah ... Mike. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]