aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-03-23 03:54:01 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-03-26 12:46:20 -0300
commitf72d738e619601f6161e102bc95339d2eb679ea2 (patch)
treeae125d66ffd44e38995311371d42af0b3805fce9 /README
parentdocs: deduplicate info from SECURITY.md (diff)
downloadfirejail-f72d738e619601f6161e102bc95339d2eb679ea2.tar.gz
firejail-f72d738e619601f6161e102bc95339d2eb679ea2.tar.zst
firejail-f72d738e619601f6161e102bc95339d2eb679ea2.zip
docs: improve code blocks
Changes: * Use the usual 3 instead of 5 backticks for code fences * To improve syntax highlighting, remove the leading dollar signs for command lines without output and set the language used
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 5 insertions, 5 deletions
diff --git a/README b/README
index 89db59056..0b235772e 100644
--- a/README
+++ b/README
@@ -23,21 +23,21 @@ Please report all security vulnerabilities to:
23 23
24Compile and install mainline version from GitHub: 24Compile and install mainline version from GitHub:
25 25
26$ git clone https://github.com/netblue30/firejail.git 26 git clone https://github.com/netblue30/firejail.git
27$ cd firejail 27 cd firejail
28$ ./configure && make && sudo make install-strip 28 ./configure && make && sudo make install-strip
29 29
30On Debian/Ubuntu you will need to install git and gcc compiler. AppArmor 30On Debian/Ubuntu you will need to install git and gcc compiler. AppArmor
31development libraries and pkg-config are required when using --enable-apparmor 31development libraries and pkg-config are required when using --enable-apparmor
32./configure option: 32./configure option:
33 33
34$ sudo apt-get install git build-essential libapparmor-dev pkg-config gawk 34 sudo apt-get install git build-essential libapparmor-dev pkg-config gawk
35 35
36For --selinux option, add libselinux1-dev (libselinux-devel for Fedora). 36For --selinux option, add libselinux1-dev (libselinux-devel for Fedora).
37 37
38We build our release firejail.tar.xz and firejail.deb packages using the following command: 38We build our release firejail.tar.xz and firejail.deb packages using the following command:
39$ make distclean && ./configure && make deb
40 39
40 make distclean && ./configure && make deb
41 41
42Maintainer: 42Maintainer:
43- netblue30 (netblue30@protonmail.com) 43- netblue30 (netblue30@protonmail.com)