Kubuntu 8.10 und VMWare Tastaturproblem

31.10.2008 - Lesezeit: ~1 Minute

In der VMWare Workstation funktionieren die Steuertasten nicht mehr richtig. Cursor nach unten bewirkt in einem Windows 2000 Gast zum Beispiel das öffnen des Systemmenus.

Abhilfe schafft der Tipp von nthrbldyblg - VMWare and the fubar keyboard effect

Einfach in die Datei ~/.vmware/config die folgenden Zeilen zur Neuordnung der Tastatur eintragen. (Die Datei ~/.vmware/config existierte bei mir nicht und musste erst angelegt werden.)

xkeymap.keycode.108 = 0x138 # Alt_R xkeymap.keycode.106 = 0x135 # KP_Divide xkeymap.keycode.104 = 0x11c # KP_Enter xkeymap.keycode.111 = 0x148 # Up xkeymap.keycode.116 = 0x150 # Down xkeymap.keycode.113 = 0x14b # Left xkeymap.keycode.114 = 0x14d # Right xkeymap.keycode.105 = 0x11d # Control_R xkeymap.keycode.118 = 0x152 # Insert xkeymap.keycode.119 = 0x153 # Delete xkeymap.keycode.110 = 0x147 # Home xkeymap.keycode.115 = 0x14f # End xkeymap.keycode.112 = 0x149 # Prior xkeymap.keycode.117 = 0x151 # Next xkeymap.keycode.78 = 0x46 # Scroll_Lock xkeymap.keycode.127 = 0x100 # Pause xkeymap.keycode.133 = 0x15b # Meta_L xkeymap.keycode.134 = 0x15c # Meta_R xkeymap.keycode.135 = 0x15d # Menu
Tags: Kubuntu VMware

Eine VMWare Platte vergrößern

12.09.2008 - Lesezeit: ~1 Minute

Ich möchte die Platte D: in meiner W2K-WMware-Maschine von 8GB auf 20 GB vergrößern. Bei mir läuft VMWare unter Kubuntu 8.04.

  1. VMWare beenden
  2. Datensicherung
  3. Den Dateinamen der Festplatte feststellen (muss eine *.vmdk Datei sein) Bei mir ist es win2000Pro-000012-cl1.vmdk
  4. auf der Konsole:
    $ cd /wnfdaten/vmware/Delphi7
    $ vmware-vdiskmanager -x 20GB win2000Pro-000012-cl1.vmdk
    
  5. VMWare starten
  6. Windows 2000 Maschine starten
  7. DISKPART.EXE aufrufen (evtl. von einem Windows XP-Rechner ausleihen)
  8. Auf Computer: C2004-D7
    
    DISKPART> LIST DISK
    
      Datentr.  Status      Größe    Frei     Dyn  GPT
      --------  ----------  -------  -------  ---  ---
           0    Online        10 GB      0 B
           1    Online      1020 MB      0 B
           2    Online        20 GB    12 GB
    
    DISKPART> SELECT DISK 2
    
    Datenträger 2 ist der derzeit gewählte Datenträger.
    
    DISKPART> LIST PART
    
      Partition      Typ               Größe    Offset
      -------------  ----------------  -------  -------
      Partition 1    Primär            8189 MB    32 KB
    
    DISKPART> SELECT PART 1
    
    Partition 1 ist die derzeit gewählte Partition.
    
    DISKPART> EXTEND
    
    Das Volume wurde erfolgreich erweitert.
    
    DISKPART> LIST PART
    
      Partition      Typ               Größe    Offset
      -------------  ----------------  -------  -------
    * Partition 1    Primär              20 GB    32 KB
    
    DISKPART> EXIT
    
  9. Und siehe da: Die Platte D: ist jetzt 20GB groß.
Tags: Linux-Programme VMware