Advertisement Header

Saturday, 5 September 2009

To View Delta & Snapshot files through CUI in ESX Server

ls -R /vmfs/volumes/VMFS* | grep delta

&

ls -R /vmfs/volumes/VMFS* | grep Snap

Files required to use Windows Update are no longer registered or installed on your computer

Solution:
This problem can be corrected by re-registering the various dll files that Windows Update requires to run.

To do this firstly click on the “Start” button then “Run” and enter the following command into the “Run” dialog box

· regsvr32 wuapi.dll

You should then receive a message to say it was successful. The above process then needs to be done for each of the following commands:-

· regsvr32 wups.dll
· regsvr32 wuaueng.dll
· regsvr32 wucltui.dll
· regsvr32 atl.dll
· regsvr32 msxml3.dll

Sunday, 9 August 2009

To MOUNT an ISO image in Linux

mount disk1.iso /mnt/iso/ -t iso9660 -o ro,loop

(or)

mount -o loop disk1.iso /mnt/iso/

(Ex:- mount -t iso9660 -o loop /opt/Software_Dumps/RHEL4.7-x86_64-AS-DVD.iso /mnt/local/ )

disk1.iso - The image you want to mount
/mnt/iso/ - Mount Point

Thanks & Regards
Sravan Kumar E