mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #2305] Does --appimage use the default profile under /firejail/etc? #1534
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#1534
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 @oositP on GitHub (Dec 19, 2018).
Original GitHub issue: https://github.com/netblue30/firejail/issues/2305
How would you run KeepassXC if using the Appimage of KeepassXC ?
If you run it with
firejail --appimage --net=none KeepassXCwill that still use the keepassxc.profile ?Is the keepassxc.profile still needed if you use the above?
This would be good to know for other apps as well, unless you have already documented the differences between using the profile you have created and the --appimage switch (which i have not come across yet)
@oositP commented on GitHub (Dec 21, 2018):
I made sure and didnt see any documentation explaining the differences with running apps in general and running them with --appimage.
Does running any app with a profile in /firejail/etc normally and using --appimage still use the default profile under /firejail/etc?? can anyone please answer this?
@crass commented on GitHub (Jan 8, 2019):
First, you should be able to see if or what profile is being using by using the
--debugoption. There isn't much difference in running appimage or not when it comes to profile selection and application. In the case ofKeepassXC, the profilekeepassxc.profilewill not be used because profile matching is case-sensitive, regardless of using--appimageor not.On thing to watch out for is that appimages are many times suffixed with
.appimage(eg.Firefox.appimage). So runningfirejail --appimage firefox.appimagewill not use the profilefirefox.profilebecause firejail is looking forfirefox.appimage.profile. In most cases, you'll want to explicitly specify the profile you want to use for appimages (eg.firejail --profile firefox firefox.appimage)@oositP commented on GitHub (Jan 10, 2019):
Thanks @crass, thats exactly what i needed to know!