Things to do after installing Kali Linux 2020.4
Things to do after installing Kali Linux 2020.4
There are a lot of guides what you shut do after installing Kali Linux but in the most there are missing some essential parts. Software like wine isn't working with preinstalled tools and a lot of helping tools are missing. What you will need depends on your thoughts what you really wanna do with Kali.
1. Changing root password and generate new ssh keys.
sudo passwd root
sudo update-rc.d -f ssh remove
sudo update-rc.d -f sshdefaults
cd /etc/ssh/
sudo mkdir kali_old
sudo mv ssh_host* kali_old
sudo dpkg-reconfigure openssh-server
2. Update Kali to the newest version.
sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo apt-get autoremove -y
3. Install the large or the full Version of Kali
sudo apt-get install kali-linux-large -y
or
sudo apt-get install kali-linux-everything -y
4. Install i386 architecture
If you try to use programs based one wine like ollydbg the won't start the wine 32 ist missing on amd64 Systems.
sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install wine32 -y
5 Install some useful software
Tilix Terminal Multiplexer
sudo apt-get install tilix -y
Android platform tools
If you're planning to play with Nethunter or Android devices install the android platform-tools
sudo apt-get install adb fastboot -y
If fastboot or adb isn#t working follow this guide to install them manually.
Install Pyrit
Follow this guide.
Install airgeddon
Install Arduino
sudo apt-get install arduino -y
Comments
Post a Comment