Apple Magic Trackpad 3 Not Working on Linux Mint 21.1: Fix
If you've recently purchased an Apple Magic Trackpad 3 and are having trouble getting it to work on your Linux Mint 21.1 system, you're not alone. Many users have reported issues with the trackpad not being recognized or not functioning properly. In this article, we'll cover the possible causes of this issue and provide a detailed step-by-step guide to help you fix it.
Possible Causes
There are a few possible causes for the Apple Magic Trackpad 3 not working on Linux Mint 21.1, including:
- Incorrect driver installation
- Incompatible kernel version
- Hardware issues
Step-by-Step Guide
Follow the steps below to troubleshoot and fix the issue:
Step 1: Check the Connection
Make sure the trackpad is properly connected to your computer via the lightning cable and USB-C port. You should see a notification on your screen indicating that a new USB device has been found.
[5634.954696] usb1-2: New USB device found, idVendor...
Step 2: Check the Kernel Version
Check the kernel version on your system by running the following command:
uname -r
If the kernel version is lower than 5.13, you may need to upgrade to a newer version to ensure compatibility with the Apple Magic Trackpad 3.
Step 3: Install the Apple Wireless Trackpad Driver
The Apple Magic Trackpad 3 uses the same driver as the Apple Wireless Trackpad. To install the driver, run the following commands:
sudo apt-get update
sudo apt-get install xserver-xorg-input-mtrack
Step 4: Configure the Driver
Create a new configuration file for the driver by running the following command:
sudo nano /usr/share/X11/xorg.conf.d/50-mtrack.conf
Add the following code to the file, making sure to replace "DeviceName" with the name of your trackpad:
<!-- /etc/X11/xorg.conf.d/50-mtrack.conf -->
Section "InputClass"
Identifier "mtrack"
MatchProduct "DeviceName"
Driver "mtrack"
Option "Sensitivity" "0.5"
Option "IgnoreThumb" "true"
Option "Calibration" "0 2000 0 2000"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "ButtonMoveEmulate" "true"
Option "ButtonIntegration" "true"
Option "EmulateThirdButton" "true"
Option "EmulateTwoFingerMinZ" "40"
Option "EmulateTwoFingerMinW" "8"
EndSection
Save and close the file, then restart your system.
Step 5: Test the Trackpad
After restarting your system, test the trackpad to see if it's working properly. If it's still not working, try the following:
- Check the cable for damage
- Try using a different USB-C port
- Try using a different computer
In this article, we covered the possible causes of the Apple Magic Trackpad 3 not working on Linux Mint 21.1 and provided a detailed step-by-step guide to help you fix the issue. We hope this article was helpful and that your trackpad is now working properly.
References
- Apple Magic Trackpad 3 User Guide
- Linux Mint 21.1 Release Notes
- xserver-xorg-input-mtrack Documentation