Update Ubuntu
#!/bin/bash -
###############################################################################
#
# About: Updates the crap out of an Ubuntu installation
#
###############################################################################
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y
sudo apt-get check -y
sudo apt-get autoremove -y
sudo apt-get autoclean -y