i have found out that if you build it from source it's a better option. i uninstalled the mint version which is in software manager (be sure there is no firejail on your system before building and create timeshift snapshot.
install build dependencies:
Code: Select all
sudo apt-get install git build-essential libapparmor-dev pkg-config
build firejail which will be installed in /usr/local
Code: Select all
git clone https://github.com/netblue30/firejail.git
cd firejail
./configure && make && sudo make install-strip
now any time you want to update, just use the build codes to refresh it
source:
https://github.com/netblue30/firejail
Code: Select all
mint03@mint03:~$ firejail --version
firejail version 0.9.63
Compile time support:
- AppArmor support is disabled
- AppImage support is enabled
- chroot support is enabled
- file and directory whitelisting support is enabled
- file transfer support is enabled
- firetunnel support is enabled
- networking support is enabled
- overlayfs support is enabled
- private-home support is enabled
- seccomp-bpf support is enabled
- user namespace support is enabled
- X11 sandboxing support is enabled
mint03@mint03:~$