I'm using Ubuntu 24.04.3 LTS and I'm struggling with copying files to my USB drive. Typically, I just insert the USB, copy my files over, and pull it out, but now it seems complicated. After copying, I don't see a progress bar, and when I plug the USB back in, the files are missing or corrupted. I've noticed that waiting and clicking 'Eject' before unplugging helps, but it took me a few tries to get that method to work. Is there something I'm missing, or is copying files on Ubuntu just different from Windows?
4 Answers
If you prefer a graphical interface, check out Midnight Commander. It’s a bit more manual, but can simplify managing files on USBs. Just keep track of which letter your USB is assigned to.
If you’re into using the command line, commands like `cp` or `rsync` with `sync` at the end can help signify when it’s safe to unplug. It might seem a bit old school, but once you get the hang of it, it's quite efficient!
Good tip! Using those commands can really streamline the process, especially if you're dealing with a lot of files.
You definitely want to make sure you always unmount or eject your USB drive before pulling it out. Ubuntu has this thing called write caching, which means it can take some time for files to fully write to the USB. If you just yank it out, you risk data loss or corruption! You can also use the command line to check the syncing with the `sync` command if you want to be extra careful.
Exactly! It's really just a learning curve since it's not as intuitive as on Windows. Just keep an eye on your file manager for the progress or a small icon that shows when it's done.
I feel you! Even I had a hard time adjusting at first. Just like in Windows, the safest thing to do is to use the 'Safely Remove' option. It prevents unexpected data issues. Waiting until you get confirmation that everything is written is key.

That’s a great suggestion! A lot of people find using mc for file management much easier, especially when they're transitioning from Windows.