-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakingdebian12kali4Linux&VMs.sh
20 lines (20 loc) · 1.26 KB
/
makingdebian12kali4Linux&VMs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo apt-get update -y #or sudo apt update
sudo apt install wget gnupg dirmngr -y
sudo wget -q -O - https://archive.kali.org/archive-key.asc | gpg --import
sudo gpg --keyserver hkp://keys.gnupg.net --recv-key 44C6513A8E4FB3D30875F758ED444FF07D8D0BF6
sudo echo "deb http://http.kali.org/kali kali-rolling main non-free contrib" >> /etc/apt/sources.list
sudo gpg -a --export ED444FF07D8D0BF6 | sudo apt-key add -
sudo apt update -y
sudo apt full-upgrade -y
sudo apt dist-upgrade -y
sudo apt autoremove --purge
sudo apt install kali-linux-core -y
##################################################################################
############## #
######### #
#### Now, install your desired kali-linux-tools #
#### Example: #sudo apt kali-linux-default (whatever you want) #
#### #
######### #
############## #
##################################################################################