20
Jan
Posted by admin in VCP study notes, Virtualization | No Comments
Know your way around in the vCenter GUI. There are some questions in the VCP4-test regarding what options you have different places in the GUI. Go through all menus and options, and know what they are there for.
An example could be: What is the default setting for “Default cluster settings” under VM monitoring in the HA-configuration?
1: Low
2: Medium
3: High
Check the answer out here
12
Jan
Posted by admin in Virtualization | No Comments
Check out this blog post from Jeroen van de Kamp. Alot of thing to consider when virtualizing TS/citrix workloads. Also handy in a VDI-environment.
17
Dec
Posted by admin in Virtualization | No Comments
Check out this forum post. Alot of usefull things and considerations.
14
Dec
Posted by anh in Virtualization | No Comments
First of all, know your maximums! Its not that big a part of the test but its is easy point if you can memorize them. Memorize this whitepaper and take the the practice exams that on Simon Long’s blog until you get them 100% right. That helped me alot.
11
Dec
Posted by anh in Virtualization | No Comments
I passed my VCP4 today
Pretty difficult test.
1
Dec
Posted by anh in Virtualization | 1 Comment
24
Nov
Posted by admin in Virtualization | No Comments
Power issues
23
Nov
Posted by admin in VMWare, Virtualization | No Comments
I am gonna upgrade out ESX4-hosts to u1 and i came across this problem. One of the VMs would not vmotion to another host. I am getting this error
“Migrate virtual machine ubuntu02.domain.tld The operation is not allowed in the current state.”
The thing that was wierd was, that it was only that VM that had the problem. The CPU and memory-usage counter showed 0. So i tried reinstalling vmware tools and reboot. Nothing helped.
I found the solution here
service mgmt-vmware restart
and
service vmware-vpxa restart
solved the problem
16
Nov
Posted by admin in Linux, VMWare, Virtualization | No Comments
I had to add another harddrive to a test VM and wondered how to take advantage of thin provisioning in linux. On Windows VM’s you have to do a “Quick Format” to use thin provisioning. Here is what you do on a linux (ubuntu) VM.
- Shutdown the VM (if you dont have Hotadd-feature licensed)
- Add a new harddrive with thin provisioning
- Start the VM
- Log in
- Check the dmesg to find the devicename of the new harddrive ( in my case /dev/sdb )
- sudo mkfs.ext3 /dev/sdb (use another mkfs-command to use the filesystem of your choise)
- /dev/sdb is entire device, not just one partition!
Proceed anyway? (y,n) y
- Wait for it to finish
- Mount the harddrive (sudo mount /dev/sdb /home/newharddrive)
9
Nov
Posted by admin in Linux, VMWare, Virtualization | No Comments
This is the way it worked for me
- Upgrade all apps (sudo apt-get update && sudo apt-get upgrade)
- Reboot
- Upgrade the kernel (sudo apt-get dist-upgrade)
- Reboot
- Install new kernel headers ( sudo apt-get install linux-headers-`uname -r` )
- Choose “Install/update vmware tools” in the VI-client
- Mount the CD (sudo mkdir /mnt/cdrom && sudo mount /dev/cdrom /mnt/cdrom )
- Copy the tar to your homefolder ( cp /mnt/cdrom/VMwareTools-x.x.x-yyyyyy.tar.gz /home/username)
- Untar (cd /home/username && tar zxvf VMwareTools-x.x.x-yyyyyy.tar.gz)
- Install the upgrade (sudo /home/username/vmware-tools-distrib/vmware-install.pl)
- Follow the instructions on the screen
- Reboot
Done