December 2011
25 posts
3 tags
Dec 26th
2 tags
Dec 25th
2 tags
Dec 24th
2 tags
Dec 23rd
3 tags
Dec 22nd
3 notes
1 tag
Dec 21st
1 note
1 tag
Dec 20th
1 tag
Dec 19th
3 tags
Dec 18th
1 note
3 tags
Dec 17th
1 note
3 tags
Dec 16th
2 tags
Dec 15th
2 tags
Dec 14th
2 tags
Dec 13th
2 tags
Checking disk space usage on a VMFS volume of an...
VMWare has a great article about checking disk space on a VMFS volume in the command line.  My favorite command is vdf -h, which puts the free space into more human-readable format (pictured).
Dec 12th
7 notes
2 tags
Dec 11th
3 tags
Disable IPv6 with a script
I like this script that Misha put together to quickly disable IPv6 on all interfaces: @Echo off @ECHO Windows Registry Editor Version 5.00 > %TEMP%\DisableIPv6.reg @ECHO [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters] >> %TEMP%\DisableIPv6.reg @ECHO "DisabledComponents"=dword:000000ff >> %TEMP%\DisableIPv6.reg REGEDIT /S %TEMP%\DisableIPv6.reg
Dec 10th
5 notes
3 tags
Ping with timestamp in Mac OS X
This article shows the commands for doing a ping with timestamp on a Mac.  The basic command is: ping 10.0.0.1 | while read line; do echo `date` - $line; done
Dec 9th
3 notes
2 tags
Dec 8th
2 tags
Using iPerf to measure bandwidth quality between... →
Dec 7th
2 notes
2 tags
Dec 6th
2 tags
Set Windows Server 2008 R2 to sync to an external...
Thanks to this site, synching Server 2008 R2 to an external NTP server isn’t too bad.  Here’s what the commands boil down to: net stop w32time w32tm /config /syncfromflags:manual /manualpeerlist:0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org w32tm /config /reliable:yes net start w32time w32tm /query /configuration
Dec 5th
3 tags
Dec 4th
13 notes
Dec 3rd
2 tags
Dec 2nd
1 note