Kali/Post Install
From charlesreid1
Post-install procedure for Kali:
Fix SSH Keys
Fix SSH keys. First, install OpenSSH server:
$ apt-get install openssh-server
Update the SSH service to be at the default runlevel (i.e., to run on boot):
$ update-rc.d -f ssh remove $ update-rc.d -f ssh defaults
Move the old SSH keys somewhere else:
$ cd /etc/ssh/ $ mkdir insecure_original_default_kali_keys $ mv ssh_host_* insecure_original_default_kali_keys/
And finally, make new SSH keys for this machine.
$ dpkg-reconfigure openssh-server
Fix Everything Else
See Kali/Fixes for fixing everything else