Scratch partition...
Many of your questions may have already been answered in earlier discussions or in the FAQ. The search results page will indicate current discussions as well as past list serves, articles, and papers.
Mark Hahn hahn at physics.mcmaster.caMon Dec 10 12:17:23 PST 2001
- Previous message: Scratch partition...
- Next message: Scratch partition...
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> mount -t tmpfs /dev/shm /tmp > > And in theory, the numbers I've seen tend to show that this is a bit > faster than having /tmp in the vfs cache path. Though I'm not an > expert on the topic. generally, filesystems try to be synchronous with metadata, that is, directory entries, inodes, etc. so you'd be avoiding that traffic by using tmpfs. file *contents* tend to be lazily written out by filesystems anyway, so there's probably no savings there. (depends on timing) > However, I have noticed that on our compile box > (since gcc tends to toss it's temp .o files in /tmp) it's a bit lighter > on the drive. gcc -pipe avoids that traffic...
- Previous message: Scratch partition...
- Next message: Scratch partition...
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Beowulf mailing list
