|
Re: keyboard is not working after resuming from suspend
For making a permanent change to Grub you have to edit the file /etc/default/grub with root.
Code:
su
# append atkbd.reset with sed command
sed -i 's%\(^GRUB_CMDLINE_LINUX.*\)\(\"\)$%\1 atkbd.reset"%' /etc/default/grub
# make your grub config
grub2-mkconfig > /boot/grub2/grub.cfg
Or do it with an command line editor like vim
Code:
su
# append atkbd.reset with sed command
vim /etc/default/config
Now add atkbd.reset to the line beginning with GRUB_CMDLINE_LINUX as last option before the quotes (") manually.
Code:
# make your grub config
grub2-mkconfig > /boot/grub2/grub.cfg
PS: This does not solve the problem on my Fedora 17 machine with USB keyboard. :-( Any other suggestions?
__________________
Workstation: Fedora 17, AMD Athlon X2 BE-2400, 12 GB RAM, 120 + 300 + 640 GB HDD
Notebook: Fedora 17 LXDE, IBM Thinkpad X40, 1,5 GB RAM
Notebook: Fedora 18 LXDE, IBM Thinkpad T23, 256 MB RAM
Registered Linux User #344145
Last edited by wicking; 18th November 2012 at 11:06 AM.
|