博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Install Ubuntu 12.04 on Macbook pro Retina
阅读量:6567 次
发布时间:2019-06-24

本文共 3232 字,大约阅读时间需要 10 分钟。

hot3.png

1. Install rEFIt

  1. Download and mount the  disk image.
  2. Double-click on the “rEFIt.mpkg” package.
  3. Follow the instructions and select your Mac OS X installation volume as the destination volume for the install.

If everything went well, you’ll see the rEFIt boot menu on the next restart.

If you run into any problems, you can find more details on .

2. Resize Partitions

This step is pretty straight-forward. Just open Disk Utility in OSX, and resize your existing OSX partition, so that there’s some free space for Ubuntu. You’ll want to leave the empty space as “free space” (it will get formatted during the Ubuntu installation). There are plenty of guides, if you get stuck on this step, including the .

3. Create USB Installer

The ISOs on the main Ubuntu download page don’t work, so you’ll need to get the , which is listed along with other less widely used images in their . Once you’ve downloaded the Mac Ubuntu ISO, you’ll need to follow some special steps to make it bootable on a Mac (the Startup Disk Creator on Ubuntu won’t work). Follow the directions for the “Manual Approach” on .

4. Install Ubuntu

It seems that something in the Macbook power management causes a kernel panic, so you’ll need to run the installer with the “noapic” option (press space at the splash screen, then F6). Note: you may need to reboot several times, as the installer may kernel panic before you have the option to set “noapic”. Also, note that the wifi won’t work (we’ll fix this in the next step), so don’t try to install updates during the installation process.

Once the installation finishes, you’ll need to boot up with the noapic option (press ‘e’ in GRUB and add it to the kernel parameters, right next to “splash” and “quiet”), and then add it permanently once you’ve booted up. You can find detailed directions for both of these steps in the .

5. Install Wifi Drivers

You’ll need to be a bit creative here. Apple removed the ethernet port, so you’ll need a USB wifi card, or some other method of installing the drivers (I tethered my Android phone using EasyTether). Once you have a working Internet connection, just follow these directions to install the driver:

sudo add-apt-repository ppa:mpodroid/mactel
sudo apt-get update
sudo apt-get install b43-fwcutter firmware-b43-installer
sudo apt-get install linux-backports-modules-cw-3.3-precise-generic

Edit the /etc/modprobe.d/blacklist.conf and add the line:

blacklist ndiswrapper

Create or edit the file /etc/pm/config.d/modules and make sure the wireless modules (b43 and bcma) are blacklisted:

SUSPEND_MODULES="b43 bcma"

Reboot and the wireless should work.

These directions are adapted from the .

6. Not Yet Working

Here’s a list of the things that aren’t working for me

  • Brightness control for screen (apple-gmux)
  • Volume control and other special keys on keyboard (pommed)
  • Touchpad (synaptics driver)
  • Internal screen resolution (maximum detected is 1024×768) & external monitor. I installed the   (>= 295.59) and , which atleast means that the Additional Drivers window in Ubuntu detects the proprietary drivers, but it says they’re “activated but not currently in use”. Let me know in the comments if you have any luck fixing this!

 

转载于:https://my.oschina.net/linuxhunter/blog/82056

你可能感兴趣的文章
InstallShield 2012 Spring新功能试用(16): Suite/Advanced UI 或 Advanced UI安装程序能在安装时进行输入合法性校验与反馈...
查看>>
C#面试宝典
查看>>
基金项目的英文
查看>>
《软件性能测试与LoadRunner实战教程》喜马拉雅有声图书上线
查看>>
ios 字典转模型
查看>>
Java类集
查看>>
类的生命周期
查看>>
php apache用户写文件夹权限设置
查看>>
浅析rune数据类型
查看>>
普通用户开启AUTOTRACE 功能
查看>>
游侠原创:推荐一款免费的Syslog转发工具
查看>>
onAttachedToWindow和onDetachedFromWindow调用时机源码解析
查看>>
根据Servlet的Filter自定义实现字符编码过滤器
查看>>
oh-my-zsh安装与配置
查看>>
团队随笔
查看>>
1.7 文件目录管理及相关的命令使用方法
查看>>
类成员与类的实例成员
查看>>
Spark源码编译并在YARN上运行WordCount实例
查看>>
Spring AOP + AspectJ annotation example
查看>>
Spring VS EJB 3 的若干认识误区(转)
查看>>