I hereby claim:
- I am cyberkryption on github.
- I am cyberkryption (https://keybase.io/cyberkryption) on keybase.
- I have a public key whose fingerprint is A67E 6869 4C85 BB0E AFA4 0FCA 4A47 D186 36BD E4C9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
clear | |
# shameless taken from @g0tmilk kali os-scripts | |
#### (Cosmetic) Colour output | |
RED="\033[01;31m" # Issues/Errors | |
GREEN="\033[01;32m" # Success | |
YELLOW="\033[01;33m" # Warnings/Information | |
BLUE="\033[01;34m" # Heading | |
BOLD="\033[01;01m" # Highlight |
#!/bin/bash | |
echo "[+] Checking for root permissions" | |
if [ "$EUID" -ne 0 ];then | |
echo "Please run this script as root" | |
exit 1 | |
fi | |
echo "[+] Seeting needrestart to automatic to prevent restart pop ups" | |
sudo sed -i 's/#$nrconf{restart} = '"'"'i'"'"';/$nrconf{restart} = '"'"'a'"'"';/g' /etc/needrestart/needrestart.conf |
#!/bin/bash | |
echo "[+] Checking for root permissions" | |
if [ "$EUID" -ne 0 ];then | |
echo "Please run this script as root" | |
exit 1 | |
fi | |
echo "[+] Seeting needrestart to automatic to prevent restart pop ups" | |
sudo sed -i 's/#$nrconf{restart} = '"'"'i'"'"';/$nrconf{restart} = '"'"'a'"'"';/g' /etc/needrestart/needrestart.conf |