Created
August 10, 2013 02:12
-
-
Save anonymous/6198729 to your computer and use it in GitHub Desktop.
a guide for migrating from osx to arch linux
This file contains hidden or 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
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