diff --git a/cheatsheets/apparmor b/cheatsheets/apparmor new file mode 100644 index 0000000..3e6d337 --- /dev/null +++ b/cheatsheets/apparmor @@ -0,0 +1,18 @@ +# Desc: Apparmor will protect the system by confining programs to a limited set of resources. + +# To activate a profile: +sudo aa-enforce usr.bin.firefox +# OR +export _PROFILE_='usr.bin.firefox' sudo $(rm /etc/apparmor.d/disable/$_PROFILE_ ; cat /etc/apparmor.d/$_PROFILE_ | apparmor_parser -a ) + +# TO disable a profile: +sudo aa-disable usr.bin.firefox +# OR +export _PROFILE_='usr.bin.firefox' sudo $(ln -s /etc/apparmor.d/$_PROFILE_ /etc/apparmor.d/disable/ && apparmor_parser -R /etc/apparmor.d/$_PROFILE_) + +# To list profiles loaded: +sudo aa-status +# OR +sudo apparmor_status + +# List of profiles aviables: /etc/apparmor.d/ diff --git a/cheatsheets/apt-get b/cheatsheets/apt-get new file mode 100644 index 0000000..0f4bcd6 --- /dev/null +++ b/cheatsheets/apt-get @@ -0,0 +1,13 @@ +# Desc: Allows to update the operating system + +# To fetch package list +apt-get update + +# To download and install updates without installing new package. +apt-get update + +# To download and install the updates AND install new necessary packages +apt-get dist-upgrade + +# Full command: +apt-get update && apt-get dist-upgrade