diff options
author | greg@kroah.com <greg@kroah.com> | 2004-03-23 18:21:45 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:35:10 -0700 |
commit | 166612d79decf5e7331a6bb65a60b4873551dfde (patch) | |
tree | 2a9ae3bd6e10c176ba2a74479452eb8dd720554c /FAQ | |
parent | c641a99c6f7de872c291b7d14568d8e7df447f8b (diff) |
[PATCH] add a question/answer about automounting usb devices to the FAQ.
Thanks to bert hubert <ahu@ds9a.nl> for the text.
Diffstat (limited to 'FAQ')
-rw-r--r-- | FAQ | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -84,6 +84,20 @@ Q: How will udev handle devices found before init runs? A: udev will be placed in initramfs and run for every device that is found. Work to get this implemented is still underway. +Q: Can I use udev to automount a USB device when I connect it? +A: Technically, yes, but udev is not intended for this. Projects that do + automount hotplugged storage devices are: + * Usb-mount http://users.actrix.co.nz/michael/usbmount.html + * devlabel http://linux.dell.com/projects.shtml#devlabel + + Alternatively, it is easy to add the following to fstab: + /udev/pendrive /pendrive vfat user,noauto 0 0 + + This means that users can access the device with: + $ mount /pendrive + And don't have to be root but will get full permissions on /pendrive. + This works even without udev if /udev/pendrive is replaced by /dev/sda1 + Q: I have other questions about udev, where do I ask them? A: The linux-hotplug-devel mailing list is the proper place for it. The address for it is linux-hotplug-devel@lists.sourceforge.net |