Keyboard dead after lid-close .. lid-open [18.10, Detachable Laptop]











up vote
1
down vote

favorite












I'm using an Acer Switch 5 (a compact laptop with detachable keyboard) with Ubuntu 18.10 + latest updates. Generally the experience is great, but there is a frustrating niggle:



When I close the keyboard up against the screen (lid close) the laptop sleeps as expected. But when I open it again, the keyboard and it's built-in touchpad are dead (although the laptop otherwise wakes as expected). To make them work again, I must detach the keyboard and re-attach it. Very cumbersome.



Interesting side note: if I manually put the laptop to sleep, either by pressing the sleep/power button or by selecting suspend/sleep from the power menu and THEN close the lid, when I open the keyboard again, it wakes the laptop and everything works! Hmm.



This is the first time I have tried Linux on the device -- so it's not a regression (i.e. I have never known it to work in the past).



So: do you smart people here know if there is a different sleep action happening when I select suspend/sleep from the menu vs just close the lid? Or do you think there is some confusing hardware/firmware magic happening when the keyboard closes against the powered on laptop?



My current work around is to manually sleep the laptop myself each time before closing my lid. But that is not ... nice.



Thanks for any input!










share|improve this question
























  • Regardless whether there is a workaround or not, this looks to me like a kernel bug. Specifically, in the Linux Input Subsystem. If you like, you can report it. See https://kernel.org.
    – Jos
    Nov 27 at 11:03















up vote
1
down vote

favorite












I'm using an Acer Switch 5 (a compact laptop with detachable keyboard) with Ubuntu 18.10 + latest updates. Generally the experience is great, but there is a frustrating niggle:



When I close the keyboard up against the screen (lid close) the laptop sleeps as expected. But when I open it again, the keyboard and it's built-in touchpad are dead (although the laptop otherwise wakes as expected). To make them work again, I must detach the keyboard and re-attach it. Very cumbersome.



Interesting side note: if I manually put the laptop to sleep, either by pressing the sleep/power button or by selecting suspend/sleep from the power menu and THEN close the lid, when I open the keyboard again, it wakes the laptop and everything works! Hmm.



This is the first time I have tried Linux on the device -- so it's not a regression (i.e. I have never known it to work in the past).



So: do you smart people here know if there is a different sleep action happening when I select suspend/sleep from the menu vs just close the lid? Or do you think there is some confusing hardware/firmware magic happening when the keyboard closes against the powered on laptop?



My current work around is to manually sleep the laptop myself each time before closing my lid. But that is not ... nice.



Thanks for any input!










share|improve this question
























  • Regardless whether there is a workaround or not, this looks to me like a kernel bug. Specifically, in the Linux Input Subsystem. If you like, you can report it. See https://kernel.org.
    – Jos
    Nov 27 at 11:03













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I'm using an Acer Switch 5 (a compact laptop with detachable keyboard) with Ubuntu 18.10 + latest updates. Generally the experience is great, but there is a frustrating niggle:



When I close the keyboard up against the screen (lid close) the laptop sleeps as expected. But when I open it again, the keyboard and it's built-in touchpad are dead (although the laptop otherwise wakes as expected). To make them work again, I must detach the keyboard and re-attach it. Very cumbersome.



Interesting side note: if I manually put the laptop to sleep, either by pressing the sleep/power button or by selecting suspend/sleep from the power menu and THEN close the lid, when I open the keyboard again, it wakes the laptop and everything works! Hmm.



This is the first time I have tried Linux on the device -- so it's not a regression (i.e. I have never known it to work in the past).



So: do you smart people here know if there is a different sleep action happening when I select suspend/sleep from the menu vs just close the lid? Or do you think there is some confusing hardware/firmware magic happening when the keyboard closes against the powered on laptop?



My current work around is to manually sleep the laptop myself each time before closing my lid. But that is not ... nice.



Thanks for any input!










share|improve this question















I'm using an Acer Switch 5 (a compact laptop with detachable keyboard) with Ubuntu 18.10 + latest updates. Generally the experience is great, but there is a frustrating niggle:



When I close the keyboard up against the screen (lid close) the laptop sleeps as expected. But when I open it again, the keyboard and it's built-in touchpad are dead (although the laptop otherwise wakes as expected). To make them work again, I must detach the keyboard and re-attach it. Very cumbersome.



Interesting side note: if I manually put the laptop to sleep, either by pressing the sleep/power button or by selecting suspend/sleep from the power menu and THEN close the lid, when I open the keyboard again, it wakes the laptop and everything works! Hmm.



This is the first time I have tried Linux on the device -- so it's not a regression (i.e. I have never known it to work in the past).



So: do you smart people here know if there is a different sleep action happening when I select suspend/sleep from the menu vs just close the lid? Or do you think there is some confusing hardware/firmware magic happening when the keyboard closes against the powered on laptop?



My current work around is to manually sleep the laptop myself each time before closing my lid. But that is not ... nice.



Thanks for any input!







usb keyboard suspend acer resume






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 27 at 11:26

























asked Nov 27 at 10:41









Michael

62




62












  • Regardless whether there is a workaround or not, this looks to me like a kernel bug. Specifically, in the Linux Input Subsystem. If you like, you can report it. See https://kernel.org.
    – Jos
    Nov 27 at 11:03


















  • Regardless whether there is a workaround or not, this looks to me like a kernel bug. Specifically, in the Linux Input Subsystem. If you like, you can report it. See https://kernel.org.
    – Jos
    Nov 27 at 11:03
















Regardless whether there is a workaround or not, this looks to me like a kernel bug. Specifically, in the Linux Input Subsystem. If you like, you can report it. See https://kernel.org.
– Jos
Nov 27 at 11:03




Regardless whether there is a workaround or not, this looks to me like a kernel bug. Specifically, in the Linux Input Subsystem. If you like, you can report it. See https://kernel.org.
– Jos
Nov 27 at 11:03










1 Answer
1






active

oldest

votes

















up vote
1
down vote













I have felt your pain before and I'm going to assume you haven't modified your GRUB file yet. There are various options or combinations of options that seem to work, so you may have to experiment. This has been a recurring theme on my Toshiba L850D and here is what solved it for me:



In a terminal open GRUB:
sudo nano /etc/default/grub



Now find the line that starts with GRUB_CMDLINE_LINUX_DEFAULT="



and replace it with



GRUB_CMDLINE_LINUX_DEFAULT="atkbd.reset i8042.reset i8042.nomux quiet splash"



Save and exit Ctrl+O and Ctrl+X then update GRUB.



sudo update-grub



Reboot and cross your fingers! You may not need i8042.nomux as that is apparently for very old hardware, but I experienced intermittent results without it.



If that doesn't work you can find other options (like dumbkbd) and more detail in this thread:



Ubuntu 17.04 keyboard not responding after suspend



Edit: In case you're wondering I meant to add that my experience with the lid versus the power button was the same.



Hope that helps.






share|improve this answer























  • Thanks Mark! I tried your suggestions, including the ones in the linked post but they were not effective sadly -- the problem remains.
    – Michael
    Nov 27 at 13:35











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',
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1096448%2fkeyboard-dead-after-lid-close-lid-open-18-10-detachable-laptop%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








up vote
1
down vote













I have felt your pain before and I'm going to assume you haven't modified your GRUB file yet. There are various options or combinations of options that seem to work, so you may have to experiment. This has been a recurring theme on my Toshiba L850D and here is what solved it for me:



In a terminal open GRUB:
sudo nano /etc/default/grub



Now find the line that starts with GRUB_CMDLINE_LINUX_DEFAULT="



and replace it with



GRUB_CMDLINE_LINUX_DEFAULT="atkbd.reset i8042.reset i8042.nomux quiet splash"



Save and exit Ctrl+O and Ctrl+X then update GRUB.



sudo update-grub



Reboot and cross your fingers! You may not need i8042.nomux as that is apparently for very old hardware, but I experienced intermittent results without it.



If that doesn't work you can find other options (like dumbkbd) and more detail in this thread:



Ubuntu 17.04 keyboard not responding after suspend



Edit: In case you're wondering I meant to add that my experience with the lid versus the power button was the same.



Hope that helps.






share|improve this answer























  • Thanks Mark! I tried your suggestions, including the ones in the linked post but they were not effective sadly -- the problem remains.
    – Michael
    Nov 27 at 13:35















up vote
1
down vote













I have felt your pain before and I'm going to assume you haven't modified your GRUB file yet. There are various options or combinations of options that seem to work, so you may have to experiment. This has been a recurring theme on my Toshiba L850D and here is what solved it for me:



In a terminal open GRUB:
sudo nano /etc/default/grub



Now find the line that starts with GRUB_CMDLINE_LINUX_DEFAULT="



and replace it with



GRUB_CMDLINE_LINUX_DEFAULT="atkbd.reset i8042.reset i8042.nomux quiet splash"



Save and exit Ctrl+O and Ctrl+X then update GRUB.



sudo update-grub



Reboot and cross your fingers! You may not need i8042.nomux as that is apparently for very old hardware, but I experienced intermittent results without it.



If that doesn't work you can find other options (like dumbkbd) and more detail in this thread:



Ubuntu 17.04 keyboard not responding after suspend



Edit: In case you're wondering I meant to add that my experience with the lid versus the power button was the same.



Hope that helps.






share|improve this answer























  • Thanks Mark! I tried your suggestions, including the ones in the linked post but they were not effective sadly -- the problem remains.
    – Michael
    Nov 27 at 13:35













up vote
1
down vote










up vote
1
down vote









I have felt your pain before and I'm going to assume you haven't modified your GRUB file yet. There are various options or combinations of options that seem to work, so you may have to experiment. This has been a recurring theme on my Toshiba L850D and here is what solved it for me:



In a terminal open GRUB:
sudo nano /etc/default/grub



Now find the line that starts with GRUB_CMDLINE_LINUX_DEFAULT="



and replace it with



GRUB_CMDLINE_LINUX_DEFAULT="atkbd.reset i8042.reset i8042.nomux quiet splash"



Save and exit Ctrl+O and Ctrl+X then update GRUB.



sudo update-grub



Reboot and cross your fingers! You may not need i8042.nomux as that is apparently for very old hardware, but I experienced intermittent results without it.



If that doesn't work you can find other options (like dumbkbd) and more detail in this thread:



Ubuntu 17.04 keyboard not responding after suspend



Edit: In case you're wondering I meant to add that my experience with the lid versus the power button was the same.



Hope that helps.






share|improve this answer














I have felt your pain before and I'm going to assume you haven't modified your GRUB file yet. There are various options or combinations of options that seem to work, so you may have to experiment. This has been a recurring theme on my Toshiba L850D and here is what solved it for me:



In a terminal open GRUB:
sudo nano /etc/default/grub



Now find the line that starts with GRUB_CMDLINE_LINUX_DEFAULT="



and replace it with



GRUB_CMDLINE_LINUX_DEFAULT="atkbd.reset i8042.reset i8042.nomux quiet splash"



Save and exit Ctrl+O and Ctrl+X then update GRUB.



sudo update-grub



Reboot and cross your fingers! You may not need i8042.nomux as that is apparently for very old hardware, but I experienced intermittent results without it.



If that doesn't work you can find other options (like dumbkbd) and more detail in this thread:



Ubuntu 17.04 keyboard not responding after suspend



Edit: In case you're wondering I meant to add that my experience with the lid versus the power button was the same.



Hope that helps.







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 27 at 11:47

























answered Nov 27 at 11:42









Mark Henderson

113




113












  • Thanks Mark! I tried your suggestions, including the ones in the linked post but they were not effective sadly -- the problem remains.
    – Michael
    Nov 27 at 13:35


















  • Thanks Mark! I tried your suggestions, including the ones in the linked post but they were not effective sadly -- the problem remains.
    – Michael
    Nov 27 at 13:35
















Thanks Mark! I tried your suggestions, including the ones in the linked post but they were not effective sadly -- the problem remains.
– Michael
Nov 27 at 13:35




Thanks Mark! I tried your suggestions, including the ones in the linked post but they were not effective sadly -- the problem remains.
– Michael
Nov 27 at 13:35


















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1096448%2fkeyboard-dead-after-lid-close-lid-open-18-10-detachable-laptop%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Quarter-circle Tiles

build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

Mont Emei