House Hunting

We looked at three open houses in Waterloo yesterday, as we’re thinking about upgrading from our little ranch to something a bit more spacious.

The first house we looked at had a lot of character, though it was really showing its age in places.  The somewhat-finished area in the basement had a sagging ceiling that was somewhat alarming, and the floors all squeaked loudly.  The upstairs bathroom and the kitchen had been remodeled, though, as the women said “by a man” as they’re somewhat ugly and don’t fit the house at all, so would need to be redone if you had taste…  The lot was small, so not a lot of grass to mow, and while it’s on perhaps the nicest street in town, the houses around it are very close and not anything grand…

The second house we looked at is actually on the same street, though farther down where it loses its boulevard status.  It’s friggin’ huge, a great sprawling ranch house.  The basement, though very dated, has a big bar in it, as well as a bedroom with egress window.  Upstairs there’s a nice four-season room, family room, and a huge living room.  It had a great entryway, and a very spacious kitchen as well.  You can tell this was a very very nice home when it was built in the 1950s, but a lot of the home still feels like that era, and not in a good way.  The brick work is very dated, including the triangle-styled cement block that probably was very cool back then, but just sticks out now…

The third house we looked at was also a monster, lots of space inside, with extremely high amounts of storage space.  Every single bedroom has a walk-in closet, some of them big enough to park a car inside.   Out back, there is a HUGE newish shed/workshop with almost 800 square feet of space alone, though it’s not currently heated or insulated.  There’s a big addition on the back with a long family room and a fireplace at the end, but it felt like it was sort of done cheaply, and you felt kind of isolated from the rest of the house while you were there.  There was a first-floor laundry, which was nice, but a lot of bathrooms in need of TLC, and basically every floor surface in the house needed to be redone.  The wood at the entry way was spongy underfoot, and what looks like tile in the photos actually seems to be the peel ‘n stick squares, used throughout the first floor…

We haven’t found anything we love yet, so the hunt continues!

More amusing voicemail transcriptions

"On all three Supreme Court Justice is up for retention in addition. I'd like her to go to judge a bus.com and join our bus to work across the state at a location near you and finally join me on Thursday, October 28 on the steps of the Iowa Supreme Court building as we voice our opinion. Collectively that we're voting no against the judges were standing up for freedom and for traditional marriage. One man one wallet. Again this is Bob grandpa, file for freedom. It's paid for by pilot family policies that are actually much to hear this message. Again please press one now. If we can count on you to vote no on all three Supreme Court Justices. Please press two now. Thank you. This call was paid for by Iowa family policy Center in action. Reach you "

How to install NetBackup 7.0 on Ubuntu 10.04

NetBackup 7 officially “supports” Ubuntu Linux 8.04, 9.04, and 10.04 for Linux clients, as seen in the Software Compatibility List but the installer doesn’t “work”.

Specifically, the problem seems to be that PBX, or Private Branch Exchange, is distributed in an RPM package along with the client.  The normal shell script that installs the client kicks an error when PBX fails to install:

Installing PBX... ./installpbx: 1510: rpm: not found
 ERROR: Could not install VRTSpbx package
 Please see installation log for more details
 Installation log located here: 
/var/tmp/installpbx-1928-100810135211.log

 Installing PBX was unsuccessful.
 Aborting ...

Opening the next log reveals more:

[10-08-10-13:52:11] Extracting 
/var/tmp/VRTSpbx_1928/PBX.tar.gz into 
/var/tmp/VRTSpbx_1928
[10-08-10-13:52:11] Installing/Upgrading private branch 
exchange on Linux
[10-08-10-13:52:11] Checking for the PBX process...
[10-08-10-13:52:11] PBX process is not running.
[10-08-10-13:52:11] rpm -U --nodeps --nopostun --nopreun
/var/tmp/VRTSpbx_1928/VRTSpbx-1.4.0.10-10.RH_x86_64.rpm
./installpbx: 1568: rpm: not found
[10-08-10-13:52:11] ERROR: Could not install VRTSpbx 
package
[10-08-10-13:52:11] Removing temporary directory
[10-08-10-13:52:11] rm -rf /var/tmp/VRTSpbx_1928
[10-08-10-13:52:11] installpbx exiting with return 
code: 1
[10-08-10-13:52:11] Please see installation log for more 
details
[10-08-10-13:52:11] Installation log located here:
/var/tmp/installpbx-1928-100810135211.log

As this isn’t Red Hat, rpm is not present on the system, nor would it work if it was…

With the help of the folks at Symantec, here’s what will get around this problem and help you install the client.  Hopefully they’ll put this online in a tech note soon, but I’m guessing I’m not the only person who ran into this problem, so here are my notes.  I am not a Linux wizard, by any means, but here are the required steps to make this work.  This also requires you to install alien, a package that’ll let you install rpm packages on Ubuntu:

 

Get the giant 7.0 client tarball and copy it to your server.  I downloaded mine from FileConnect.

gunzip NetBackup_7.0_CLIENTS_GA.tar.gz.gz

tar xvf NetBackup_7.0_CLIENTS_GA.tar.gz

cd NB_7.0_CLIENTS_GA/NBClients/anb/Clients/usr/openv/netbackup/client/Linux/RedHat2.6

sudo mkdir /tmp/pbx

sudo cp PBX.tar.gz /tmp/pbx

cd /tmp/pbx

sudo gzip -dv PBX.tar.gz

sudo tar xvf PBX.tar

sudo apt-get install alien

sudo alien -i --scripts VRTSpbx-1.4.0.10-10.RH_x86_64.rpm
(you will see lots of errors, you can ignore them)

Then start PBX on the CLIENT:
sudo /opt/VRTSpbx/bin/vxpbx_exchanged start

sudo nano NB_7.0_CLIENTS_GA/NBClients/anb/Clients/usr/openv/netbackup/client/Linux/RedHat2.6/cp_to_client

Comment out lines 1723 - 1732 by inserting a # at the start of the line (use Control-W in nano to search for PBX to help locate this):

  1723 #       ${ECHO} " 
  1724 #Installing PBX..." 
  1725 
  1726 #       ${SOURCE_DIR}/installpbx -f PBX.tar.gz 
  1727 #       if [ $? -ne 0 ] ; then 
  1728                 ${ECHO} " 
  1729 #Installing PBX was unsuccessful. 
  1730 #Aborting ..." 
  1731 #               exit 1 
  1732 #       fi

Hit Control-X to save and exit.

Then execute the "install" script in /NB_7.0_CLIENTS_GA

Success!

You can then normally patch the client to version 7.01, as that won’t require you to use any RPM-based packages.  I've also heard that installing version 6.5.4, then upgrading from there to 7.0 will work too, as that version of PBX will install ok, but I haven’t tried it.

Amusing voicemail transcription

Received this transcription from my Vonage voicemail. All you need to know is in the first six words. :)

"Hi this is Ben lying candidate for United States Congress running against the liberal Democrat and incumbent Bruce Braley. I'm hosting a live telephone town hall. Right now. To talk about how you and that I can put our country back on the right track towards greater freedom and prosperity for Eastern Island. If you're listening to this message. Live right now and like to join this free call press one on your phone. Otherwise I'm sorry I missed you since we said Bruce Brody Washington. The national debt has exploded over $13 trillion in unemployment has more than doubled from 4.6% to 9.5% on November 2. Voters will need to decide whether we send the same politicians back to Washington in hopes for different results or whether it's time to send a message and put a check in balance on the Obama administration. Please "