Sie befinden sich in den Archiven der Kategorie VMWare.
| M | D | M | D | F | S | S |
|---|---|---|---|---|---|---|
| « Aug | ||||||
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | ||||
- Betriebsysteme (21)
- Hardware (12)
- Home (1)
- HOWTO / Guides (9)
- Microsoft (81)
- Performance Analyse (3)
- Programmieren (2)
- Projektmanagement (2)
- Tools (34)
- VMWare (10)
- Windows 2000 (11)
- Windows 2003 (14)
- Windows 2008 (30)
- Windows 7 (14)
- 25.8.2011: Authoritative Restore of Active Directory Objects
- 17.8.2011: User State Migration Tool GUI - MUST
- 12.8.2011: Auflisten von Änderungen eines Active Directory Objektes mittels "repadmin"
- 29.6.2011: PKI , Kerberos and Smart Cards
- 22.6.2011: Active Directory Domain member: Maximum machine account password age
- 16.6.2011: Export and import GPO from one domain to another
- 26.5.2011: Unable To Reconnect To Terminal Server In Application Mode
- 11.5.2011: How to use the EventCombMT utility to search event logs
- 5.5.2011: Phantoms, tombstones and the infrastructure master - Event ID 1419 generated on a domain controller
- 4.5.2011: Forest Trust - Name Suffix Routing
- August 2011
- Juni 2011
- Mai 2011
- März 2011
- Februar 2011
- Januar 2011
- Dezember 2010
- November 2010
- Oktober 2010
- September 2010
- August 2010
- Juli 2010
- Juni 2010
- Mai 2010
- April 2010
- März 2010
- Februar 2010
- Januar 2010
- Dezember 2009
- November 2009
- Oktober 2009
- September 2009
- August 2009
- Juli 2009
- Juni 2009
- Mai 2009
- April 2009
- März 2009
- Februar 2009
- Januar 2009
Archiv der Kategorie VMWare
VMWare Reference Card
7.2.2009 von Tim Wanierke.
Auf der folgenden Seite kann man die sehr nützliche VMWare Reference Card herunterladen. Auf dieser Webseite findet man unter anderem auch news, links und guides bez. VMWare.
Link: http://www.vmreference.com/
Link zur aktuellen VMWare Reference Card : http://www.vmreference.com/vi3-card/
Geschrieben in VMWare | Drucken | Keine Kommentare »
Extend the systemdisk of a virtual instance running on a ESX server
28.1.2009 von Tim Wanierke.
1. Install a virtual helper instance from a template.
2. Shut down the server which systemdisk should be extended.
3. Grow the VM disk via vmkfstools.
3.1 Commit or remove all snapshots.
3.2 Connect to the VMHost via putty.
3.3 Go the the directory where the VM file is placed ( /vmfs/volumes/vm_name/vm_name )
3.4 /usr/sbin/vmkfstools -X new_sizeG vm_name.vmdk
4. Add this disk to the helper instance.
5. Use diskpart to extend the partition of this disk.
5.1 diskpart <ENTER>
5.2 list volume <ENTER>
5.3 select volume “ID of volume” <ENTER>
5.4 extend <ENTER>
6. Shutdown the virtual helper instance.
( Because disks can’t be removed from running virtual machines )
7. Start the instance that systemdisk has been extended.
8. Destroy the virtual helper instance.
Geschrieben in VMWare | Drucken | Keine Kommentare »
Patching ESX 3.5 Using esxupdate
21.1.2009 von Tim Wanierke.
Just a quick guide to patching a standalone ESX 3.5 Server using esxupdate from the service console:
Download all available patches to your local computer from the following link:
(ALSO DOWNLOAD THE FILE CALLED contents.zip)
VMWare Patch Download Page
Link : http://support.vmware.com/selfsupport/download/
Decide where to place the patches in a partition with enough space to accommodate the patches on the target ESX Server. It is not recommended to use the root ( / ) partition at all. A good strategy is to create a directory called updates under the /var partition. To do so, log onto the service console of the ESX Server as the root user.
Then do:
mkdir /var/updates
Using a utility like Veeam FastSCP or WinSCP, copy all downloaded patches to the newly created directory on the ESX Server. One all the patches have been copied to the ESX Server, log on to the service console of the ESX Server as the root user.
Browse to the directory where the patches reside:
cd /var/updates
Now we need to unzip all the .ZIP files. Now, there should be quite a few files, so it would be painful to unzip them one-by-one, so we are going to use a “for” loop to do the trick for us.
To unzip all the .ZIP files in one go, execute the following command.
MAKE SURE YOU ARE IN THE DIRECTORY WHERE THE ZIP FILES RESIDE! ALSO MAKE SURE TO TYPE THE COMMAND EXACTLY AS BELOW, EVEN WITH THE x_file!
for x_file in *.zip; do unzip $x_file; done
This command will unzip all the zip files, each in its own directory, except for contents.zip, which will be unziped into the directory where the command was executed from. In this case /var/updates.
Now, in order to perform patching operations on an ESX Server, the server needs to be in “Maintenance Mode”. This means that all Virtual Machines on the server will have to be powered off.
Make sure all Virtual Machines are powered off, then place the ESX Server in Maintenance Mode. You can do this using the Virtual Infrastructure Client or by simply executing the following command from the service console: (Must be run as the root user. Note that as far as I’m aware, this command is not supported by VMware Support but does work perfectly well):
vimsh -n -e /hostsvc/maintenance_mode_enter
Once the ESX Server is in Maintenance Mode, we can start esxupdate and apply the patches:
cd /var/updates
esxupdate -d /var/updates/ scan
esxupdate -d /var/updates/ update
After the patches are applied to the server, the server will reboot. To exit Maintenance mode, run the following command:
vimsh -n -e /hostsvc/maintenance_mode_exit
Geschrieben in VMWare | Drucken | 1 Kommentar »