On a Sony Vaio VGN CS21S the keyboard doesn´t work after suspend to ram. Suspend to disk (hibernate) works though. Running a fresh install of Natty with Unity.
Asked
Active
Viewed 1.7k times
9
-
I've tried using adding "atkbd.reset to /etc/default/grub after the "quiet splash". This fixes the keyboard problem but now the touchpad is not responding any more. – davorao May 06 '11 at 18:34
-
After 11 years, I'm still having the issue and can't find a workaround... – Tom Jul 26 '22 at 16:23
2 Answers
10
The actual solution to this problem is:
Edit /etc/default/grub
and change the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash atkbd.reset"
Then, run update-grub
and reboot.
Credit: jmkhenka @ http://ubuntuforums.org/archive/index.php/t-1335007.html
Works for me on Lenovo Thinkpad X230.

Eliah Kagan
- 117,780

DustWolf
- 403
-
Same here linux 5.9.3, Sony Vaio SVE 1512, suspend to ram → keyboard defunct; suspend to disk afterwards makes it functioning again.
Loading the moduleatkbd
with the optionreset=1
(in case if it is statically compiled into the kernel, addingatkbd.reset=1
to the boot command line) did solve it. – Golar Ramblar Nov 23 '20 at 16:59
3
Same notebook and same problems here.
I'll suggest you to take a look at this! http://techiesurgeon.blogspot.com/2011/05/get-beautiful-ubuntu-natty-running-on.html
In addition to your fix it suggests to add psmouse to /etc/modules so to address touchpad issue.
It worked fine for me.
Cheers, Fabbree

Fabbree
- 31
-
3Although your answer is 100% correct, it might also become 100% useless if that link is moved, changed, merged into another one or the main site just disappears... :-( Therefore, please [edit] your answer, and copy the relevant steps from the link into your answer, thereby guaranteeing your answer for 100% of the lifetime of this site! ;-) You can always leave the link in at the bottom of your answer as a source for your material... – Fabby Oct 11 '15 at 10:50