Another sandbox is detected in Ubuntu 22.04 (WSL) #6177
-
I'm using Ubuntu 22.04 in WSL, and sudo apt-get install git build-essential libapparmor-dev pkg-config gawk
git clone https://github.com/netblue30/firejail.git
cd firejail
./configure --enable-apparmor --prefix=/usr
make -j14 && sudo make install-strip And I see that no matter which program I launch with firejail, it shows a warning like this:
I see some say the reason is that What does this warning mean? Should I do something to fix this? Or Ubuntu 22.04 has already protecting me? Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi, thanks for reporting. Yes, you should fix this doubled sandbox invocation.
That's correct reasoning indeed. Firecfg puts those symlinks into /usr/local/bin. As that path should be searched before /usr/bin, the 'symlink magic' works. Not sure why |
Beta Was this translation helpful? Give feedback.
-
I guess the other sandbox that beeing detected is called WSL? IDK, if firejail works in WSL2 (WSL1 is not supported). If you want to hack around, try to run |
Beta Was this translation helpful? Give feedback.
I guess the other sandbox that beeing detected is called WSL?
IDK, if firejail works in WSL2 (WSL1 is not supported). If you want to hack around, try to run
container=lxc firejail --noprofile echo hello
.