/ Published in: Bash
Expand |
Embed | Plain Text
# See what is on mount # /var/tmp and /tmp are mounted as non-executable as a security measure. # Many compilers require the use of them to store temporary files and thus # you have to do something like the following in order to do so: mount -o,remount,rw,exec /var/tmp # Then when you're finished: mount -o,remount,rw,noexec /var/tmp
You need to login to post a comment.
