thinking sysadmin

qstat -u aleonard -s z

Archive for the ‘patching’ tag

Quick and Dirty VMware ESX Patching

leave a comment

On the ESX console, do the following:

  • Read the documentation for each patch.
  • Group patches that can be installed together into a directory, possibly an NFS mount available on all your ESX hosts.
  • Cd into the patch directory and untar the patches:

    for i in `ls *.tgz`; do
    tar -xvzf $i
    done

  • Install the patches:

    for i in `ls`; do
    if [ -d $i ]; then
    cd $i
    esxupdate --noreboot update
    cd ..
    fi
    done

  • Reboot.

Written by Andy

July 31st, 2008 at 1:41 pm

Posted in security, virtualization

Tagged with , ,

What is up with VMware’s patch download applet?

leave a comment

Am I the only one that hates VMware’s patch download site and its corresponding applet? (Maybe – I couldn’t find anyone complaining about it looking quickly on VMware’s message boards, which I found most odd.) I’ve never been able to get it to launch under Firefox, only under IE (even on the same machine with the same JVM). And when it does launch, it is slow as molasses.
Read the rest of this entry »

Written by Andy

June 27th, 2008 at 10:56 am

Posted in virtualization

Tagged with , , , , , ,