this post was submitted on 19 Oct 2025
56 points (98.3% liked)
retrocomputing
5625 readers
26 users here now
Discussions on vintage and retrocomputing
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
A lot of Linux distros do this by default. Alternatively you can use /dev/shm when you need a RAM disk, since it's guaranteed to always be a RAM disk (whereas /tmp may or may not be).
The actual purpose of /dev/shm is shared memory (storing stuff in memory that's shared across multiple processes) but I see it used as a generic RAM disk all the time.