sudo apt-get autoremove
This command tells you how much space is getting used by the Apt cache:
sudo du -sh /var/cache/apt
Then use this command to clean outdated packages:
sudo apt-get autoclean
Or this command to clean it entirely:
sudo apt-get clean
This command tells you how much space is getting used by these logs:
journalctl --disk-usage
This command lets you renove them older than a specified number of days:
sudo journalctl --vacuum-time=3d