this post was submitted on 19 Nov 2025
987 points (97.6% liked)

Technology

76945 readers
3047 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] BartyDeCanter@lemmy.sdf.org 13 points 18 hours ago (1 children)

Eh? I've never had a problem with reading NTFS drives in linux, including USB sticks and SATA/USB adapters. Are you just wanting to read them or use them as read/write? Write is a bit more tricky, requiring ntfs-3g, but most reasonable distros come with that nowadays.

[–] LoafedBurrito@lemmy.world 4 points 17 hours ago (2 children)

Read/Write and linux will disconnect them randomly and they show up as a completely different drive. So i tried to permanently mount the UID in fstab, but still didn't work. Most of the fixes i've found online don't work for my drives.

[–] Fantabread@lemmy.world 3 points 6 hours ago

I had the same problem with USB docks. The filesystem didn't matter. Without going into much detail, the solution is to use the usb-storage driver with quirks enabled instead of the uas driver. I blacklisted uas to force usb-storage on the affected devices. Some googling should turn up decent instructions.

[–] BartyDeCanter@lemmy.sdf.org 1 points 16 hours ago (1 children)

Interesting. When you say that they show up as a different drive completely, do you mean that their UUIDs change, or that they get mounted at a different point?

Anyway, random disconnection sounds like a hardware issue, maybe a USB brownout, as much as anything else. What’s your connection setup, distro and kernel version?

[–] LoafedBurrito@lemmy.world 1 points 13 hours ago (1 children)

The mounting point changes. So it may be sd1, then disconnect and show up as sb1 and then i tried to permanently mount through fstab, but still didn't work. Connection setup? Not sure what you mean by that, but computer is hardwired to the network, external drive was connected via USB 3.0 in several different ports to see if it was a motherboard issue. I am on Cinnamon Mint 22 and i believe kernel 6.14.

[–] BartyDeCanter@lemmy.sdf.org 4 points 12 hours ago* (last edited 12 hours ago)

The dev entry point changing like that means that it disconnected and then reconnected, which shouldn’t have anything to do with the specific file system on the drive. That really makes it sound like the drive isn’t getting quite enough power, which causes a brown out, which Linux detects as the drive getting unplugged and coming back, which is why it gets a new dev entry.

A look through the usb logs by using something like usbrip would confirm that.