8000 [Update] Inline Upgrade to Ubuntu 18.04 LTS by wildmanonline · Pull Request #4813 · linode/docs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[Update] Inline Upgrade to Ubuntu 18.04 LTS #4813

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions docs/guides/security/upgrading/upgrade-to-ubuntu-18-04/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ slug: upgrade-to-ubuntu-18-04
author:
name: Linode
email: docs@linode.com
description: 'Our guide to upgrading to Ubuntu 18.04 LTS (Bionic Beaver)'
description: "A how-to guide for performing an inline upgrade to Ubuntu 18.04 LTS (Bionic Beaver)"
keywords: ["upgrading", "ubuntu", "18.04","bionic beaver"]
tags: ["security","ubuntu"]
license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)'
modified: 2018-04-27
modified: 2021-10-26
modified_by:
name: Edward Angert
name: Linode
published: 2018-04-27
title: 'How to Upgrade to Ubuntu 18.04 LTS (Bionic Beaver)'
title: "How to Upgrade to Ubuntu 18.04 LTS (Bionic Beaver)"
h1_title: "Inline Upgrade to Ubuntu 18.04 LTS (Bionic Beaver)"
enable_h1: true
relations:
platform:
key: how-to-upgrade-ubuntu
Expand All @@ -24,12 +26,7 @@ image: upgrade-ubuntu-18-title.jpg
Ubuntu 18.04 is a Long-Term Support (LTS) release that is supported by Canonical until April 2023. This guide shows how to upgrade your Linode from Ubuntu 16.04 (Xenial Xerus) or Ubuntu 17.10 (Artful Aardvark) to Ubuntu 18.04 (Bionic Beaver).

{{< caution >}}
Distribution upgrades sometimes yield unpredictable results. If possible, use these steps as an alternative to the upgrade method described in this guide:

- Create a new Linode with the latest disk template
- Rebuild your stack
- Transfer your data
- Swap IP addresses
Inline distribution upgrades can yield unpredictable results. Before continuing, read through our [Upgrading to the Latest Distribution (Clean Install)](/docs/guides/manually-upgrading-to-latest-distribution-version/) guide to learn more about your upgrade options, including performing a clean install of the latest distribution version.

The upgrade may be incomplete or your system may be corrupted if your internet connection is interrupted. Use [Lish](/docs/guides/using-the-linode-shell-lish) or [Glish](/docs/guides/using-the-linode-graphical-shell-glish/) to perform this upgrade in a stable environment that does not rely on an active internet connection to your Linode.

Expand Down Expand Up @@ -194,6 +191,14 @@ Codename: bionic

Your Linode is now running Ubuntu 18.04 LTS.

## Networking

[Netplan](https://netplan.io/) is used to configure networking in Ubuntu 18.04 and later. Ubuntu Server is packaged with `systemd-networkd` as the [backend](https://netplan.io/design#design-overview) for Netplan, while NetworkManager is used as the Netplan backend in Ubuntu Desktop. The `ifupdown` package has been deprecated, and `/etc/network/interfaces` is no longer used, but it's still possible to configure static networking with `/etc/systemd/network/*.network` files.

Once you have upgraded to Ubuntu 18.04 or later from an earlier version, you should run the following command to enable `systemd-networkd`:

systemctl enable systemd-networkd

## Upgrading from Previous Ubuntu Releases

If your Linode is running a release of Ubuntu older than 16.04 LTS, use the upgrade guides in the [Upgrading section](/docs/guides/security/upgrading) to upgrade to Ubuntu 16.04 LTS first. You may then upgrade your Linode to Ubuntu 18.04 LTS.
0