Linux On A Macbook Pro 10,1

I have been using Linux as my primary desktop environment for a long time. It can be impractical, annoying, even infuriating. But it’s still my favorite operating system, and over the years I have grown accustom to its quirks and shortcomings. I also suffer from an occasional obsessive disorder with regards to problem solving. Specifically trivial, unimportant problems. Such was the case two weeks ago when I decided to ditch a virtual Linux environment running in Mac OS for a native Linux install.

Don’t get me wrong, running Linux using a virtual environment like Parallels is a pleasant and pretty smooth experience. I felt however that it should be snappier, should run faster on the super slick Mac hardware, so I innocently decided to dual-boot the machine and compare a native Linux install to what Parallels provides. It took a wee bit longer than I hoped to get things working as well as I wanted, but I’m happy to say the effort has been worth while. Here is a summary of things learned so far running Linux on a Macbook Pro 10,1. For the most part these are not distro specific, and I’m not using any high level configuration tools from a desktop environment like Gnome or KDE.

  • Installation
    There are plenty of how-tos out there to get the installation bits figured out. I’m a Debian man myself, so I found this particular post a useful jumping off point. The tips with regards to rEFInd and getting the wireless card to work during the installation process where very useful, and within an hour or two I had a bootable Debian Sid/Unstable setup, without any breakage to Mac OS.
  • Temperature
    In my experience laptops running Linux tend to run hot, and this Macbook is no exception. Before tweaking a few things it was consistently 10 C degrees warmer than in Mac OS, and would quickly raise to out-of-control hot when doing any CPU intensive work (I triggered CPU temp throttling with a make -j8 in less than a minute). I tried a number of things to reduce the temperature and managed to find two that help bring things back into Mac OS comparable levels. First is to use the Intel Pstate kernel driver for CPU scaling. The only tweaking required is to disable CPU “turbo” mode as the driver is IMHO too liberal with frequency ranges over the normal non-turbo maximum. This eliminates conditions spiraling to dangerous levels when all the cores are pegged. Secondly I’m running a simple Bash script from root’s crontab every minute that does a core temp evaluation and adjusts the minimum fan speed if required. This brings down the average idle temp with negligible additional fan noise. This requires the standard kernel coretemp driver as well as the applesmc kernel module.
  • Power
    To date the best estimated battery life value I have seen under Linux is 5 hours (I have not run an actual timed test yet) as compared to 7.5 in Mac OS. After some acpid rules fiddling I managed to scale the CPU to 75% of max and dim the display significantly when the power is unplugged. Both can be independently restored of course, but this goes a long way toward getting the most out of the battery. The powertop app has also been useful to identify devices that are not taking advantage of available power savings modes, though I can’t say for sure how much power savings they provide.
  • WIFI
    This Macbook has a Broadcom BCM4331 wireless adapter. The b43 kernel driver is the only one that recognizes the hardware, but it’s been hit or miss in the stability department (regardless of power saving mode). Some days are solid, some days are laden with network drops. I’m still working the issue and so far the 3.10.7 kernel seems more reliable than the stock Debian kernel, albeit with limited testing. In the meantime I stuck a tiny Panda Wireless USB card in, built the kernel module, and with the exception of some excessive but seemingly harmless logging, everything has been stable since.
  • Retina Display
    The Retina display is incredible. 2880×1800 pixels packed into a slim bright package. With the apple_gmux kernel driver the brightness is controllable, both from the function keys (using xbindkeys) or when changing from battery to plugged in (using acpid). Everything is really tiny at this res, so adjusting font sizes where possible is a must. I ended up modifying the defaults for my terminal (Mrxvt) and window manager (FVWM), as well as for QT and GTK. This pretty much does the trick for everything I use with the exception of bumping the default zoom level in Chromium.
  • Trackpad
    The mtrack Xorg input module works well with the multi-touch device. I added a few bindings into the xorg.conf file to set up some click and tap combos, and so far it’s working well. I’m not a big trackpad fan but I have to admit this one is slick. I’m laughably clumsy with it but I’m getting better.
  • Function Keys
    Using xev I was able to identify the keycodes for the function keys and bind them to actions with xbindkeys. Brightness and keyboard back-lights are controlled via simple Bash scripts that manipulate /sys entries directly, and the volume controls use amixer. I have not mapped the remaining keys to anything yet.
  • Suspend
    This works quite a bit better than I expected (with nothing but kernel support and standard power management related packages). The only issue so far is that the network needs to be reset after a resume. I have not put any effort into automating this yet but plan to look into it soon. Acpid makes it trivial to trigger suspend on a lid close which is pretty handy (though sometimes annoying).
  • Video
    I’m using the Nouveau kernel driver to power the display on the Nvidia GeForce GT 650M. There is an alternate Intel i915 GPU but I have not tried to activate it yet. I did build modular support for it in the kernel, and I enabled options to allow switching between graphic devices. The Nvidia GPU continues to work fine with the Intel drivers enabled which is better than the last time I tried to run multiple kernel drivers for different GPU vendors simultaneously. Hardware 3D works and the frame rates are what you would expect from a mobile GPU.
  • Hard drive
    This rig has a peppy 251Gb Apple SSD (SM26E). Works great with the standard SATA kernel drivers. I have not run any specific benchmarks, but I’m sort of new to using SSDs and they all seem so fast I could be completely unoptimized and still loving the performance.
  • USB
    No issues here. I’m using the standard UHCI, OHCI, XHCI kernel modules to support USB interfaces. Everything I have plugged into a USB port has worked perfectly so far.
  • Sound
    The Intel HDA ALSA audio driver works with no tweaking. The volume gets pretty loud for a laptop which is nice. Plugging in headphones correctly mutes speaker output and work fine. Overall the sound quality is better than I thought it would be.
  • Webcam
    The webcam is an Apple “FaceTime” HD Camera that is connected internally using USB. Tested with mplayer, it works without issue using the kernel’s generic uvcvideo driver.
  • Card Reader
    This is a Broadcom Corporation NetXtreme BCM57765 Memory Card Reader. The MMC drivers spit out a non fatal hardware interrupt warning when I insert a card and then nothing happens. In all fairness though it might be a bad XD card. I could only find one to test with and it’s ancient.

Here is a shot of my very fancy not old-fashioned at all looking new Macbook Pro Linux desktop (click for full res).

macbook_screenshot

And here are some of the scripts and configs referenced above in case anybody finds them useful:

15 thoughts on “Linux On A Macbook Pro 10,1

  1. Hi,

    i was wondering what utility do you use to display that system info frame beside the terminal.

    I do not have a retina macbook pro yet, im planning to get the haswell one in the next few weeks to run arch linux native on it. I’ve read a lot of related articles and it looks like there are mixed feelings about the experience.

    I use my laptop as my workstation, i mainly code in Vim, compile code and browse the internet. Do you think it would suit my needs?

    Thanks!

    Roberto.

    • Hi Roberto,
      The system info display is provided by Conky, a really nice powerful system monitoring tool. Overall my experience is good with the MBP and Linux, however one issue you might run into if you do a lot of compiling is that these machines tend to run hot (regardless of OS).

  2. About the heating issues, it’s possible to install “macfanctld” [https://launchpad.net/macfanctld] to resolve this issue. I’m currently running trisquel on a 2011 MBP with the Awesome window manager, and I average 49.0°C.

    Happy Hacking.

  3. Thanks for this! I have the same setup. In regards to heating issues – I noticed this too. It went away after installing the nvidia driver from nvidia. I think the heat comes from the gpu. I don’t think nouveau can do clock speed scaling or something…

    • Thanks for the feedback. When I tried the proprietary Nvidia drivers I could not get X to load, it just went to a black screen and locked up. I tried a few things but eventually just reverted back to nouveau. I will give it another shot and see how it goes!

      • Thans for your post. Following your notes I was able to get rid of my CPU goint to 100 C. Now I’m running Fedora 21 with NVIDIA driver and compiz effects like a charm. I’ll check how kerne compilation goes with new settings

  4. Hello!

    To be able to plug my two screens in my MBP I had to use the beta version of the propietary nvidia drivers 331.38

    I just installed macfanctld and it works great 🙂

    Thanks to all

  5. Hey man, I installed Gentoo on my MBP 9, 2 and your scripts were a life saver. I really like your approach on this by changing the values in /sys. This seems so much more flexible than installing programs to do every task. On newer kernels I’ve noticed the gmux_backlight is now intel_backlight.

    • If memory serves, it was quite good since OSX was controlling the power management features. I don’t recall Parallels putting a significant load on the system that would inhibit battery life. It’s definitely a plus for using a virtualized environment.

  6. i’ve got ubuntu 14.04 installed on my 11,1 macbook, using only EFI. grub is not installed. while i can add the intel_pstate=enable option on every boot, is there something i can edit to make that option permanent?

  7. Pingback: Cypht: New Open Source Webmail | Unencumbered by Facts

  8. Hi, thank you!!! Really useful.
    I got Ubuntu Server 16.04 on a MacMini7,1.
    Do you know if there’s a way to make it auto-reboot after power loss?

  9. Good write-up – thanks! I just picked up a secondhand MacBook Pro 10.1 (for next to nothing) and have been trying to get Kubuntu 18.04.1 working on it. While I’ve “kinda” got it working, I just cannot power down the Nvidia GPU. I’ve bookmarked a number of sites/forums in which people suggest ways to disable the Nvidia GPU “…at the EFI level…”. I’m going to try them out tomorrow – way too tired right now.

    I’m not an OSX fan, but boy do Apple make nice hardware. This thing was made in something like 2013/2014 (if I remember correctly) and is designed extremely well. Having said that, I mostly buy secondhand Lenovo ThinkPads (the T4xx series ThinkPads) – I love those too. My current favorite is a ThinkPad T460s – beautiful machine, only consumes around 8W when idle, and runs Linux flawlessly.

    If only there was a definitive guide on how to disable the Nvidia GPU on MacBooks…

Leave a comment