ALL ABOUT ME

Ubuntu :: apple wireless keyboard fn key settings 본문

Life

Ubuntu :: apple wireless keyboard fn key settings

threeword 2012. 5. 3. 11:07
Here a description of each behavior :

  • 0 = disabled : Disable the 'fn' key. Pressing 'fn'+'F8' will behave like you only press 'F8'
  • 1 = fkeyslast : Function keys are used as last key. Pressing 'F8' key will act as a special key. Pressing 'fn'+'F8' will behave like a F8.
  • 2 = fkeysfirst : Function keys are used as first key. Pressing 'F8' key will behave like a F8. Pressing 'fn'+'F8' will act as special key (play/pause).

임시로...

echo 2 | sudo tee /sys/module/hid_apple/parameters/fnmode


영구적으로...

1. Append the configuration line to the file /etc/modprobe.d/hid_apple.conf creating it if necessary:

$ echo options hid_apple fnmode=2 | sudo tee -a /etc/modprobe.d/hid_apple.conf

2. Notify the hid_apple module to reload its configuration

$ sudo update-initramfs -u

3. Reboot

$ sudo reboot


출처 : https://help.ubuntu.com/community/AppleKeyboard


Comments