tags:

views:

43

answers:

3

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ß
+2  A: 

mount -t ext3 -o noexec /dev/sda1 /mnt/usb

Steven Schlansker
+1  A: 

The noexec option should do this. If you're using the user option, noexec is implied.

http://linux.die.net/man/8/mount

John Millikin