765
99% of Windows usability issues would be fixed if Windows had the guts to add this button
(media.piefed.social)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
How is linux handle such situations, i'm new using it and haven't looked that up yet, well i didn't got in such a situation yet, but i only used a handful of time a external hard drive
Basically, if you, as a regular user, cannot unmount a device, you can usually just go to root shell (
sudo -i), see where the thing is mounted (just usemount) and then unmount it (umount /media/blah/floop). If it says the device is still busy, as root you can remount it as read-only and then unmount it (seeking documentation left as an exericise to the reader, as I'm sitting at a Windows system now).There's also
lsof("list open files") tool, which can be used to see which exact programs are using files on that device, which you can then use to kill those sneaky processes (ps,kill).I don't think an average user is going to know how to interpret the output of
mountorfindmt