Install Updates
Friday, August 4, 2017 4:52 PM
Overview
We have just created our Ubuntu server. We now need to apply any available system updates along with installing and configuring Docker to begin working with containers.
Install Updates
Just like any other operating system, updates are periodically released to support new features and patch any potential security threats. We will apply the updates first.
-
If you have not already, connect to your remote Ubuntu server and login.
-
From the login prompt, you may see a status of available updates. (If not, don't be too alarmed - continue with these steps anyway just to be sure.)
- First we need to ensure our list of sources for our system updates are up-to-date. From the command prompt, type the following:
sudo apt-get update
- Now we can install updates. From the command prompt, type the following to automatically install all available updates:
sudo apt-get upgrade -y
- Depending on the number and size of available updates, this process may take a few minutes. Now would be a good time to take a break.