Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/updater/official_up.sh
1303 views
1
#!/usr/bin/bash
2
# Author @nu11secur1ty
3
apt update -y
4
apt install -f -y
5
apt --fix-broken install -y
6
apt --fix-missing install -y
7
apt autoremove -y
8
# Dist upgrade
9
apt dist-upgrade -y
10
apt -y full-upgrade -y
11
dpkg --configure -a
12
apt --fix-broken install -y
13
apt install -f -y
14
apt autoremove -y
15
apt full-upgrade -y
16
17