SantaRosa

Differences between revisions 4 and 89 (spanning 85 versions)
Revision 4 as of 2007-09-14 15:12:12
Size: 5495
Editor: 209
Comment: missed some [[br]
Revision 89 as of 2008-10-31 15:01:50
Size: 155
Editor: 128
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Ubuntu on MacBookPro Santa Rosa =

== Preface ==
With the release of the third revision to the MacBook Pro line (June 2007), several hardware incompatibilities were introduced with Ubuntu.

The primary hardware changes from previous hardware revisions include:
 1. NVIDIA Graphics (GeForce 8600M GT)
 2. AirPort Extreme Wi-Fi 802.11b/g/n
 3. Sound
In order to document these incompatibilities and the workarounds a thread was created: http://ubuntuforums.org/showthread.php?t=474144

This Wiki page is based of this thread and the contributions made buy members in the forum.

''note.'' If you are new to installing Ubuntu on you Intel Mac you may like to familiarize yourself with the installation process by visiting the generic Wiki page for the MacBookPro or MacBook help page (https://help.ubuntu.com/community/MacBook).

If you are dual booting this page presupposes that you will
 1. Install the EFI boot menu GUI: rEFIt (http://refit.sf.net)
 2. Create a new partition to house your Ubuntu installation on you internal Hard Drive

== Installation: ==
To install Ubuntu on your Macbook Pro Santa Rosa:

=== Text Installation ===
 1. Download the Alternate Install CD (32bit or 64bit)
 2. Burn the install CD under OS X/Windows/Linux
 3. Download and install Boot Camp or rEFIt (http://refit.sf.net)
 4. Boot from the Ubuntu CD by holding the 'c' key during boot
 6. Follow the on screen instructions
 5. install Ubuntu

=== GUI Installation ===
 1. Download the Live Install CD
 2. Burn the install CD under OSX/Windows/Linux
 3. Download and install Boot Camp or rEFI (http://refit.sf.net)
 4. Boot from the Ubuntu CD by holding the 'c' key during boot
 5. Choose "Safe graphics mode" and press F6 to edit the boot parameters
 6. Remove "splash", "quiet" and "--" then add "all_generic_ide"
 7. Boot into the Live environment and install Ubuntu from Ubiquity

== Getting Graphics to Work ==
You will find after installation that you computer will not correctly boot. This is due primarily to the new unsupported graphics.

=== Change Graphics Drivers ===
 1. Reboot you Mac and choose the Linux icons from the rEFIt menu
 2. Press Esc when asked
A black screen will presented with text similar to:
{{{Ubuntu kernel 2.6.20-15-generic
Ubuntu kernel 2.6.20-15-generic (recovery mode)
Ubuntu memtest
etc...}}}
 3.#3 Select the recovery mode option
 4. Edit the /etc/X11/xorg.conf file
{{{nano /etc/X11/xorg.conf}}}
 5.#5 Search for "nv" and replace with "vesa"
 6. Exit nano and start an X session
{{{/etc/init.d/gdm start}}}

=== Installing the nVidia Drivers ===
If you want to have 3D hardware acceleration (e.g. for a composite desktop like Compiz-Fusion/Beryl), you will need to install the closed source nVidia drivers. The drivers in the Ubuntu repositories (nvidia-glx or nvidia-new) do not support the MacBook Pro SR.

You will need to install the latest drivers available from nVidia and patch it prior to installation.
 1. Download the NVIDIA driver from http://us.download.nvidia.com/XFree86/Linux-x86/100.14.11/NVIDIA-Linux-x86-100.14.11-pkg1.run
 2. Download the patch nvmacbook.diff from https://cbg.dyndns.org/store/config/nv_macbook.diff
 3. Patch the driver by executing the following:
{{{sh NVIDIA-Linux-x86-100.14.11-pkg1.run -x
cd NVIDIA-Linux-x86-100.14.11-pkg1/usr/src/
patch -p0 < ../../../nv_macbook.diff
cd ../..}}}
 4.#4 Stop your X session to install the driver
{{{/etc/init.d/gdm stop}}}
 5.#5 If you haven't already, install build-essential package so you can build the driver
{{{sudo apt-get install build-essential}}}
 6.#6 Run the nVidia install script
{{{sudo ./nvidia-installer -aN}}}
 7.#7 Follow the onscreen instructions to install the driver.
Generic instructions can be found here (thanks #pepe):
https://cbg.dyndns.org/wiki/ReadingCorner/LinuxOnMacbookPro#graphics

== Install Wireless ==
 1. Prepare to build the drivers
{{{sudo apt-get install build-essential}}}
 2.#2 Download the madwifi drivers
{{{cd /usr/src/modules/
sudo svn checkout http://svn.madwifi.org/trunk madwifi}}}
(the current trunk may not work, anyone remember what revision works?)
 3.#3 Build and install the madifi drivers
{{{cd madwifi
sudo make
sudo make install
sudo modprobe ath_pci}}}

== Controlling backlight and Keyboard Light ==
The system used to control backlight on Mac laptops is a proprietary Apple implementation which has been implemented under linux by pommed. To install pommed:
 1. Download the pommed source which contains a patch for the MacBookPro SR
{{{svn co svn://svn.debian.org/pommed}}}
 2.#2 Install the dependencies
{{{sudo apt-get build-dep pommed}}}
 3.#3 Build pommed
{{{cd pommed
sudo make}}}
Follow instruction in INSTALL

{{{gedit INSTALL}}}

== Getting Sound ==
 1. Install alsa dependencies
{{{sudo apt-get install automake autotools autoconf }}}
note. please provide other dependencies
 2.#2 Move into your modules source directory and download the latest alsa source which includes a patch for the MacBook Pro SR
{{{cd /usr/src/modules/
rsync -avz --delete rsync://alsa.alsa-project.org/hg/alsa-driver alsa
rsync -avz --delete rsync://alsa.alsa-project.org/hg/alsa-kernel alsa}}}
 3.#3 Build and install the driver
{{{cd ../alsa-driver
./hgcompile
make
make install
/etc/init.d/alsasound stop}}}
 4.#4 Verify all snd modules are unloaded
{{{lsmod}}}
 5.#5 Then load the driver module
{{{modprobe snd-hda-intel}}}
Since Documentation was on the wrong wiki. It has been moved to a more appropriate location here:
https://help.ubuntu.com/community/MacBookPro_SantaRosa

Since Documentation was on the wrong wiki. It has been moved to a more appropriate location here: https://help.ubuntu.com/community/MacBookPro_SantaRosa

MacBookPro/SantaRosa (last edited 2008-10-31 15:01:50 by 128)