How I secure my /tmp and /var/tmp directories on DigitalOcean… Hope this helps you… :)
cd / dd if=/dev/zero of=tmpfile bs=1024 count=1048576 mkfs.ext3 -j /tmpfile mount -o loop,noexec,nosuid,rw /tmpfile /tmp chmod 1777 /tmp echo “/tmpfile /tmp ext3 loop,rw,noexec,nosuid,nodev 0 0? >> /etc/fstab rm -rf /var/tmp ln -s /tmp/ /var/tmp
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
This results in errors while booting. Use <br> <br>echo /tmpfile /tmp ext3 loop,rw,noexec,nosuid,nodev 0 0 >> /etc/fstab <br> <br>
What do you mean by “secure?” Secure those directories from what? <br> <br>What OS are you running?