Quote |
Sidenote: Wait, is that's all that is required to make a ram disk in linux? I needed a way of storing a continuous written to file without writing it to a harddrive/flash. |
Quote (curaga @ June 15 2008,23:16) |
I just remembered tmpfs cannot be exported by NFS. Not too sure about unionfs either. So, create a 4MB ramdisk with ext2, try to export that, it should work. (dd if=/dev/zero of=/dev/ram2 bs=1M count=4; mke2fs -m0 /dev/ram2) |