Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Last active August 29, 2015 14:22
Show Gist options
  • Save yoshuawuyts/d3206f6f60456a9ef032 to your computer and use it in GitHub Desktop.
Save yoshuawuyts/d3206f6f60456a9ef032 to your computer and use it in GitHub Desktop.

arch

The goal is to get arch linux on a 2014 MBP Retina. We don't pretend to know what we're doing, so the goal is to aui in as few steps as possible so we don't have to configure the system ourselves.

create boot disk

# download iso first from https://www.archlinux.org/download/
$ hdiutil convert -format UDRW -o destination_file.img source_file.iso

# transfer the image to the disk
$ diskutil list
$ diskutil partitionDisk /dev/disk2 1 "Free Space" "unused" "100%"
$ sudo dd if=destination_file.img.dmg of=/dev/disk2 bs=1m
$ diskutil eject /dev/disk2

base installation

We're following the instructions in here.

# base font is fucked on retina so we amp it up
$ setfont sun12x22

wifi

Install the broadcom drivers for the 2014 model (check the page)

aui

We opt for the no-git install cause we're cool like that.

wget ow.ly/wnFgh -O aui.zip

troubleshooting

backlight

Backlight may suddenly be set to an unreadable level, write the following command:

tee /sys/class/backlight/acpi_video0/brightness <<< 15
@yoshuawuyts
Copy link
Author

Think I'm just gonna go with antergos, arch with no internet is silly to setup. http://antergos.com/about/

@yoshuawuyts
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment