When I want to use a USB disk on my desktop, I insert the disk and mount it manually, for example:
mount /dev/sdb1 /mnt/usb
I know that I can specify mount options with -o
, such as
mount -o nodev,noexec,nosuid /dev/sdb1 /mnt/usb
But is there a way to set default options for all USB disks? (so that I don't have to type it manually every time)
udisks
as discussed here – Ramesh Sep 14 '14 at 17:30