Langsung ke konten utama

Firejail Sanbox for Linux

 Firejail is a sanbox to secure your linux

You can download Firejail from here :
https://sourceforge.net/projects/firejail/

You can download the GUI for Firejail from here :
https://sourceforge.net/projects/firejail/files/firetools/

Firejail is a SUID program that reduces the risk of security breaches by restricting the running environment of untrusted applications using Linux namespaces and seccomp-bpf. It allows a process and all its descendants to have their own private view of the globally shared kernel resources, such as the network stack, process table, mount table.


Komentar

Postingan populer dari blog ini

Cara Merubah Grub Boot loader pada Ubuntu, Linux Mint dll

Untuk merubah Grub Boot order atau urutan Boot pada awal komputer dinyalakan kita bisa menggunakan aplikasi GUI yang mudah digunakan yang disebut Grub Customizer. Seperti namanya, kita bisa melakukan lebih dari sekedar menyusun ulang entri menu GRUB dengannya. Anda bisa menginstalnya dengan cara, buka Terminal Window lalu ketik : Sudo add-apt-repository ppa: danielrichter2007 / grub-customizer Sudo apt-get update Sudo apt-get install grub-customizer

How to Install Configure and Create Virtual Machine on Ubuntu with KVM

1 .  Check whether CPU has hardware virtualization support. KVM only works if your CPU has hardware virtualization support –  either Intel VT-x or AMD-V. To determine whether your CPU includes these features,  run the following command: #sudo grep -c "svm\|vmx" /proc/cpuinfo A 0 indicates that your CPU doesn’t support hardware virtualization,  while a 1 or more indicates that it does. 2 .  Install KVM and supporting packages.  Virt-Manager is a graphical application for managing your virtual machines —  you can use the kvm command directly, but libvirt and Virt-Manager simp...