Ubuntu 18.10 - Apple Trackpad 2 not recognised
I'm trying to get my Ubunto 18.10 system recognising my trackpad - which apparently works for some out of the box - with no joy.
I've tried installing the following driver:
https://github.com/robotrovsky/Linux-Magic-Trackpad-2-Driver
Unzipped it, ran sudo make install, and apparently it's installed correctly. However running tail -f /var/log/Xorg.0.log
and plugging it in after provides the following:
[ 588.973] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/mouse2)
[ 588.974] (II) No input driver specified, ignoring this device.
[ 588.974] (II) This device may have been added with another device file.
[ 589.076] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/event12)
[ 589.076] (**) Apple Inc. Magic Trackpad 2 Mouse: Applying InputClass "libinput pointer catchall"
[ 589.076] (II) Using input driver 'libinput' for 'Apple Inc. Magic Trackpad 2 Mouse'
[ 589.168] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 87 paused 0
[ 589.169] (**) Apple Inc. Magic Trackpad 2 Mouse: always reports core events
[ 589.169] (**) Option "Device" "/dev/input/event12"
[ 589.169] (**) Option "_source" "server/udev"
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device removed
[ 589.173] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:0265.000A/input/input39/event12"
[ 589.173] (II) XINPUT: Adding extended input device "Apple Inc. Magic Trackpad 2 Mouse" (type: MOUSE, id 16)
[ 589.175] (**) Option "AccelerationScheme" "none"
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) selected scheme none/0
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration factor: 2.000
[ 589.178] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration threshold: 4
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
I'm at a loss how to get my trackpad recognised as a trackpad. I'm guessing
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
Implies this isn't the case at the minute.
Any help is greatly appreciated.
EDIT: The github suggets trying the following if the driver isn't loading:
cd linux/drivers/hid
make
sudo rmmod hid_magicmouse
sudo insmod ./hid-magicmouse.ko
tail -f ~/.local/share/xorg/Xorg.0.log
However this doesn't work on ubuntu
drivers touchpad
New contributor
add a comment |
I'm trying to get my Ubunto 18.10 system recognising my trackpad - which apparently works for some out of the box - with no joy.
I've tried installing the following driver:
https://github.com/robotrovsky/Linux-Magic-Trackpad-2-Driver
Unzipped it, ran sudo make install, and apparently it's installed correctly. However running tail -f /var/log/Xorg.0.log
and plugging it in after provides the following:
[ 588.973] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/mouse2)
[ 588.974] (II) No input driver specified, ignoring this device.
[ 588.974] (II) This device may have been added with another device file.
[ 589.076] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/event12)
[ 589.076] (**) Apple Inc. Magic Trackpad 2 Mouse: Applying InputClass "libinput pointer catchall"
[ 589.076] (II) Using input driver 'libinput' for 'Apple Inc. Magic Trackpad 2 Mouse'
[ 589.168] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 87 paused 0
[ 589.169] (**) Apple Inc. Magic Trackpad 2 Mouse: always reports core events
[ 589.169] (**) Option "Device" "/dev/input/event12"
[ 589.169] (**) Option "_source" "server/udev"
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device removed
[ 589.173] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:0265.000A/input/input39/event12"
[ 589.173] (II) XINPUT: Adding extended input device "Apple Inc. Magic Trackpad 2 Mouse" (type: MOUSE, id 16)
[ 589.175] (**) Option "AccelerationScheme" "none"
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) selected scheme none/0
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration factor: 2.000
[ 589.178] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration threshold: 4
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
I'm at a loss how to get my trackpad recognised as a trackpad. I'm guessing
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
Implies this isn't the case at the minute.
Any help is greatly appreciated.
EDIT: The github suggets trying the following if the driver isn't loading:
cd linux/drivers/hid
make
sudo rmmod hid_magicmouse
sudo insmod ./hid-magicmouse.ko
tail -f ~/.local/share/xorg/Xorg.0.log
However this doesn't work on ubuntu
drivers touchpad
New contributor
Maybe in this case it is a good option to try the 4.10 kernel ;-) But uninstall the driver first.
– Pilot6
2 days ago
add a comment |
I'm trying to get my Ubunto 18.10 system recognising my trackpad - which apparently works for some out of the box - with no joy.
I've tried installing the following driver:
https://github.com/robotrovsky/Linux-Magic-Trackpad-2-Driver
Unzipped it, ran sudo make install, and apparently it's installed correctly. However running tail -f /var/log/Xorg.0.log
and plugging it in after provides the following:
[ 588.973] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/mouse2)
[ 588.974] (II) No input driver specified, ignoring this device.
[ 588.974] (II) This device may have been added with another device file.
[ 589.076] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/event12)
[ 589.076] (**) Apple Inc. Magic Trackpad 2 Mouse: Applying InputClass "libinput pointer catchall"
[ 589.076] (II) Using input driver 'libinput' for 'Apple Inc. Magic Trackpad 2 Mouse'
[ 589.168] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 87 paused 0
[ 589.169] (**) Apple Inc. Magic Trackpad 2 Mouse: always reports core events
[ 589.169] (**) Option "Device" "/dev/input/event12"
[ 589.169] (**) Option "_source" "server/udev"
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device removed
[ 589.173] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:0265.000A/input/input39/event12"
[ 589.173] (II) XINPUT: Adding extended input device "Apple Inc. Magic Trackpad 2 Mouse" (type: MOUSE, id 16)
[ 589.175] (**) Option "AccelerationScheme" "none"
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) selected scheme none/0
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration factor: 2.000
[ 589.178] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration threshold: 4
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
I'm at a loss how to get my trackpad recognised as a trackpad. I'm guessing
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
Implies this isn't the case at the minute.
Any help is greatly appreciated.
EDIT: The github suggets trying the following if the driver isn't loading:
cd linux/drivers/hid
make
sudo rmmod hid_magicmouse
sudo insmod ./hid-magicmouse.ko
tail -f ~/.local/share/xorg/Xorg.0.log
However this doesn't work on ubuntu
drivers touchpad
New contributor
I'm trying to get my Ubunto 18.10 system recognising my trackpad - which apparently works for some out of the box - with no joy.
I've tried installing the following driver:
https://github.com/robotrovsky/Linux-Magic-Trackpad-2-Driver
Unzipped it, ran sudo make install, and apparently it's installed correctly. However running tail -f /var/log/Xorg.0.log
and plugging it in after provides the following:
[ 588.973] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/mouse2)
[ 588.974] (II) No input driver specified, ignoring this device.
[ 588.974] (II) This device may have been added with another device file.
[ 589.076] (II) config/udev: Adding input device Apple Inc. Magic Trackpad 2 Mouse (/dev/input/event12)
[ 589.076] (**) Apple Inc. Magic Trackpad 2 Mouse: Applying InputClass "libinput pointer catchall"
[ 589.076] (II) Using input driver 'libinput' for 'Apple Inc. Magic Trackpad 2 Mouse'
[ 589.168] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 87 paused 0
[ 589.169] (**) Apple Inc. Magic Trackpad 2 Mouse: always reports core events
[ 589.169] (**) Option "Device" "/dev/input/event12"
[ 589.169] (**) Option "_source" "server/udev"
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
[ 589.172] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device removed
[ 589.173] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:0265.000A/input/input39/event12"
[ 589.173] (II) XINPUT: Adding extended input device "Apple Inc. Magic Trackpad 2 Mouse" (type: MOUSE, id 16)
[ 589.175] (**) Option "AccelerationScheme" "none"
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) selected scheme none/0
[ 589.177] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration factor: 2.000
[ 589.178] (**) Apple Inc. Magic Trackpad 2 Mouse: (accel) acceleration threshold: 4
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: device is a pointer
I'm at a loss how to get my trackpad recognised as a trackpad. I'm guessing
[ 589.182] (II) event12 - Apple Inc. Magic Trackpad 2 Mouse: is tagged by udev as: Mouse
Implies this isn't the case at the minute.
Any help is greatly appreciated.
EDIT: The github suggets trying the following if the driver isn't loading:
cd linux/drivers/hid
make
sudo rmmod hid_magicmouse
sudo insmod ./hid-magicmouse.ko
tail -f ~/.local/share/xorg/Xorg.0.log
However this doesn't work on ubuntu
drivers touchpad
drivers touchpad
New contributor
New contributor
New contributor
asked 2 days ago
MarkMark
1012
1012
New contributor
New contributor
Maybe in this case it is a good option to try the 4.10 kernel ;-) But uninstall the driver first.
– Pilot6
2 days ago
add a comment |
Maybe in this case it is a good option to try the 4.10 kernel ;-) But uninstall the driver first.
– Pilot6
2 days ago
Maybe in this case it is a good option to try the 4.10 kernel ;-) But uninstall the driver first.
– Pilot6
2 days ago
Maybe in this case it is a good option to try the 4.10 kernel ;-) But uninstall the driver first.
– Pilot6
2 days ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1124016%2fubuntu-18-10-apple-trackpad-2-not-recognised%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1124016%2fubuntu-18-10-apple-trackpad-2-not-recognised%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Maybe in this case it is a good option to try the 4.10 kernel ;-) But uninstall the driver first.
– Pilot6
2 days ago