I mount USB devices using the following command. I have no /etc/fstab entry, I mount these devices programmatically.
mount -o nodev LABEL=xyz mount-point
As soon as I attach another USB device, the earlier device name which was used at mount (e.g. /dev/sdc) changes to a new name (e.g. /dev/sdd) and my mounted device will not be reachable (typically I receive an I/O error).
How can I avoid this behavior and force the system NOT to "rename" already mounted devices?
It would be VERY important that my device names stay in place.
mountfinds the correct device name for you, based on the label.) Once the filesystem has been mounted, Linux uses other means to identify the device. It's only a symptom, however; the real problem is that already-attached devices get reinitialized when a new one is plugged in, which is not supposed to ever happen in normal usage. If that is happening, there might be problems with USB itself. – grawity Dec 6 '11 at 12:55