New PPA to Install .NET 8 in old Ubuntu 18.04 & Ubuntu 16.04

Last updated: February 5, 2024 — 2 Comments

For .NET developers, the latest .NET 8 can be installed on old Ubuntu 18.04 and/or Ubuntu 16.04 LTS easily through PPA.

.NET 8 was released few months ago in November, 2023. It’s a new LTS release with 3 years support, and features new code generator “Dynamic Profile-Guided Optimization” (PGO), AVX-512 instruction set, out-of-the-box AI features, first preview of .NET Aspire, native AoT, and various other changes. See the release note for details.

.NET 8 is made into Ubuntu system repositories for Ubuntu 23.10 and upcoming Ubuntu 24.04. For Ubuntu 22.04 and Ubuntu 20.04 LTS, I’ve written how to install .NET 8 from Microsoft repository.

For users of Ubuntu 16.04 and Ubuntu 18.04 who can’t upgrade the system, there’s now a third-party PPA contains the .NET 8 packages for 64-bit Intel/AMD machines.

The PPA is maintained by Rob Savoury, who maintains so many PPAs with Blender, Chromium, FFmpeg, Firefox, LibreOffice, Qt5/6, Python, LLVM, Node.js, and other popular software packages with old Ubuntu 16.04 and Ubuntu 18.04 support!


NOTE: Since the system libraries in Ubuntu 16.04 and 18.04 are quite outdated, the PPA has lots of library updates that MAY RUN INTO UNMET DEPENDENCY ISSUES for installing other app packages in future.

1. Add the Ubuntu PPA

First, press Ctrl+Alt+T on keyboard to open up a terminal window. When it opens, paste the command below and hit Enter to add PPA:

sudo add-apt-repository ppa:savoury1/dotnet8

Type user password when it asks for sudo authentication, though there’s no asterisk feedback, then hit Enter to continue.

For dependency packages, you need to also add the following PPA by running command:

sudo add-apt-repository ppa:savoury1/backports

2. Refresh Package Cache

Ubuntu now automatically refresh package cache after adding PPA. Just in case, you can run the command below in terminal to do it manually:

sudo apt update

3. Install .NET 8

Finally, install the sdk, run-time, host, as well as other core packages, by running the single command below:

sudo apt install dotnet8

Uninstall:

To uninstall .NET 8, open a terminal window (Ctrl+Alt+T) and run command to first install ppa-purge tool:

sudo apt install ppa-purge

Then, use the tool to purge PPAs, which also downgrade or uninstall the packages installed from that PPAs.

sudo ppa-purge ppa:savoury1/backports
sudo ppa-purge ppa:savoury1/dotnet8

IMPORTANT: Before answer yes to purge PPA and uninstall packages, do keep an eye on the list packages going to be removed!! It MAY REMOVE OTHER USEFUL APP PACKAGES due to downgrade dependency libraries.

Twitter

I'm a freelance blogger who started using Ubuntu in 2007 and wishes to share my experiences and some useful tips with Ubuntu beginners and lovers. Please comment to let me know if the tutorial is outdated! And, notify me if you find any typo/grammar/language mistakes. English is not my native language. Contact me via [email protected] Buy me a coffee: https://ko-fi.com/ubuntuhandbook1

2 responses to New PPA to Install .NET 8 in old Ubuntu 18.04 & Ubuntu 16.04

  1. Not familiar with .NET 8.
    Is it a MS .Netframe replacement? \I ask because I can not run Garmin Express on my Linux installation under Wine or PlayOnLinux as it needs .Netframe to install.

    • .Netframe is name of old versions run in Windows only. While new ones are called .NET runs on Linux, macOS, and Windows.

Leave a Reply

Text formatting is available via select HTML.

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> 

*