mirror of
https://github.com/cheat/cheat.git
synced 2026-06-18 06:17:40 +02:00
@@ -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/
|
||||||
@@ -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
|
||||||
Reference in New Issue
Block a user