Created
June 17, 2019 13:59
-
-
Save D4R4/601f4828ca8c9c16df8831f2a2a3e861 to your computer and use it in GitHub Desktop.
Downgrade Ubuntu 18.10 to 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Downgrade sources.list | |
$ sudo sed -i 's/cosmic/bionic/g' /etc/apt/sources.list | |
2. Pin packages | |
/etc/apt/preferences | |
Package: * | |
Pin: release a=bionic | |
Pin-Priority: 1001 | |
3. Downgrade Ubuntu system | |
$ sudo apt update | |
$ sudo apt upgrade | |
$ sudo apt dist-upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment