Eric> I'm interested in the automounter. I would be very nice to have Eric> my jumpdrive mount when I plug it in. Also, if anybody knows Eric> udev... I've got udev tamed enough to put devices where I want them when I plug them in. Automounting isn't there quite yet, though my wife would like it. Heck, I just finally switched my desktop to gnome as a full time test. We'll see how it goes with a real desktop she can find things on. Not that I really need icons on my desktop. Anyway, in terms of writing Udev rules, the key is to parsing the output of the 'udevinfo' tool. It's a pain to use in alot of ways, but not impossible. Basically, do: lsusb plug in device cat /proc/partitions ( for usb-storage) lsusb see what changed. udevinfo -q all -p /sys/... -a | less The trick is figuring out which device to look through in /sys/. For Compact Flash adapters and such, I would just cat /proc/partitions and see what changed and do: udevinfo -q all -p /sys/block/sde -a | less and then look through things. Thne I went and edited the file: /etc/udev/rules.d/10_local.rules and added lines like this: # Cruzer USB (Thin, 512mb) BUS="usb", SYSFS{product}=="Cruzer Mini", SYSFS{serial}=="2004351271076612cf2d" , KERNEL="sd?1", NAME="%k", SYMLINK="cruzer-thin" # Cruzer USB (Thick, 256Mb) BUS="usb", SYSFS{product}=="Cruzer Mini ", SYSFS{serial}=="000062894" , KERNEL="sd?1", NAME="%k", SYMLINK="cruzer-thick" # Compact Flash Reader BUS="usb", SYSFS{idProduct}=="0700",SYSFS{idVendor}=="05e3", NAME{all_partitions}="cf" # Epson Printer R300 Compact Flash Reader BUS="scsi",SYSFS{model}=="Stylus Storage ",SYSFS{vendor}=="EPSON " , NAME{all_partitions}="epson_cf" The key was the serial number(s) for stuff, and the idProduct & idVendor (from lsusb) in terms of how to mount stuff like the Compact flash reader which doesn't have a serial number, nor did the CF cards. Hopefully this will help. BTW, I'm on a debian system. John