For mine I made udev rules to create automatic symlinks because of how the kernel device names can change. Try something like this
BUS="USB", SYSFS{Product}="***", NAME="%k", SYMLINK="JumpDrive"
*** is the name of the device as the kernel detects it. Two easy ways to find it are:
the output of dmesg
udevinfo -a -p $(udevinfo -q path -n /dev/sda)
The doc that yuchai pointed you to is very good.
|