mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #3943] Parent is shutting down, bye... AppImage unmounted #2466
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#2466
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 @gonzaloamadio on GitHub (Feb 2, 2021).
Original GitHub issue: https://github.com/netblue30/firejail/issues/3943
Write clear, concise and in textual form.
Bug and expected behavior
Describe the bug.
I created an app image from a nodejs app, using Electron. And I want to execute it with firejail, but I get the message that parent is shutting down.
What did you expect to happen?
I expect to open it as it opens without Firejail
No profile and disabling firejail
firejail --noprofile /path/to/programin a terminal?Nothing,
which <program>orfirejail --listwhile the sandbox is running)?I cant make it run, so I do not know
Reproduce
Steps to reproduce the behavior:
firejail PROGRAMEnvironment
lsb_release -a,screenfetchorcat /etc/os-release)firejail --version) exclusive or used git commit (git rev-parse HEAD)Checklist
https://github.com/netblue30/firejail/issues/1139)--profile=PROFILENAMEis used to set the right profile.LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 PROGRAMto get english error-messages.browser-allow-drm yes/browser-disable-u2f noinfirejail.configto allow DRM/U2F in browsers.debug output
@rusty-snake commented on GitHub (Feb 2, 2021):
There were a lot AI related fixes/changes since 0.9.52, can you try with a newer version (e.g. 0.9.64.2).
@gonzaloamadio commented on GitHub (Feb 3, 2021):
Indeed.. i had to remove old firejail and install new one, and then it worked =)
Now I should make a good profile for it
@gonzaloamadio commented on GitHub (Feb 3, 2021):
If I run it with default profile, should it work? Because it is not:
@rusty-snake commented on GitHub (Feb 3, 2021):
The default.profile (used if no matching profile is found) has a balance between compatibility (weak and insecure) and security (more broken programs). It may work (partial) for a program or completely breaks it.
If you run chromium based software in firejail and don't pass
--no-sandboxto it (chromium), remember to allow the chroot syscall and, if you the kernel of the system where you do this has no support for unprivileged userns clone or it is disable, you can not set the NO_NEW_PRIVS prctl (nonewprivs), you need to drop all seccomp filters (seccomp*, protocol, mdwe) and keep the userns (noroot) and the CAP_SYS_ADMIN and CAP_SYS_CHROOT capabilities (caps*).If you want to write a profile for it, start with the profile.template and have a look at other electron profiles (
grep -lE "^include electron.profile$" /etc/firejail/*.profile).