I've read in several places that it is recommended to bind-mount /var/tmp to /tmp. This can be done by adding the following line to /etc/fstab:
/tmp /var/tmp none rw,noexec,nosuid,nodev,bind 0 0
How can this be beneficial? In other words why should we bind-mount /var/tmp to /tmp ?
