I bought my laptop Dell with Ubuntu and it comes with Ubuntu 18.04. How can I update and upgrade to Ubuntu 18.04.3?
Asked
Active
Viewed 752 times
1 Answers
1
The proper way to update is
alt + ctrl + t
to open a terminal emulator
sudo apt update
To fetch the database
sudo apt upgrade
To make the actual install
If you want to upgrade to the next version of the system, then the command is
do-release-upgrade

Yvain
- 544
- 1
- 4
- 12
-
1
-
1Everything will be made to jump to the next version, so if it uses a newer kernel it will get it and install it. If you allready have that kernel it will leave it alone. – Yvain Aug 21 '19 at 23:37
sudo apt full-upgrade
or grab all system updates normally. When Ubuntu 20.04.1 is released you'll be offered the choice of moving to 20.04, but as long as you install updates when offered, you'll automatically upgrade from 18.04 to .1, .2, .3, .4, .5 as they become available. 4.15 is the 18.04 kernel unless HWE is enabled. Your last comment is also asking about HWE kernels, but your question doesn't mention that (HWE kernels are only default for 18.04.2 & later installs, need to be enabled for 18.04 & 18.04.1 installs) – guiverc Aug 21 '19 at 23:30