this post was submitted on 08 Jul 2024
27 points (93.5% liked)
Linux
48031 readers
1112 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Yanked out the cable like a medieval surgeon ;) Anyway, since I removed it from fstab I figured it was unmounted.
fstab tells the system what to mount on boot; it doesnt live reload! In future to unmount something do:
This command also works for something in your fstab, because fstab is only relevant during boot.
Don't do that.
fstab is just a config file so the computer knows what drives and storage volumes its supposed to have when it boots.
You can add and remove drives without ever editing fstab. Plugging something in should give you the option to mount it in your file explorer, and in the same place you should be able to "eject" it before disconnecting the actual cable.
Coming from non-linux, it's not usually a problem. But now I know better :)
I know that, but this particular drive was meant to be permanently mounted and accessible, which is why I added it to fstab. I am removing it because it's damaged and i have to replace it with something which isn't to act as a permanent drive for the server.
Thank you for your help :)
It was always a problem. On all systems.
Filesystems are resilient, but one that is actually designed to reliably survive being physically disconnected without warning, does not exist.
Windows has always had a "make safe to unplug" button, too.
Not that it matters if you were discarding the drive.
I mean, yes. But on the other hand, I've removed usb-connected media without using that button thousands of times and never had an issue. I'm obviously not doing it when I am writing to or reading from the medium.
Either way, thanks again for taking the time to respond :)
Yes, and every single time, it was because filesystems have ways to recover when things go wrong.
But make no mistake, things went wrong. Every time. Even if no files were damaged, the next system accessing the volume would run into a file system that wasn't exited properly.
And while "never do it while it's being accessed" improves your chances, due to write caching you can't actually know if the medium is still writing or reading. Or internally in the middle of a process organising data structures. Or being checked for damage by a background process because the filesystem was flagged for repair due to inconsistencies. Or in the case of spinning rust, in the middle of a background defrag. Or in the case of flash storage in the middle of a trim.
If you have a forgiving boss you could tell him "fuck you" to his face every morning... But why would you? Maybe one morning he'll be cranky, and that one time he'll take offence and actually fire you.
Point made :D