# How to update your Ubuntu server packages

> Learn how to keep an Ubuntu server up to date with the latest packages and security fixes, by running apt-get update, then apt-get upgrade, and rebooting.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2022-05-28 | Canonical: https://flaviocopes.com/how-to-update-ubuntu-packages/

I have a few VPS based on Ubuntu and I have an alert on my calendar to log in from time to time and update the packages and keep up with security fixes.

Here's the sequence I use (it's mostly a note to myself for the next time I forget)

Connect as root to the server, then you run:

```
apt-get update
```

to get the packages index updates.

Then run:

```
apt-get upgrade
```

to actually update the packages.

Then, if needed (depends on the kind of packages that needed an update), reboot the system:

```
reboot
```
