xinput not showing driver
I am constantly trying to install linux distribution (Ubuntu/mint) alongside Windows 10 on my laptop Acer Nitro 5 AN515-52. But every time , as soon as setup pops up,the touchpad totally stops working, I somewhere read that in some cases, it might be possible that kernels does not support drivers which makes me out of luck.I was somehow able to run
xinput command, but being a novice in linux , I was unable to determine what it conveys. I need to know whether linux can be installed or not.
[
ubuntu system-installation touchpad
add a comment |
I am constantly trying to install linux distribution (Ubuntu/mint) alongside Windows 10 on my laptop Acer Nitro 5 AN515-52. But every time , as soon as setup pops up,the touchpad totally stops working, I somewhere read that in some cases, it might be possible that kernels does not support drivers which makes me out of luck.I was somehow able to run
xinput command, but being a novice in linux , I was unable to determine what it conveys. I need to know whether linux can be installed or not.
[
ubuntu system-installation touchpad
add a comment |
I am constantly trying to install linux distribution (Ubuntu/mint) alongside Windows 10 on my laptop Acer Nitro 5 AN515-52. But every time , as soon as setup pops up,the touchpad totally stops working, I somewhere read that in some cases, it might be possible that kernels does not support drivers which makes me out of luck.I was somehow able to run
xinput command, but being a novice in linux , I was unable to determine what it conveys. I need to know whether linux can be installed or not.
[
ubuntu system-installation touchpad
I am constantly trying to install linux distribution (Ubuntu/mint) alongside Windows 10 on my laptop Acer Nitro 5 AN515-52. But every time , as soon as setup pops up,the touchpad totally stops working, I somewhere read that in some cases, it might be possible that kernels does not support drivers which makes me out of luck.I was somehow able to run
xinput command, but being a novice in linux , I was unable to determine what it conveys. I need to know whether linux can be installed or not.
[
ubuntu system-installation touchpad
ubuntu system-installation touchpad
edited Feb 1 at 16:25
Rui F Ribeiro
40.1k1479136
40.1k1479136
asked Feb 1 at 12:29
BrijeshBrijesh
32
32
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your touchpad is not being detected. Worst case, you might have to plug in an external mouse for troubleshooting or until the missing driver has been developed and included in the distribution you're using.
From the comments, your hardware model is Acer Nitro 5 AN515-52. By Googling it, I found this discussion in the Acer support forum. In that case, in the BIOS settings, there is a setting for touchpad that can be set to either Basic
or Advanced
- if your system has the same thing, try that setting both ways.
Also, it seems that the system discussed in the Acer forum has an I2C-based touchpad. Compared to PS/2 or USB, that's a fairly recent interface for HID devices - the specification was completed in year 2012. In Linux, that should be supported by the i2c-hid
module, and probably also the appropriate i2c bus driver module. The i2c-hid
module for Linux was initially developed in late 2012 and it looks like it was added to the main kernel codebase somewhere around kernel version 3.8.
Before the I2C HID specification was in common use, the I2C-related modules could be treated as non-essential in Linux, and that is probably why the installer still does not automatically load them - but if you can complete the installation using an external mouse, the system might well automatically load the necessary modules for I2C touchpad support when booting up to the fully installed Linux operating system.
I am using Acer nitro 5 AN515-52....
– Brijesh
Feb 1 at 13:53
I updated my answer based on that information and a bit of Googling.
– telcoM
Feb 1 at 14:22
Earlier I did changed it to basic, but then whenever I switched to windows, none of the gestures of touchpad worked. It was like going again and again to bios for switching. And I tried external mouse, it was also behaving same way. And as I was able to install linux by keyboard, even afyer doing so as you suggested, it did not loaded necessary models for I2C
– Brijesh
Feb 1 at 18:08
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
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%2funix.stackexchange.com%2fquestions%2f498123%2fxinput-not-showing-driver%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your touchpad is not being detected. Worst case, you might have to plug in an external mouse for troubleshooting or until the missing driver has been developed and included in the distribution you're using.
From the comments, your hardware model is Acer Nitro 5 AN515-52. By Googling it, I found this discussion in the Acer support forum. In that case, in the BIOS settings, there is a setting for touchpad that can be set to either Basic
or Advanced
- if your system has the same thing, try that setting both ways.
Also, it seems that the system discussed in the Acer forum has an I2C-based touchpad. Compared to PS/2 or USB, that's a fairly recent interface for HID devices - the specification was completed in year 2012. In Linux, that should be supported by the i2c-hid
module, and probably also the appropriate i2c bus driver module. The i2c-hid
module for Linux was initially developed in late 2012 and it looks like it was added to the main kernel codebase somewhere around kernel version 3.8.
Before the I2C HID specification was in common use, the I2C-related modules could be treated as non-essential in Linux, and that is probably why the installer still does not automatically load them - but if you can complete the installation using an external mouse, the system might well automatically load the necessary modules for I2C touchpad support when booting up to the fully installed Linux operating system.
I am using Acer nitro 5 AN515-52....
– Brijesh
Feb 1 at 13:53
I updated my answer based on that information and a bit of Googling.
– telcoM
Feb 1 at 14:22
Earlier I did changed it to basic, but then whenever I switched to windows, none of the gestures of touchpad worked. It was like going again and again to bios for switching. And I tried external mouse, it was also behaving same way. And as I was able to install linux by keyboard, even afyer doing so as you suggested, it did not loaded necessary models for I2C
– Brijesh
Feb 1 at 18:08
add a comment |
Your touchpad is not being detected. Worst case, you might have to plug in an external mouse for troubleshooting or until the missing driver has been developed and included in the distribution you're using.
From the comments, your hardware model is Acer Nitro 5 AN515-52. By Googling it, I found this discussion in the Acer support forum. In that case, in the BIOS settings, there is a setting for touchpad that can be set to either Basic
or Advanced
- if your system has the same thing, try that setting both ways.
Also, it seems that the system discussed in the Acer forum has an I2C-based touchpad. Compared to PS/2 or USB, that's a fairly recent interface for HID devices - the specification was completed in year 2012. In Linux, that should be supported by the i2c-hid
module, and probably also the appropriate i2c bus driver module. The i2c-hid
module for Linux was initially developed in late 2012 and it looks like it was added to the main kernel codebase somewhere around kernel version 3.8.
Before the I2C HID specification was in common use, the I2C-related modules could be treated as non-essential in Linux, and that is probably why the installer still does not automatically load them - but if you can complete the installation using an external mouse, the system might well automatically load the necessary modules for I2C touchpad support when booting up to the fully installed Linux operating system.
I am using Acer nitro 5 AN515-52....
– Brijesh
Feb 1 at 13:53
I updated my answer based on that information and a bit of Googling.
– telcoM
Feb 1 at 14:22
Earlier I did changed it to basic, but then whenever I switched to windows, none of the gestures of touchpad worked. It was like going again and again to bios for switching. And I tried external mouse, it was also behaving same way. And as I was able to install linux by keyboard, even afyer doing so as you suggested, it did not loaded necessary models for I2C
– Brijesh
Feb 1 at 18:08
add a comment |
Your touchpad is not being detected. Worst case, you might have to plug in an external mouse for troubleshooting or until the missing driver has been developed and included in the distribution you're using.
From the comments, your hardware model is Acer Nitro 5 AN515-52. By Googling it, I found this discussion in the Acer support forum. In that case, in the BIOS settings, there is a setting for touchpad that can be set to either Basic
or Advanced
- if your system has the same thing, try that setting both ways.
Also, it seems that the system discussed in the Acer forum has an I2C-based touchpad. Compared to PS/2 or USB, that's a fairly recent interface for HID devices - the specification was completed in year 2012. In Linux, that should be supported by the i2c-hid
module, and probably also the appropriate i2c bus driver module. The i2c-hid
module for Linux was initially developed in late 2012 and it looks like it was added to the main kernel codebase somewhere around kernel version 3.8.
Before the I2C HID specification was in common use, the I2C-related modules could be treated as non-essential in Linux, and that is probably why the installer still does not automatically load them - but if you can complete the installation using an external mouse, the system might well automatically load the necessary modules for I2C touchpad support when booting up to the fully installed Linux operating system.
Your touchpad is not being detected. Worst case, you might have to plug in an external mouse for troubleshooting or until the missing driver has been developed and included in the distribution you're using.
From the comments, your hardware model is Acer Nitro 5 AN515-52. By Googling it, I found this discussion in the Acer support forum. In that case, in the BIOS settings, there is a setting for touchpad that can be set to either Basic
or Advanced
- if your system has the same thing, try that setting both ways.
Also, it seems that the system discussed in the Acer forum has an I2C-based touchpad. Compared to PS/2 or USB, that's a fairly recent interface for HID devices - the specification was completed in year 2012. In Linux, that should be supported by the i2c-hid
module, and probably also the appropriate i2c bus driver module. The i2c-hid
module for Linux was initially developed in late 2012 and it looks like it was added to the main kernel codebase somewhere around kernel version 3.8.
Before the I2C HID specification was in common use, the I2C-related modules could be treated as non-essential in Linux, and that is probably why the installer still does not automatically load them - but if you can complete the installation using an external mouse, the system might well automatically load the necessary modules for I2C touchpad support when booting up to the fully installed Linux operating system.
edited Feb 1 at 14:22
answered Feb 1 at 12:57
telcoMtelcoM
17.3k12347
17.3k12347
I am using Acer nitro 5 AN515-52....
– Brijesh
Feb 1 at 13:53
I updated my answer based on that information and a bit of Googling.
– telcoM
Feb 1 at 14:22
Earlier I did changed it to basic, but then whenever I switched to windows, none of the gestures of touchpad worked. It was like going again and again to bios for switching. And I tried external mouse, it was also behaving same way. And as I was able to install linux by keyboard, even afyer doing so as you suggested, it did not loaded necessary models for I2C
– Brijesh
Feb 1 at 18:08
add a comment |
I am using Acer nitro 5 AN515-52....
– Brijesh
Feb 1 at 13:53
I updated my answer based on that information and a bit of Googling.
– telcoM
Feb 1 at 14:22
Earlier I did changed it to basic, but then whenever I switched to windows, none of the gestures of touchpad worked. It was like going again and again to bios for switching. And I tried external mouse, it was also behaving same way. And as I was able to install linux by keyboard, even afyer doing so as you suggested, it did not loaded necessary models for I2C
– Brijesh
Feb 1 at 18:08
I am using Acer nitro 5 AN515-52....
– Brijesh
Feb 1 at 13:53
I am using Acer nitro 5 AN515-52....
– Brijesh
Feb 1 at 13:53
I updated my answer based on that information and a bit of Googling.
– telcoM
Feb 1 at 14:22
I updated my answer based on that information and a bit of Googling.
– telcoM
Feb 1 at 14:22
Earlier I did changed it to basic, but then whenever I switched to windows, none of the gestures of touchpad worked. It was like going again and again to bios for switching. And I tried external mouse, it was also behaving same way. And as I was able to install linux by keyboard, even afyer doing so as you suggested, it did not loaded necessary models for I2C
– Brijesh
Feb 1 at 18:08
Earlier I did changed it to basic, but then whenever I switched to windows, none of the gestures of touchpad worked. It was like going again and again to bios for switching. And I tried external mouse, it was also behaving same way. And as I was able to install linux by keyboard, even afyer doing so as you suggested, it did not loaded necessary models for I2C
– Brijesh
Feb 1 at 18:08
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f498123%2fxinput-not-showing-driver%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