mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #56] cryptsetup issue #30
Labels
No labels
LTS merge
LTS merge
bug
bug
converted-to-discussion
doc-todo
documentation
duplicate
enhancement
file-transfer
firecfg
firejail-in-firejail
firetools
graphics
help wanted
information_old
installation
invalid
modif
moved
needinfo
networking
notabug
notourbug
old-version
overlayfs
packaging
profile-request
pull-request
question
question_old
removal
runtime-permissions
sandbox-ipc
security
stale
wiki
wiki
wontfix
wordpress
workaround
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/firejail#30
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @webslim on GitHub (Sep 7, 2015).
Original GitHub issue: https://github.com/netblue30/firejail/issues/56
I've run into the following issue:
-> cryptsetup can't close the dm device and complains that it is still in use.
@ghost commented on GitHub (Sep 7, 2015):
The device might still be mounted in the firejail's context. Try joining the existing firejail using a
firejail --joincommand and checking to see if it's still mounted in there.@netblue30 commented on GitHub (Sep 8, 2015):
Each sandbox has an independent mount table/mount namespace. This table starts as a copy of the main system mount table, and evolves independently after that. Your LUKS device has an entry in both the main mount table and in the sandbox mount table. You'll have to unmount it also in the sandbox.
@webslim commented on GitHub (Sep 11, 2015):
Thank you!
@netblue30 commented on GitHub (Sep 11, 2015):
you're welcome