VMware Workstation 7.1.4

    What’s New

    Support for Windows 7 SP1

    Security Fixes

    • Workstation 7.1.4 addresses a local privilege escalation in the vmrun utility

      VMware vmrun is a utility that is used to perform various tasks on virtual machines. The vmrun utility runs on any platform with VIX libraries installed. It is installed in Workstation by default. In non-standard filesystem configurations, an attacker with the ability to place files into a predefined library path could take execution control of vmrun. This issue is present only in the version of vmrun that runs on Linux

      The Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name CVE-2011-1126 to this issue.

        Other Resolved Issues

        • In Workstation 7.1, the default main memory VA cache size (mainMem.vaCacheSize) for 32-bit Windows guests was reduced to accommodate 3D emulation memory requirements. However, the reduced value resulted in performance loss. For 7.1.4, the default main memory VA cache size has been be increased to 1000 MB and performance is improved.

        • Because Workstation failed to identify more than 10 USB host controllers in newer Windows guests, some USB devices did not appear in the Removable Devices menu. Now Workstation shows all USB devices in the Removable Devices menu as long as they are connected to the first identified 16 USB controllers.

        • When using the Capture Movie option, the captured video stopped playing around the 1GB mark if the video file exceeded 1GB. Now you can capture and play video files that are greater than 1GB. 

        • On Windows host systems that have more than 4GB of memory, Workstation sometimes crashed during cryptographic operations, for example, when performing disk encryption.

        • VMware Tools upgrade could be started by a non-administrator user from the VMware Tools Control Panel in a Windows guest. In this release, only administrator users can start VMware Tools upgrade from the VMware Tools Control Panel. To prevent non-administrator users from starting VMware Tools upgrade from a guest by using other applications, set isolation.tools.autoinstall.disable to TRUE in the virtual machine configuration (.vmx) file.

        • When a virtual machine running on a Windows host was used to access an Omron Industrial CP1L Programmable Logic Controller, Workstation generated an unrecoverable error.

        • When using NAT virtual networking on Windows hosts, the traceroute command did not work when used within virtual machines.

        • Workstation crashed with an access violation when a user tried to open the sidebar after closing all tabs in Quick Switch mode. 

        • The VMware Tools HGFS provider DLL caused a deadlock when making calls to the WNetAddConnection2 function from an application such as eEye Rentina in a Windows guest operating system.

        • There was no option to disable guest time sync when a host resumes. Now you can set time.synchronize.resume.host to FALSE in the virtual machine configuration (.vmx) file to disable guest time sync when a host resumes. See VMware Knowledge Base Article 1189 for other time sync options.

        • Setting a hidden attribute on a file in a shared folder from a Windows guest on a Linux host failed with an error. This problem caused applications such as SVN checkout to fail when checking out to shared folders on Linux hosts from Windows guests

        VMware Workstation 7.1 is available

        VMWare has released VMware Workstation 7.1.

        image

        What’s New in VMware Workstation 7.1

      • Support for 8 virtual processors (or 8 virtual cores) and 2 TB virtual disks.
      • Support for OpenGL 2.1 for Windows Vista and Windows 7 guests.
      • Greatly improved DirectX 9.0 graphics performance for Windows Vista and Windows 7 guests. Up to 2x faster than Workstation 7.
      • Launch virtualized applications directly from the Windows 7 taskbar to create a seamless experience between applications in your virtual machines and the desktop.
      • Optimized performance for Intel’s Core i3, i5, i7 processor family for faster virtual machine encryption and decryption.
      • Support for more Host and Guest Operating Systems, including: Hosts: Windows 2008 R2, Ubuntu 10.04, RHEL 5.4, and more Guests: Fedora 12, Ubuntu 10.04, RHEL 5.4, SEL 11 SP1, and more.
      • Now includes built in Automatic Updates feature to check, download, and install VMware Workstation updates.
      • Ability to import and export Open Virtualization Format (OVF 1.0) packaged virtual machines and upload directly to VMware vSphere, the industry’s best platform for building cloud infrastructures.

        Download VMware Workstation HERE. You need a valid VMware Account to download.

      • VMWare Workstation 7 is vrijgegeven door VMWare

        VMWare heeft VMWare Workstation 7 vrijgegeven door VMWare.

        De volgende nieuwe OS worden ondersteund:
        – Windows 7 Home Basic
        – Windows 7 Premium
        – Windows 7 Business
        – Windows 7 Enterprise
        – Windows 7 Ultimate
        – Windows 2008 SP2, R2
        – Windows Vista SP2

        Nieuwe Features:
        – Windows 7
        – Aero
        – Windows XP Mode Compatible
        – 3D Graphics Verbeteringen voor Windows XP gasten
        – vSphere Support ESX 4.0 Overwegingen voor het draaien van een ESX gast.
        – Virtuele Printing
        – Four-way SMP
        – Guest 32GB Memory
        – 256-bit Encryption
        – AutoProtect
        – Advanced Linux Sound Architecture (ALSA
        – Cross-Platform License Keys
        – Pauzeer een Virtual Machine
        – Expand virtuele schijven
        – Compact virtuele schijven
        – Shared Folder Compatibiliteit
        – On-Demand VMware Tools Download
        – Drag and Drop Enhancements
        – Virtual Network Editor
        – Fuse Mount voor Linux
        – Vereenvoudigde Verzamelen van Informatie over ondersteuning
        – IPv6 Support

        Officiële Release Notos vind je HIER

        Server 2008 R2 bevriest in VMware ESX & ESXi

        Server 2008 R2 bevriest in VMware ESX & ESXi

        Er is een probleem met Windows Server 2008 R2 die draait op VMWare ESX 3.5 & 4.
        De oorzaak is de video driver zijn die geïnstalleerd wordt met de VMware Tools.

        Oplossing

        Bij het installeren van VMware Tools, selecteer Custom Install voor VMware Tools en schakel de SVGA driver uit.
        Als alternatief, verwijder de SVGA driver van de Device Manager na het installeren van VMware Tools.
        http://kb.vmware.com/kb/1011709

        Update
        Er is een nieuwe video driver in de laatste vmware tools. Na de VMWare Tools upgrade upgrade de SVGA driver naar de WDDM die te vinden onder C:\Program Files\Common Files\VMware\Drivers\wddm_video. Vink niet de SVGA videokaart driver uit anders moet de WDDM niet mee gekopieerd.

        Defragmenteer VMware Workstation Images

        Ik vond een handig scriptje op de site ICT-Freak.
        Ik een momenteel aardig wat vm’s draaien in VMworkstation.
        Alleen de vm’s beginnen aardig groot te worden. Met dit scriptje worden ze wat kleiner.

        Scriptje:

        function Defrag-allVMDKs{
        param([string]$path)
        $vdiskmanager = “C:\Program Files\VMware\VMware Workstation\vmware-vdiskmanager.exe”
        $parameter = “-d”
        $List = get-childitem $path -recurse | where {$_.extension -eq “.vmx”} |
        foreach-object -process { $_.FullName } | ForEach-Object {$_ -replace “.vmx”, “.vmdk”}
        ForEach($vmdk in $List)
        {
        echo $vmdk
        & $vdiskmanager $parameter $vmdk
        }
        }

        Defrag-allVMDKs <drive>\<path>

        VMware Workstation VMDK vergroten

        Je kunt de volgende commando gebruiken om vmdk te vergroten.

        “C:\Program Files (x86)\VMware\VMware Workstation\vmware-vdiskmanager.exe” -x 25Gb “Locatie van de vmdk file.”

        -x zorgt er voor de dat de vmdk vergroot tot het aantal GB wat je hebt opgegeven.

        Zolang het geen systeem volume is kun je volgende stappen gebruiken om het uit te breiden

        1. Start –> Uitvoeren
        2. CMD
        3. Diskpart
        4  List Disks
        5. List Volume
        6. select volume=x (X = Drive letter van het volume dat je wilt uitbreiden.)
        7. extend

        Advies is: Regelmatig de disk defragmenteren met de tool die VMware Workstation aanboord heeft scheelt je aardig wat ruimte.

        Windows Deployment Toolkit 2008 (MDT) testen VMWare Workstation

        Maak een Virtuele Machine aan OS Windows XP.
        Zorg dat deze een Disk heeft van 10GB en 512MB geheugen lager als 512MB dan werkt MDT niet.
        Voeg in de VMX file de volgende regel toe dan heb geen vmware drivers nodig
        ethernet0.VirtualDev = “e1000”
        Start de VM en boot van netwerk met PXE en druk dan twee keer op F12.

        clip_image002
        clip_image004

        clip_image006

        Voor nu laat ik het hierbij. Er komt nog een vervolg hier op met de deployen van Windows SP3 op de meest makkelijk en ideale manier.

        Windows 2008 Cluster met shared storage in VMware Workstation

        In VMware workstation heb je geen shared disk meer die je wel hebt in Virtuel Server 2005R2 wel hebt.
        Je kunt storage simuleren met Starwind of gebruik maken van Windows 2003 storage server.
        Je kunt met deze handleiding simpel een fail-over cluster simuleren.

        Windows Server 2008 ondersteund support Serial Attached SCSI (SAS), iSCSI en Fibre Channel disks als opslag opties. Aan het einde van deze heb een twee node cluster draaien met gedeelde iSCSI opslag.

        Wat je nodig hebt.

        · Windows Vista / XP / 2003 / 2008 pc server met 4GB geheugen dus de x64 versie.

        · Een Windows Server 2003 of Windows 2008 VM die fungeert als een domein controller

        · De domain controller inrichten met 3 VM harddisk 1 voor OS 2 voor Storage

        · Twee Windows 2008 Enterprise VM’s die als cluster gaan fungeren.

        · Zorg dat de 2 Windows 2008 Enterprise VM’s voorzien zijn van 3 NICS

        · Zorg dat op de twee Windows 2008 Enterprise VM’s de cluster management software is geïnstalleerd.

        · iSCSI software. Ik heb hiervoor RocketDevision StarWind waarvan een 30 dagen trail is te downloaden en je hebt een gratis versie maar die ondersteund maar 1 gelijktijdige connectie.

        Opmerking:
        Tijdens het maken van de cluster kun je een foutmelding krijgen: The operating system SKU is not compatible
        Hier heeft microsoft een Fix voor gemaakt http://support.microsoft.com/?kbid=950179
        Deze moet je downloaden en installeren.

        VIRTUAL NETWORK

        Ik heb 3 VLAN’s gebruikt om alles voor elkaar te krijgen.

        VLAN ids:

        • VLAN 2: Public 10.1.1.x/24
        • VLAN 3: Heartbeat 192.168.1.x/24
        • VLAN 4: iSCSI 192.168.2.x/24

        SERVER SETUP

        TIP: Hernoem elke netwerk kaart waar hij voor dient dus Public, Heartbeat, iSCSI

        Domain Controller: dc01

        • Windows Server 2003 x32 
        • 1 VHD IDE fixed size disk 10GB
        • 2 SCSI DISKS fixed 8GB
        • StarWind iSCSI Target Software
        • 1 x NIC connected to my Virtual Network in VLAN 2

        Netwerk Settings:

        • IP Address: 10.1.1.10
        • Mask: 255.255.255.0
        • Gateway: Niet nodig
        • DNS: 10.1.1.10

        Cluster Nodes:

        • Windows Server 2008 x64
        • 1 x VHD IDE fixed size disk 10GB
        • 3  x NICs geconnect naar de volgende VLANs
          • Public card: VLAN 2
          • Heartbeat card: VLAN3
          • iSCSI: VLAN4

        iSCSI NIC: VLAN 4

        • IP Address: 192.168.2.2
        • Mask: 255.255.255.0

        NODE1

        Public NIC: VLAN 2

        • IP Address: 10.1.1.20
        • Mask: 255.255.255.0
        • Gateway: NIET NODIG
        • DNS: 10.1.1.10

        Heartbeat NIC: VLAN 3

        • IP Address: 192.168.1.4
        • Mask: 255.255.255.0

        iSCSI NIC: VLAN 4

        • IP Address: 192.168.2.4
        • Mask: 255.255.255.0

        Opmerking: Zorg voor alle NIC’s die in VLAN 3&4 zitten dat Client voor Microsoft Netwerks uitgezet is. Zorg ook dat DNS registratie en Netbios ook uitgezet is. Zorg ook dat de Public NIC als eerste in de Binding order staat

        NODE2

        Public NIC: VLAN 2

        • IP Address: 10.1.1.21
        • Mask: 255.255.255.0
        • Gateway: NIET NODIG
        • DNS: 10.1.1.10

        Heartbeat NIC: VLAN 3

        • IP Address: 192.168.1.5
        • Mask: 255.255.255.0

        iSCSI NIC: VLAN 4

        • IP Address: 192.168.2.5
        • Mask: 255.255.255.0

        Opmerking: Zorg voor alle NIC’s die in VLAN 3&4 zitten dat Client voor Microsoft Netwerks uitgezet is. Zorg ook dat DNS registratie en Netbios ook uitgezet is. Zorg ook dat de Public NIC als eerste in de Binding order staat

        Opzetten van de Cluster

        Configureren van iSCSI target software (Starwind)

        · Install de StarWind Software op domein controller VM (Dit is toch maar test)

        · Open de StarWind Management console

        · Onder de Connections zie je localhost:3260
        Klik rechts op localhost and kies voor Connect. Standaard username vind je op de site van Starwind of de handleiding. Je kunt dit later wijzigen.

        clip_image001

        • Klik rechts op localhost:3260 en klik op add Device
        • Kies voor Disk Bridge Device als Device Type en klik op Next

        clip_image002

        clip_image003

        • Selecteer Asyncronous Mode en Allow multiple iSCSI connections (clustering) en klik op next 
        • Geef de harddisk een vriendelijke naam
        • Herhaal deze stappen voor de tweede disk

        De DISKS toevoegen aan de Cluster

        Elke cluster node moet gekoppeld worden aan de iSCSI target. Open de iSCSI initiator en volg de stappen hieronder.

        • Als je de melding krijgt om de Microsoft iSCSI service vrij tegen klik op op Yes anders gaat Windows poort 3260 blokkeren.
        • Klik op de Discovery tab en kies voor Add Portal.
        • Geef het IP address op voor de iSCSI target [192.168.2.2]

        clip_image004

        • Klik op de Targets Tab en je zou een lijst moeten krijgen van beschikbare hardschijven van de target.

        clip_image005

        • Voor elke harde schijf klik op LOG ON en zet een vinkje bij Automatically restore this connection
        • Klik op de Volumes and Devices en select Auto Configure. De harde schijven moeten gaan verschijnen als Devices
        • Herstart elk cluster node als je de harde schijven hebt toegevoegd.
        • De harde schijven zijn offline als je opnieuw opgestart hebt. Zorg dat de harde schijven online brengt in Disk Management.

        Als je klaar bent en de harde schijven hebt dan moet je dit in Starwind zien verschijnen.

        clip_image006

        Installeren van de Cluster

        De nieuwe cluster wizard is heel simpel en stelt niks voor.
        Microsoft heeft zelf hiervoor een mooi handleiding geschreven.

        Hier is de stap voor stap handleiding voor het installeren van twee node cluster in Windows 2008

        Translate »