diff --git a/README b/README index 6cfd03031df..12467748a25 100644 --- a/README +++ b/README @@ -12,6 +12,8 @@ Linux namespace support. It supports sandboxing specific users upon login. Download: https://sourceforge.net/projects/firejail/files/ Build and install: ./configure && make && sudo make install Documentation and support: https://firejail.wordpress.com/ +Video Channel: https://www.youtube.com/channel/UCi5u-syndQYyOeV4NZ04hNA +Backup Video Channel: https://www.bitchute.com/profile/JSBsA1aoQVfW/ Development: https://github.com/netblue30/firejail License: GPL v2 diff --git a/README.md b/README.md index 4c6b52d3d49..973c4dcbd71 100644 --- a/README.md +++ b/README.md @@ -24,19 +24,19 @@ implemented directly in Linux kernel and available on any Linux computer.
Firejail Intro
+alt="Firejail Introduction" width="240" height="180" border="10" />
Firejail Intro
Firejail Demo
+alt="Firejail Demo" width="240" height="180" border="10" />
Firejail Demo
Debian Install
+alt="Debian Install" width="240" height="180" border="10" />
Debian Install @@ -44,13 +44,19 @@ alt="Firejail Intro video" width="240" height="180" border="10" />
Debian In
Arch Linux Install
+alt="Arch Linux Install" width="240" height="180" border="10" />
Arch Linux Install
Disable Network Access
+alt="Disable Network Access" width="240" height="180" border="10" />
Disable Network Access + + + +
Firejail Security Deep Dive
@@ -69,6 +75,9 @@ Wiki: https://github.com/netblue30/firejail/wiki GitLab-CI status: https://gitlab.com/Firejail/firejail_ci/pipelines/ +Video Channel: https://www.youtube.com/channel/UCi5u-syndQYyOeV4NZ04hNA + +Backup Video Channel: https://www.bitchute.com/profile/JSBsA1aoQVfW/ ## Security vulnerabilities diff --git a/RELNOTES b/RELNOTES index a5d03cd81c8..0e07e2d6131 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,5 +1,6 @@ firejail (0.9.65) baseline; urgency=low * new profiles: vmware-view + -- netblue30 Sat, 6 Feb 2021 09:00:00 -0500 firejail (0.9.64.2) baseline; urgency=low diff --git a/configure b/configure index 75c2499a9fd..4c19e6e856c 100755 --- a/configure +++ b/configure @@ -711,7 +711,6 @@ enable_option_checking enable_analyzer enable_apparmor enable_dbusproxy -enable_overlayfs enable_usertmpfs enable_man enable_firetunnel @@ -1367,7 +1366,6 @@ Optional Features: --enable-analyzer enable GCC 10 static analyzer --enable-apparmor enable apparmor --disable-dbusproxy disable dbus proxy - --disable-overlayfs disable overlayfs --disable-usertmpfs disable tmpfs as regular user --disable-man disable man pages --disable-firetunnel disable firetunnel @@ -3530,18 +3528,16 @@ if test "x$enable_dbusproxy" != "xno"; then : fi +# overlayfs features temporarely disabled pending fixes HAVE_OVERLAYFS="" -# Check whether --enable-overlayfs was given. -if test "${enable_overlayfs+set}" = set; then : - enableval=$enable_overlayfs; -fi - -if test "x$enable_overlayfs" != "xno"; then : - - HAVE_OVERLAYFS="-DHAVE_OVERLAYFS" - -fi +# +#AC_ARG_ENABLE([overlayfs], +# AS_HELP_STRING([--disable-overlayfs], [disable overlayfs])) +#AS_IF([test "x$enable_overlayfs" != "xno"], [ +# HAVE_OVERLAYFS="-DHAVE_OVERLAYFS" +# AC_SUBST(HAVE_OVERLAYFS) +#]) HAVE_USERTMPS="" # Check whether --enable-usertmpfs was given. diff --git a/configure.ac b/configure.ac index e21e4a01fe0..69d85fa7796 100644 --- a/configure.ac +++ b/configure.ac @@ -66,13 +66,16 @@ AS_IF([test "x$enable_dbusproxy" != "xno"], [ AC_SUBST(HAVE_DBUSPROXY) ]) +# overlayfs features temporarely disabled pending fixes HAVE_OVERLAYFS="" -AC_ARG_ENABLE([overlayfs], - AS_HELP_STRING([--disable-overlayfs], [disable overlayfs])) -AS_IF([test "x$enable_overlayfs" != "xno"], [ - HAVE_OVERLAYFS="-DHAVE_OVERLAYFS" - AC_SUBST(HAVE_OVERLAYFS) -]) +AC_SUBST(HAVE_OVERLAYFS) +# +#AC_ARG_ENABLE([overlayfs], +# AS_HELP_STRING([--disable-overlayfs], [disable overlayfs])) +#AS_IF([test "x$enable_overlayfs" != "xno"], [ +# HAVE_OVERLAYFS="-DHAVE_OVERLAYFS" +# AC_SUBST(HAVE_OVERLAYFS) +#]) HAVE_USERTMPS="" AC_ARG_ENABLE([usertmpfs],