Results 1 to 3 of 3

Thread: Keyboard Repeating Fix for VMWare Server

  1. #1
    Join Date
    Nov 2005
    Beans
    522
    Distro
    Ubuntu 10.04 Lucid Lynx

    Keyboard Repeating Fix for VMWare Server

    I recently found that my virtual machines in VMWare Server had a crazy keyboard repeat rate. It was very frustrating as it kept making wrong commands and passwords etc. I found the answer after a lot of searching. Hope this helps someone. Credit at bottom of post...

    1. In your virtual machine, edit /boot/grub/menu.lst

    Code:
    sudo gedit /boot/grub/menu.lst
    2. Find the section relating to your default boot, eg.

    Code:
    title		Ubuntu 7.10, kernel 2.6.22-14-generic
    root		(hd0,5)
    kernel		/boot/vmlinuz-2.6.22-14-generic root=UUID=44b331d8-c84a-463d-aa60-04b6b0efca20 ro quiet splash
    initrd		/boot/initrd.img-2.6.22-14-generic
    quiet
    3. At the end of the kernel line, add "acpi=off". Save your changes.

    4. Reboot and marvel at the lack of crazy keyboard repeating.

    Credit: http://people.vnoss.org/~hxizan/?p=15

    Cheers!

  2. #2
    Join Date
    Jul 2008
    Beans
    1

    Re: Keyboard Repeating Fix for VMWare Server

    I just wanted to thank you for posting this message. I recently encountered that problem in my VMWare Ubuntu installation, and this fixed it right up, saving me a potentially unlimited amount of time. I wish more people did things like this.

    Dan

  3. #3
    Join Date
    Dec 2007
    Beans
    24

    Re: Keyboard Repeating Fix for VMWare Server

    This not only works for VMWare but also other keyboard repeating issues. Here is the problem I was encountering:

    Upgrading to Lucid from Karmic and login screen would seem unresponsive. Could not switch to other consoles either (CTRL+ALT+F1..etc). Reboot, immediately try console one but as soon as GDM would load I would visually see the last character pressed on the keyboard repeat indefinitely.

    Being lazy, and not trying to fix the issue, I re-installed fresh. Same exact issue after install. Used the alternate CD to boot, go into recovery mode and jumped into shell. Edited /etc/default/grub (since I'm using grub2 now). Found the line:

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

    and added acpi=off. End result:

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off"

    Problem solved! Also, you can do the same thing if you have grub by adding acpi=off to your default menu.lst (found in /boot/grub/menu.lst)

    Enjoy and thanks to the poster for this awesome solution that worked right off the bat!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •