mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #2752] Run Firefox on remote X11 server without X11 forwarding #1731
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#1731
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 @mikkol554 on GitHub (Jun 6, 2019).
Original GitHub issue: https://github.com/netblue30/firejail/issues/2752
Dears,
I run the Xming X11 server on a Windows computer and have Firefox installed in another Fedora computer in the same network. I normally execute graphical Linux applications by prepending
DISPLAY=<xming host address>:0.0to<command name>. In some cases, I may need to use dbus-launcher to get things working (as withgnome-shell, for example).I do not use SSH X11 forwarding but the Xming server is configured for plain, direct TCP connections from clients instead of being dependent on the SSH connection being alive (and creating overhead).
I cannot run Firefox with firejail using this setup. I only get
with
The connection does not carry audio nor do I need it for anything.
Ideas?
@rusty-snake commented on GitHub (Jun 6, 2019):
@mikkol554 works it with
firejail --noprofile firefox?PS: what firejail version do you use?
firejail --version@mikkol554 commented on GitHub (Jun 6, 2019):
DISPLAY=10.168.0.53:0.0 firejail --noprofile firefoxfirejail --version@smitsohu commented on GitHub (Jun 6, 2019):
If you don't need audio, try to add a
nosoundoption.If
pulseaudio --versionreturns 10 or higher, you can as an alternative also try thenoautopulseoption. That should work as well and keep the sound going.@mikkol554 commented on GitHub (Jun 6, 2019):
Thank you. Adding
--nosounddoes the trick. It runs smoothly on the remote X server without SSH tunneling.