How to stop keyboard repetition on VirtualBox

I am using Citrix to remotely access a machine running Windows 7 that runs Ubuntu in VirtualBox. The problem I ran into was repeating the characters everywhere. I tried a few things, but for me it worked as follows:

+7
ubuntu virtualbox citrix
source share
2 answers

On your virtual machine (guest) type xset r off

This will disable the replay.

+8
source share

This post helped me today, but I had to use a variation. If the virtual machine has only a terminal / console (no desktop environment), try the following:

 setterm -repeat off 
0
source share

All Articles