- Run update script by cronjob under root role, and after that don't need to remember run update your computer time to time anymore
- More details as:
sudo su
crontab -e
> choice vi editor.
> press "a" on your keyboard to edit this file.
> press "↓" on your keyboard until you came to the last line.
> press "->" or "end" on your keyboard.
> press "enter" on your keyboard.
==> past below code to the end of this file,
0 * * * * sudo /usr/bin/apt-get update && sudo /usr/bin/apt-get full-upgrade -y && sudo /usr/bin/apt-get autoremove -y && sudo /usr/bin/apt-get clean
> press "enter" on your keyboard.
> press "esc" on your keyboard.
> press ":" and "w" and "q" on your keyboard to save and
> it's done.
all updates and cleanup procedures will done automated way after next reboot time.