IS there a FORCE unmount on the linux version (That's the main question)
Successfully mounted drive from sdhc card.
Unable to unmount.
Warnings "Device or resource busy" or "target is busy"
Tried shutting down programs. No effect. Even shut down computer removed drive and rebooted and Media still noted the veracrypt and the filenames present.
Serious security issue (Hence is there a QUICK shut down NOW function?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
For the first part of your issue: technically we cannot force unmount on Linux if the volume is being used. This is not a limitation of VeraCrypt but rather a Linux kernel behavior that we cannot control. That's why there is no force unmount on VeraCrypt.
You can always know which process is blocking the volume from being unmounted using the command lsof. For example, if your volume mount directory is /media/veracrypt4, you can get the list of process that have open handle on the volume by typing: sudo lsof /media/volume4
From there, you can kill the culprit process(es) and unmount your volume.
Regarding the second part of your issue where you mention that the VeraCrypt volume persists after shutdown, this should not be possible. The decrypted contents of a VeraCrypt volume reside only in memory and are exposed to user-space applications through FUSE. After a shutdown and reboot, nothing remains in memory and no data should be visible.
This suggests that something else is occurring beyond the typical behavior of VeraCrypt. I recommend carefully reviewing your system setup and configuration. If you can provide additional details about your volumes, such as where and how you mount them, along with relevant screenshots, we can analyze the situation further and offer a more precise explanation.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Kubuntu 25.04 Veracrypt 1.26.20
IS there a FORCE unmount on the linux version (That's the main question)
Successfully mounted drive from sdhc card.
Unable to unmount.
Warnings "Device or resource busy" or "target is busy"
Tried shutting down programs. No effect. Even shut down computer removed drive and rebooted and Media still noted the veracrypt and the filenames present.
Serious security issue (Hence is there a QUICK shut down NOW function?
For the first part of your issue: technically we cannot force unmount on Linux if the volume is being used. This is not a limitation of VeraCrypt but rather a Linux kernel behavior that we cannot control. That's why there is no force unmount on VeraCrypt.
You can always know which process is blocking the volume from being unmounted using the command
lsof
. For example, if your volume mount directory is /media/veracrypt4, you can get the list of process that have open handle on the volume by typing:sudo lsof /media/volume4
An example output is as follows:
From there, you can kill the culprit process(es) and unmount your volume.
Regarding the second part of your issue where you mention that the VeraCrypt volume persists after shutdown, this should not be possible. The decrypted contents of a VeraCrypt volume reside only in memory and are exposed to user-space applications through FUSE. After a shutdown and reboot, nothing remains in memory and no data should be visible.
This suggests that something else is occurring beyond the typical behavior of VeraCrypt. I recommend carefully reviewing your system setup and configuration. If you can provide additional details about your volumes, such as where and how you mount them, along with relevant screenshots, we can analyze the situation further and offer a more precise explanation.