kemonine
/
lollipopcloud
Archived
1
0
Fork 0
This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
lollipopcloud/advanced/firejail.md

25 lines
374 B
Markdown
Raw Normal View History

# firejail
Isolation of commands / services
## Install
``` bash
mkdir /opt/firejail
cd /opt/firejail
apt install git build-essential jq
git clone https://github.com/netblue30/firejail.git .
git checkout 0.9.58.2
./configure && make && make install-strip
```
## Run
``` bash
/usr/local/bin/firejail --noprofile --netns=protected-%i bash
```