mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #2429] [Tor Browser] ‘./Browser/execdesktop’: No such file or directory #1613
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#1613
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 @brainscar on GitHub (Feb 20, 2019).
Original GitHub issue: https://github.com/netblue30/firejail/issues/2429
Hi,
Thank you for your hard work.
I was wondering if you could help me with the following issue:
OS: Manjaro Linux
Package used: https://aur.archlinux.org/packages/tor-browser
When I try to run tor browser as such:
firejail --profile=/etc/firejail/start-tor-browser.profile /home/brainscar/.tor-browser/app/start-tor-browser.desktopI get the following error:
/usr/bin/env: ‘./Browser/execdesktop’: No such file or directoryThis is start-tor-browser.desktop:
Hope you can help.
Thank you.
@rusty-snake commented on GitHub (Feb 20, 2019):
$HOME/.tor-browser/is not whitelisted, fix:firejail --whitelist=$HOME/.tor-browser --profile=/etc/firejail/start-tor-browser.profile /home/brainscar/.tor-browser/app/start-tor-browser.desktop$HOME/.tor-browser/app/, fix:firejail --profile=/etc/firejail/start-tor-browser.profile $HOME/.tor-browser/app/Browser/start-tor-browser --detachFinal fix:
firejail --whitelist=$HOME/.tor-browser --profile=/etc/firejail/start-tor-browser.profile $HOME/.tor-browser/app/Browser/start-tor-browser --detach@smitsohu commented on GitHub (Feb 20, 2019):
General question: Are the colon characters in start-tor-browser.desktop.profile supposed to be there?
Also I think it would be good if the desktop file was mounted read-only in the sandbox.Scratch that, the desktop file alone doesn't make much sense. But in a perfect world there would certainly be second, stricter profile where the entire folder ~/.tor-browser is read-only and only some selected paths are writable :)
@rusty-snake commented on GitHub (Feb 20, 2019):
@smitsohu Yes. I know the issue FJ + TBB well several discussions in german forums, so I'm working on a tutorial right now.
@SkewedZeppelin commented on GitHub (Feb 20, 2019):
@rusty-snake @brainscar what is wrong with using torbrowser-launcher?
@smitsohu I don't think so
@rusty-snake commented on GitHub (Feb 20, 2019):
@SkewedZeppelin torbrowser-launcher has IMHO some annoying Issues.
@brainscar commented on GitHub (Feb 20, 2019):
Thank you so much @rusty-snake you're awesome. That totally worked.