You are not logged in.
Pages: 1
Good day!
I have copied many files from my USB Hard drive to my USB Flash drive using Krusader. But after finishing, I was unable to unmount them. The system returned errors as seen in attachments.
But why? I have already finished copying 5 minutes ago and closed Krusader!
Last edited by Rademes (2021-01-04 14:58)
Before asking for help please read this topic: https://www.q4os.org/forum/viewtopic.php?id=3502 If you have problems with WiFi network, try to install the Network Manager using Q4OS Software Centre.
Offline
You can use "fuser" , alternatively "lsof", commands to check which process blocks unmounting, see also https://unix.stackexchange.com/question … -on-umount
fuser has a -k option which will send a signal (default: SIGKILL) to each process using the mount. This is a rather forceful way to stop the mount from being busy. (And of course, be careful of what you SIGKILL!)
umount has an -l option to perform a lazy unmount. The mount will be removed from the filesystem namespace, but it stays mounted, so programs accessing it can continue to do so. When the last program accessing it exits, the unmount will actually occur.
Offline
Pages: 1