JessWatts.com

If Want() Then Do()

Beat the Heat - Too hot for Zion?

June 12th, 2009 by wattsup

Well the average temperature for any given mile along our proposed route to Zion, UT is about 94 degrees F. me that’s hot! If we were moving the entire time it would be warm winds on damp pits at best. I want to really enjoy this route and these miles. That is why I suggest we do Zion in the fall or earlier next spring.

So what now? After coming across the site http://www.motorcyclecolorado.com that is an easy answer.

Some of the best routes through Colorado (including maps, camping, and pics). Some great camping info along those routes (including camp site pics). Plus hotels, motorcycle shops, attractions, etc. Tons of great detailed info. Ken Bingenheimer has done his homework and I’m going to copy from his paper!

This weekend we should have a route including campsites picked out.

Beat The Heat Route

View in Google Maps


BTH 0609

Day 1 - 388 mi (Hometo Creede)
Camping : Marshall Park Campground

Day 2 - 217 mi (Creed to Telluride)
Camping : Sunshine Campground

Day 3 - 290 mi (Telluride to Paonia State Park)
Camping : Hawsapple Campground

Day 4 - 153 mi (Paonia State Park - Steamboat Springs)
Camping : Meadows Campground

Day 5 - 167 mi (Steamboat Springs - Home)

Category: Motorcycle | 1 Comment »

Resize vmdk in VM Workstation

May 15th, 2009 by wattsup

Thanks to Richard Young for this info:

Expanding the virtual hard disk

* Shut down the Debian virtual machine.
* Start a DOS session (Command prompt for the younger readers).
* Change directory to where you have installed VMware workstation. In my case, this was “C:\Program Files\VMware\VMware Workstation”
* The vmware-vdiskmanager.exe command requires two parameters;
o The size you want to expand the virtual disk to. You can specify the amount in GB. i.e. 20GB
o The path to the Virtual Machines .vmdk file. i.e. “c:\Virtual Machines\Debian\Disk1.vmdk”
o The final command for my needs (Ignore the word wrap, this should be on one line only) is;

vmware-vdiskmanager.exe -x 20GB “c:\Virtual Machines\Debian\Disk1.vmdk”

Obviously your command line should reflect your particular requirements!

Category: IT | No Comments »

Happy Jack Weekend Bachelor Party-o-rama

May 15th, 2009 by wattsup

That’s right! Bachelor Party-o-rama. Sure it’s just me and a best man camping and mountain biking in Wyo just like any other weekend but this is the last time I’ll do it as a Bachelor! Next biking/camping trip I’ll be a married man.

Anyway, enough about me.. the Laramie Enduro 75 mile mountain bike race takes place August 1st and I am no where near ready! So.. this weekend we will be scouting the route and perhaps partying a little bit in the woods.

Pics to come!

Course Map here

Category: Mountain Bike | No Comments »

ESX Web Access - Manage users, roles, permissions and Active Directory

May 14th, 2009 by wattsup

One great thing about running an ESX server is managing it through VIC or the included web client. The great thing about VIC and the web client is you can create users and roles and delegate administrative task to other people.

By default, the users you create are users on the ESX server. You can integrate these users with Active Directory eliminating the need to manage multiple passwords for the same user.

In this scenario we want to create on user, vmglobal, that can reset any VM on one ESX host. If you wanted, you could create multiple users that had access to only specific VMs. For now, vmglobal is all we need so that anyone can reset their VM.

Step 1 - SSH into the ESX console. Verify the date and time are accurate within 5 minutes of your DC. You can do this by running:


date

If you need to set up a time server on the ESX host you can point it to your DC or an external time server.
This can be done via the CLI or directly from the VIC. If you connect to the ESX host with VIC and go to the Configuration tab of the ESX host and choose Time Configuration you can setup and verify the time server. You will also want to make sure NTP is allowed through the firewall which can be done on the Configuration tab under Security Profile.

Step 2 - enable and configure Active Directory integration

Run the following to configure Active Directory integration:


esxcfg-auth –-enablead –-addomain=yourdomain.com –-addc=yourdc


For addc you can put the IP of your DC

Step 3 - configure the firewall to allow Active Directory integration

Run the following to configure the firewall:


esxcfg-firewall -openport 88,tcp,out,KerberosClient
esxcfg-firewall -openPort 464,tcp,out,KerberosPasswordChange
esxcfg-firewall -openport 749,tcp,out,KerberosAdm

You can verify the open ports you have by running


esxcfg-firewall -q

Step 3 - Restart the firewall


service firewall restart

Step 4 - Creating the user

Some see this next step as an inconvenience. You are not automatically able to log in at this point. For one, you still need to assign a role to your domain user. And two, you have to create a user on the ESX host with the same name as your domain user. Seems a little redundant. In my opinion it would be great if at this point you were able to query your domain for the users. I’m looking into this now. Until then:


useradd domainuser

You don’t need to create a password as it will integrate with AD and retrieve the password. Now you just need to assign permissions to this user. Hopefully updates to come.

Category: IT | No Comments »

sub-process usr bin dpkg returned an error code 1

May 13th, 2009 by wattsup

When trying to upgrade, remove, install proftpd I received sub-process /usr/bin/dpkg returned an error code 1


apt-get -f install proftpd

and


apt-get upgrade

both failed.

The solution that worked for me was


remove /var/lib/dpkg/info/*proftp*

and


remove /var/cache/apt/archives/*proftp*

then


apt-get -f remove proftpd

and


apt-get -f install proftpd

Category: IT | No Comments »