Hello, I'm installing my server once again after a big hardware issue and I'm following this howto : http://www.howtoforge.com/perfect-server-debian-wheezy-apache2-bind-dovecot-ispconfig-3-p4 I'm currently on this part : cd /tmp wget http://olivier.sessink.nl/jailkit/jailkit-2.15.tar.gz tar xvfz jailkit-2.15.tar.gz cd jailkit-2.15 ./debian/rules binary Now, when I'm doing this (I took jailkit 2.16 since it's available) I get this error : /tmp/jailkit-2.16# ./debian/rules binary -bash: ./debian/rules: Permission denied Any idea where this comes from ? (I couldn't find much on google). And I am doing this as root. Thank you for any help.
Ok i found the issue... In /etc/fstab the /tmp was mounted this way : Code: In # /tmp was on /dev/sda6 during installation UUID=97aca464-0e93-433e-93aa-592085415815 /tmp ext4 [B]noexec[/B],nosuid,nodev 0 2 Removing noexec made it work (after the following command : mount -o remount /tmp)