Last active
June 13, 2022 02:17
-
-
Save miguelmota/904d7e1b14882499d01ec981dc037e88 to your computer and use it in GitHub Desktop.
[Fix] Docker container creation causes kernel oops on linux-aws 5.13.0.1028.31~20.04.22 https://bugs.launchpad.net/ubuntu/+source/linux-aws-5.13/+bug/1977919
This file contains 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
uname -r # 5.13.0-1028 is buggy | |
sudo systemctl stop docker | |
sudo systemctl stop docker.socket | |
sudo systemctl disable docker | |
sudo systemctl disable docker.socket | |
sudo apt-get update | |
sudo apt dist-upgrade -y && sudo apt autoremove -y | |
sudo apt-get update -y && sudo apt-get upgrade -y | |
sudo apt-get autoclean | |
sudo reboot | |
uname -r # 5.13.0-1029 or newer | |
sudo systemctl start docker | |
sudo systemctl enable docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment