Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Last active June 13, 2022 02:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miguelmota/904d7e1b14882499d01ec981dc037e88 to your computer and use it in GitHub Desktop.
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
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