我正在使用Debian wheezy stable并且我尝试在插入时自动将特定的usb设备挂载到指定的目录中(不是在启动时或使用{{1} }命令)。
我知道如何使用mount
将我的设备挂载到我想要的目录中,并使用此/etc/fstab
知道mount -a
命令:
/etc/fstab
我也知道在插入设备时如何使用UUID="xxxxxxxxxxxxxxxx" /media/myFolder ntfs auto,exec,rw,user,suid,uid=1000 0 0
来安装设备。
我的问题是usbmount将设备安装在usbmount
文件夹中,而不是/media/usbX
中指定的目录中。
我没有找到如何更改fstab
的配置以使其尊重usbmount
文件。
是否有可能,如果可以,我该怎么做?
答案 0 :(得分:1)
在/etc/usbmount/usbmount.conf中查看MOUNTPOINTS。
# Mountpoints: These directories are eligible as mointpoints for
# removable storage devices. A newly plugged in device is mounted on
# the first directory in this list that exists and on which nothing is
# mounted yet.
MOUNTPOINTS="/media/usb0 /media/usb1 /media/usb2 /media/usb3
/media/usb4 /media/usb5 /media/usb6 /media/usb7"