I'm using the suspend mode for my automated backups, but in order to decrease disk writes I would like
to have rsync write it's temporary files to a ramdisk (tmpfs).
Something like this:
in /etc/fstab
tmpfs /mnt/ramdisk tmpfs nodev,nosuid,noexec,nodiratime,size=32G 0 0
in...