Last active
January 19, 2021 12:06
-
-
Save zainulhasan/f7b189528737d876014516f6b9eef171 to your computer and use it in GitHub Desktop.
Install kali linux on vps (Tested on Digitalocean)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
printf "Installing kali ... " >&2 | |
echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" >> /etc/apt/sources.list | |
apt-get -y update | |
apt-get -y --allow-unauthenticated install kali-archive-keyring | |
apt-get -y update | |
apt-get -y install kali-linux-everything | |
apt-get -y update | |
apt-get -y upgrade | |
apt-get -y dist-upgrade | |
apt-get -y autoremove | |
printf "Installing kali Done... " >&2 | |
shutdown now -rf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage:
curl https://gist.githubusercontent.com/zainulhasan/f7b189528737d876014516f6b9eef171/raw/f2a8da418b7a09d4f0765e858c20afd4b87eb4cf/install_kali.sh | bash