mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #2332] Can exclude individual Wine application from banned Internet connection of Wine default profile ? #1555
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#1555
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 @Nokia808 on GitHub (Jan 10, 2019).
Original GitHub issue: https://github.com/netblue30/firejail/issues/2332
Hi. Recently Wine land on Fedora repositories which is very nice .....
I would like to ask this question:
I installed WineHQ on my OS. I sandbox WineHQ by Firejail. I run many Windows game on WineHQ. Default WineHQ is blocking Windows applications that run on Wine, blocking them from connect to Internet.
Blocking from Internet is excellent feature in default WineHQ profile, & is a must. However, certain games need Internet because it have "multi-players" option that involve play with other user ONLINE. Here is the problem .....
So, is there a way to exclude individual Windows application(s) that run on WineHQ from "blocked from Internet connection" feature ? This is not only significant for game but for other applications like Skype windows version ........
@Vincent43 commented on GitHub (Jan 10, 2019):
You may prefix application command to run with
firejail --ignore=<option you use to block network>So instead of
Exec=wine app.exeRun
Exec=firejail --ignore=<option you use to block network> wine app.exe@rusty-snake commented on GitHub (Jan 11, 2019):
Because you can't use long options in .desktop files (as I know) you can do:
Exec=sh -c 'firejail --ignore=<option you use to block network> wine app.exe'