what command will mount device /device/sdal to the mount point /mnt/usb with a filesystem type of ext 3 and not allow binaries executed from the device
+1
A:
That should do it:
mount -t ext3 /dev/sda1 /mnt/usb -o noexec
Johannes Weiß
2009-10-09 18:33:24
+1
A:
The noexec
option should do this. If you're using the user
option, noexec
is implied.
John Millikin
2009-10-09 18:34:17