Skip to content

Instantly share code, notes, and snippets.

@faraonc
Last active March 6, 2021 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save faraonc/6e0a19b6efeee977f3ed23697eb0845b to your computer and use it in GitHub Desktop.
Save faraonc/6e0a19b6efeee977f3ed23697eb0845b to your computer and use it in GitHub Desktop.
Pop!_OS Notes

Docker

To instal docker

Add Correct apt repo to update docker

$ cat /etc/apt/sources.list.d/docker.list
deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable

Reference: https://www.reddit.com/r/pop_os/comments/hdewao/trying_to_install_docker_on_2004_but_getting_an/

Email Client

VirtualBox

$ cat /etc/apt/sources.list.d/virtualbox.list
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian focal contrib

$ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
$ wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
$ sudo apt-get update
$ sudo apt-get install virtualbox-6.1

Install k3s

curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE="644" sh -s - - server --disable=traefik
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment