I'm running Ubuntu alone on a Macbook, with no dual boot. I run:
echo 2 > /sys/module/hid_apple/parameters/fnmode
both as root and with sudo chmod
, but after restarting it's back to 1
.
How can I prevent this?
I'm running Ubuntu alone on a Macbook, with no dual boot. I run:
echo 2 > /sys/module/hid_apple/parameters/fnmode
both as root and with sudo chmod
, but after restarting it's back to 1
.
How can I prevent this?
After editing /etc/modprobe.d/hid_apple.conf
and putting options hid_apple fnmode=2
, you need to run:
sudo update-initramfs -u
Reboot after that.
/etc/modprobe.d/hid_apple.conf
and putoptions hid_apple fnmode=2
This is an answer from this site https://wiki.archlinux.org/index.php/Apple_Keyboard – Sadaharu Wakisaka Apr 25 '20 at 21:40