Como definir manualmente o mapeamento de teclado VMWare

1

Estou usando um laptop Toshiba Tecra M6, rodando o Linux Mint como meu sistema operacional padrão. Eu também tenho o VMware Player (6.5.0) instalado para testar alguns dos aplicativos no Windows.

No entanto, realmente me incomodou quando o VMware não fornece mapeamento de teclado adequado. Minha seta para baixo seria mapeada como a tecla do Windows, enquanto a tecla do Windows não funciona.

Minha chave PgDn também foi mapeada incorretamente.

    
por segfault 16.07.2009 / 03:58

2 respostas

0

Embora faça referência à conexão remota, siga este guia da VMware :

If your keyboard works correctly with a local X server, and you just want the same behavior with a remote X server (which is also an XFree86 server running on a PC), just power off the virtual machine and close the VMware Workstation window, then add the line

xkeymap.usekeycodeMapIfXFree86 = true

to the virtual machine configuration file or to ~/.vmware/config. Make this change on the host machine, where you run the virtual machine, not on the machine with the remote X server.

If you are using an XFree86-based server that VMware Workstation does not recognize as an XFree86 server, use this instead:

xkeymap.usekeycodeMap = true

Há também uma explicação mais detalhada que sugere o seguinte:

Using a text editor to add configuration settings to the virtual machine's configuration file.

xkeymap.usekeycodeMapIfXFree86 = true

Use key code mapping if you are using an XFree86 server, even if it is remote.

xkeymap.usekeycodeMap = true

Always use key code mapping regardless of server type.

xkeymap.nokeycodeMap = true

Never use key code mapping.

xkeymap.keycode.<code> = <v-scan code>

If using key code mapping, map key code <code> to <v-scan code>. In this example, <code> must be a decimal number and <v-scan code> should be a C-syntax hexadecimal number (for example, 0x001).

The easiest way to find the X key code for a key is to run xev or xmodmap -pk. Most of the v-scan codes are covered in V-Scan Code Table. The keysym mapping tables described in this section are also helpful.

    
por 18.07.2009 / 05:08
0

Você instalou as Ferramentas VMWare ?

    
por 16.07.2009 / 20:09