Skip to content

Instantly share code, notes, and snippets.

@toddheslin
Last active August 22, 2021 22:20
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 toddheslin/65cd9474af375c1437c694fb08ee64fd to your computer and use it in GitHub Desktop.
Save toddheslin/65cd9474af375c1437c694fb08ee64fd to your computer and use it in GitHub Desktop.
Setting up Elementary OS on my Mac

Follow this guide to setup the Mac and USB boot drive: https://www.makeuseof.com/tag/install-linux-macbook-pro/

Split newly created partition into:

  • 500 EFI FAT32 (Boot)
  • 4096 Swap EXT4 (Swap)
  • Rest as HDD EXT4 (Actual install for linux)

Get Network setup

Follow this video: https://www.youtube.com/watch?v=0yOoOyxCQ24

echo \
  "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Do this instead:

echo \
  "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  bionic stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
  • ZSH and Oh My ZSH and Spaceship theme
  • Fira code font
  • NVM
  • Add SSH key to github
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment