Skip to content

Instantly share code, notes, and snippets.

Created August 10, 2013 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/6198729 to your computer and use it in GitHub Desktop.
Save anonymous/6198729 to your computer and use it in GitHub Desktop.
a guide for migrating from osx to arch linux
grab the arch linux iso - https://www.archlinux.org/download/
open terminal
```bash
cd /path/to/downloads
diskutil list
diskutil unmountDisk /dev/diskN # where N is your thumbdrive
hdiutil convert -format UDRW -o archlinux.img archlinux*
sudo dd if=archlinux.img* of=/dev/rdiskN bs=1m
diskutil eject /dev/diskN
```
(taken from http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-mac-osx)
reboot, and hold down the option key.
boot from the disk that says "UEFI Bootloader"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment