To update Kali, first ensure that /etc/apt/sources.list is properly populated:
1
| cat /etc/apt/sources.list
|
1
2
3
4
| # See https://www.kali.org/docs/general-use/kali-linux-sources-list-repositories/
deb http://http.kali.org/kali kali-rolling main contrib non-free non-free-firmware
# Additional line for source packages
# deb-src http://http.kali.org/kali kali-rolling main contrib non-free non-free-firmware
|
After that you can run the following commands which will upgrade to the latest Kali version:
1
| sudo apt full-upgrade -y
|