"A RAM drive (also called a RAM disk) is a block of random-access memory (primary storage or volatile memory) that a computer's software is treating as if the memory were a disk drive (secondary storage). It is sometimes referred to as a virtual RAM drive or software RAM drive to distinguish it from a hardware RAM drive that uses separate hardware containing RAM, which is a type of battery-backed solid-state drive." (Source: Wikipedia)
If you boot FatDog without hard drives in RAM-only mode, it is easy to create a RAM disk in your working memory, for instance of 512 MB:
mkdir /tmp/ramdisk
sudo mount -t tmpfs -o size=512m myramdisk /tmp/ramdisk
mount | tail -n 1
In theory the RAM disk should get deleted from memory when you reboot the system.
Is there a way to make the RAM disk persistent for at least 1 boot cycle although you are operating FatDog in RAM-only mode?