Author

Rich

Just another IT guy.

Test Internet Speed on Linux Terminal

May 31, 2016

Instead of visiting sites like Speedtest.net through a browser, you can install speedtest-cli package on Linux and test bandwidth speeds from the command line. $ apt-get install speedtest-cli…

List VMFS extents in ESXi

May 13, 2016

Run the esxcli storage vmfs extent list command to generate a list of extents for each volume and mapping from device name to UUID. You see output similar to:…

IBM IMM KVM

May 11, 2016

IBM IMM Default Username: USERID Default Password: PASSW0RD Access KVM: http://<IP>/kvm/kvm/jnlp

Batch Script Add Windows Users using Netsh

May 6, 2016

The following batch script will add a group of users to Windows, set no password, and require a password change at first logon. @echo off setlocal enabledelayedexpansion set…

Monitor ESXi Free using SNMP

May 5, 2016

ESXi 4.1 and 5.0 Enable SNMP SSH to host and edit the SNMP.XML file: vi /etc/vmware/snmp.xml Make the following changes: <config> <snmpSettings> <enable>true</enable> <communities>public</communities> <targets>192.168.1.100@public</targets> </snmpSettings> </config> Restart management…

Use netsh to set interface IP static or dhcp

May 5, 2016

Get Configuration Info Using the command below, you can gather information on the adapter's current configuration. Make note of the connection name since that is what is used…

Join Nano Server to a Domain

April 28, 2016

To join my Windows Server 2016 Nano server to my test domain I used the djoin.exe (Domain Join) command. From a domain controller, or server already joined to my…

Create Nano Server Image

April 28, 2016

I was trying to build a Nano Server image (2016 Tech Preview 5) and kept getting the following error: Turns out that is because the documentation is not…

Test Dial on Modem in AIX

April 25, 2016

Had an issue with dialout on an AIX system this morning.  Problem resolved, but I learned a pretty handy little command for testing dial-out (I didn't have a…

Create a Hyper-V Template for a Windows VM

April 6, 2016

This is how I create various Windows VM templates in Hyper-V. Create a new Hyper-V Virtual Machine Choose the generation of the virtual machine to create Assign it…