• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Interesting uses for /dev/shm

Khyron320

Senior member
So the other thread about old ssds and writing to the same spot got me thinking. What are some interesting uses of /dev/shm?

Some quick googling sugested running vms from it.
I thought about encoding here.
Using it to speed up a gzip ->
Gzip file.bigfile /dev/shm/file.bigfile.gz && mv /dev/shm/file.bigfile.gz .
Sharing a steam backup at a lan party from it via samba so the hdd doesn't get thrashed and bottle down to 2mb/sec per player.


Any other ideas for the shared memory pool?
 
/dev/shm is just a tmpfs mount these days, it would probably be better to use a separate mount for other odds and ends in case you do have something really wants to use shm.
 
Back
Top