1. Delete all Snapshots or you can’t resize the disk
2. Shutdown Guest System
3. Go into Guest Properties and increase the disk size
4. Start Guest System
5. Create a Snapshot again
Windows Server Resize Partition
1. Download and install Diskpart from the Microsoft Webpage
2. Go into Command Console
3. Type: Diskpart
> LIST DISK
> SELECT DISK 0 [replace number with the disk you want to extend]
> LIST VOLUME
> SELECT VOLUME 1 [replace number with volume you want to extend]
> extend
Windows XP Resize Partition
Unfortunately Diskpart didn’t work for my Windows XP Version even it suppose to be supported. Anyway after try and error I found a good open source Partition Manager like Partition Magic. It is called GParted and It is based on Linux and does a great job. You can get it here: http://gparted.sourceforge.net/
admin on May 11th 2010 in VMWare, Windows, Windows Server
1. Install Kernel Heaeders
- Get the Kernel version and remember it with:
uname-r
- apt-get install linux-headers-[Kernel Version]
2. Install VMWare Tools
- Choose “install and upgrade VMWTools in VMWare” in your VM menu
- mount /dev/hda /media/cdrom
- cd /media/cdrom/
- cp VMWareTools[whateverversion]tar.gz /tmp/
- cd /tmp
- tar xvzf VMWareTools[whateverversion]tar.gz
- umount /media/cdrom/
- cd /tmp/vmware-tools-distrib/
- make a symlink:
ln –s /usr/src/linux-headers-[Kernel Version] /usr/src/linux
- apt-get install gcc-4.1
- change using gcc version:
export CC=/usr/bin/gcc-4.1
- I had make and killall missing on my installation so can you get it:
apt-get install psmisc make
- ./vmware-install.pl
3. Uninstall VMWare Tools
After a failed installation of VMWare Tools I got following message:
A previous installation of VMWare Software has been detected… You may want to re-install VMWare Tools.
The solution was to run the uninstaller first and run the VMWare setup again:
1. ./vmware-uninstall.pl
admin on February 2nd 2010 in Linux, VMWare
Today I had to add a second virtual network in VMWare. Unfortunately I didn’t find any option first. To do this you need to actually power off the VMWare Host. Then go the settings of the VMWare Host. Click on Add Ethernet Card and confirm everything. Startup OS again.
admin on May 26th 2009 in IT, VMWare