Solução da comunidade

Why USB Storage Names Change on ZimaOS and What to Check

A USB disk acquired a numbered name after reconnecting; later replies distinguished duplicate labels and unstable mount paths from real USB or DAS disconnects.

A Numbered Drive Name Can Have More Than One Cause

A community member saw a USB disk change from a familiar name to a numbered variant such as 2TB-2. The first suggestion was a duplicate or reused filesystem label. ZimaOS may add a suffix when it needs to avoid colliding mount names, so labels are worth checking before changing application paths.

Use lsblk -f to inspect the device, filesystem type, label, UUID, and current mount point. If two attached filesystems use the same label, assign a unique label with the correct tool for that filesystem. The thread mentioned e2label for ext filesystems and exfatlabel for exFAT. Confirm the device path and filesystem first; running a filesystem-specific command against the wrong device can cause damage.

The Original Case Also Showed a Physical USB Stability Problem

The author later found that drives on the rear USB ports were dropping and being detected again. Moving the connections to the front USB-C port stabilized their setup. That result indicates that the renamed mount was a symptom of reconnection in this particular case, not proof that the filesystem label itself was corrupt.

A separate participant described a DAS that slept or disconnected and returned with names such as DAS1-2, DAS1-3, and DAS1-4. This broke Jellyfin paths. The topic included an external screenshot album showing the storage issue.

UUID Mounts Stabilize Identity, Not the USB Connection

Community replies proposed mounting by filesystem UUID to a fixed directory such as /DATA/DAS1. A UUID-based /etc/fstab entry can keep the same filesystem associated with the same path even when its kernel device name changes. Retrieve the UUID with lsblk -f or, where available, sudo blkid.

However, this suggestion was not confirmed as a successful resolution by the affected DAS user. Editing /etc/fstab incorrectly can also interfere with boot or mounting, so back up the file, use options appropriate for removable storage, and test the entry before relying on it.

Most importantly, a UUID cannot make unavailable hardware available. If the enclosure powers down, a cable or port drops the link, or the bridge stops responding, applications still lose access until the device returns. Resolve power, sleep, cable, port, and enclosure behavior before treating a stable mount path as the complete fix.

FAQ

Why did ZimaOS add -2 or another number to my drive name?

It can happen when a preferred mount name is already occupied or when a device disconnects and is mounted again. Inspect labels, UUIDs, mount points, and system connectivity before deciding which cause applies.

Will a UUID mount stop a USB drive from disconnecting?

No. It provides a stable filesystem identity and intended path, but it cannot repair a physical disconnect, power-management problem, or unstable enclosure.

What was confirmed in the original user's setup?

The user reported that moving the USB connections away from the unstable rear ports to the front USB-C port solved their immediate problem. The later DAS and fstab discussion was a separate case and did not end with a confirmed software fix.