== 환경 ==
 * macbook 6.1 (late 2009)

== Ubuntu 10.10 ==
=== 멀티터치 드라이버 설치 ===
현재는 베타라 기본 드라이버보다 딱히 좋지는 않다.

{{{#! bash
apt-get install xf86-input-multitouch
gksudo /etc/X11/xorg.conf
}}}

다음 항목 추가 :
{{{#! bash
Section "InputClass"
    MatchIsTouchpad "true"
    Identifier "Multitouch Touchpad"
    Driver "multitouch"
EndSection       
}}}

=== 키보드 설정 ===
기본으로 활성화되어 있는 fn키 끄기
{{{#! bash
echo "options hid_apple fnmode=2" > hid_apple.conf;sudo mv hid_apple.conf /etc/modprobe.d/;sudo update-initramfs -u
}}}
https://help.ubuntu.com/community/AppleKeyboard#Change%20Function%20Key%20behavior

== 참고 ==
 * https://help.ubuntu.com/community/MactelSupportTeam/AppleIntelInstallation
 * https://help.ubuntu.com/community/MacBook6-1/Lucid
 * http://www.multimediaboom.com/how-to-fix-no_pubkey-db141e2302fdf932-in-ubuntu-10-10/
 * https://help.ubuntu.com/community/AppleKeyboard
 * http://ubuntuforums.org/showthread.php?t=1317571
 * http://bitmath.org/code/multitouch/
 * http://ubuntuforums.org/showthread.php?t=1334696