<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Matthew Marlowe&apos;s Blog</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/" />
    <link rel="self" type="application/atom+xml" href="http://www.deploylinux.net/matt/atom.xml" />
    <id>tag:www.deploylinux.net,2009-10-12:/matt/4</id>
    <updated>2010-07-21T13:49:45Z</updated>
    <subtitle>A dumping ground for stuff that won&apos;t fit in twitter&apos;s 140 char limit. See http://www.twitter.com/deploylinux</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Pro 4.32-en</generator>

<entry>
    <title>If you are running ipv4 only network with local nameservers and starting to see problems with ipv6 DNS</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2010/07/#000067" />
    <id>tag:www.deploylinux.net,2010:/matt//4.67</id>

    <published>2010-07-21T12:55:44Z</published>
    <updated>2010-07-21T13:49:45Z</updated>

    <summary><![CDATA[Problem is caused by someone or some committee deciding that "gosh darn it! we can make ipv6 adoption go much faster if we bug the hell out of the ipv4 only network admins".&nbsp; &nbsp;&nbsp;&nbsp; So they did......On latest versions of...]]></summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<font style="font-size: 1.25em;"><i>Problem is caused by someone or some committee deciding that "gosh darn it! we can make ipv6 adoption go much faster if we bug the hell out of the ipv4 only network admins".&nbsp; </i></font><br /><br /><br />&nbsp;&nbsp;&nbsp; <u>So they did.</u>.....<br /><br /><br /><br /><b>On latest versions of RHEL</b>, not only do you get ipv6 enabled by default, all dns requests go to ipv6 first, even if think you have told server it should process ipv4 only&nbsp; That means that if a particular domain has a large set of nameservers, it is possible in certain circumstances for your critical app which is trying to get a simple ipv4 ip will end up waiting while each nameserver is checked one by one for an ipv6 response.....which can take a really really looooooooong time.<br /><br /><br /><br /><br /><b>Step 1</b>: verifying what is going on -- use dig to query the nameservers directly for AAAA responses (if all the nameservers are responding refused), you got a candidate.<br /><br />example: dig api-read.facebook.com/AAAA/IN @glb01.sf2p.tfbnw.net<br /><br /><br /><br /><br /><b>Step 2</b>: use "getent ahostsv4 hostname" and "getent ahostsv6 hostname" to confirm it is the ipv6 queries that are causing the problem.<br /><br />You may also see something like the following in named (even though you have forwarding disabled):<br /><br />named[2837]: FORMERR resolving 'api-read.facebook.com/AAAA/IN': 69.63.176.101#53<br /><br /><br /><br /><br /><b>Step 3</b>: redhat does provide a few solutions here (thankfully), but it is not as straightforward as it should be.<br /><br />I assume you already have NETWORKING_IPV6=no in /etc/sysconfig/network.<br /><br />You may even have been smart and put the following /etc/modprobe.conf:<br /><br />alias net-pf-10 off<br />alias ipv6 off<br /><br />And, of course, you've turned off all ipv6 daemons including iptables6.<br /><br />No, that is not enough, it is very easy for ipv6 to be forced to load, especially in RHEL 5.5.&nbsp; You probably also need to create the file /etc/sysconfig/disable-ipv6 with the contents:<br /><br />options ipv6 disable=1<br /><br /><br /><br /><br /><b>step 4</b>: pretend you're running a windows box that needs its daily reboot, go ahead.<br /><br />When system comes back up, do lsmod&nbsp; | grep ipv6 ..and the ipv6 module should not be loaded.<br /><br />Run getent ahosts hostname and see ipv4 only results come up very fast.<br /><br /><br /><br /><b>If you're still seeing problems</b>, review lsmod to see what is forcing ipv6 to load and you may need to perform magic on your dns servers too -- such as adding to /etc/named.conf:<br /><br />listen-on-v6 { none; };<br /><br />Adding "-4" to the options field in /etc/sysconfig/named.<br /><br />Restart named. <br /><br />Performing steps above to kill ipv6 completely&nbsp; on the local resolving dns servers.<br /><br />Note: RedHat has their own technote about the problem here at:&nbsp; <a href="http://kbase.redhat.com/faq/docs/DOC-17904">http://kbase.redhat.com/faq/docs/DOC-17904</a> .&nbsp; <br /><br />I suspect this is more specific to RHEL 5.4 than 5.5 &nbsp;&nbsp; RHEL 5.5 does seem to do the right thing when you go through the numerous hoops to disable the ipv6 module. <br /><br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>DeployLinux DNS Configuration - May 2010</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2010/05/#000066" />
    <id>tag:www.deploylinux.net,2010:/matt//4.66</id>

    <published>2010-05-22T06:48:37Z</published>
    <updated>2010-05-22T07:28:13Z</updated>

    <summary><![CDATA[The primary authoritive DNS nameserver for our client domains is:&nbsp;&nbsp;&nbsp;&nbsp; thepostman.deploylinux.netThis is because unlike everyone else, I thought thepostman was a good movie.Our secondary nameservers are:&nbsp;&nbsp;&nbsp;&nbsp; consul.deploylinux.net&nbsp;&nbsp;&nbsp;&nbsp; centurion.deploylinux.net&nbsp; &nbsp;&nbsp; ns5.dnsmadeeasy.com&nbsp; &nbsp;&nbsp; ns6.dnsmadeeasy.com&nbsp; &nbsp;&nbsp; ns7.dnsmadeeasy.com&nbsp;&nbsp;&nbsp; Thepostman, consul, and centurion are located...]]></summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[The primary authoritive DNS nameserver for our client domains is:<br /><br />&nbsp;&nbsp;&nbsp;&nbsp; <b>thepostman.deploylinux.net</b><br /><br />This is because unlike everyone else, I thought thepostman was a good movie.<br /><br />Our secondary nameservers are:<br /><br /><b>&nbsp;&nbsp;&nbsp;&nbsp; consul.deploylinux.net<br /><br />&nbsp;&nbsp;&nbsp;&nbsp; centurion.deploylinux.net<br /><br />&nbsp; &nbsp;&nbsp; ns5.dnsmadeeasy.com<br /><br />&nbsp; &nbsp;&nbsp; ns6.dnsmadeeasy.com<br /><br />&nbsp; &nbsp;&nbsp; ns7.dnsmadeeasy.com</b><br />&nbsp;&nbsp;&nbsp; <br />Thepostman, consul, and centurion are located within our San Diego datacenter and also provide responses to recursive dns queries made from virtual machines.<br /><br />The three dnsmadeeasy name servers are geographically distributed and built to handle significant DoS attacks.&nbsp;&nbsp;&nbsp;&nbsp; The combination of both local and distributed servers allows us to maximize reliability w/o depending on any single platform.<br /><br />To migrate a domain to DeployLinux hosted DNS, clients should:<br />&nbsp;&nbsp;&nbsp;&nbsp; a) first open a ticket within our support portal at https://support.deploylinux.net/<br />&nbsp;&nbsp;&nbsp;&nbsp; b) DeployLinux techs will verify that a new zone file is created for your domain and that any prior records are transfered.&nbsp; If you desire, we may also migrate your domain to our domain registry and handle all future domain renewals on your behalf.<br />&nbsp;&nbsp;&nbsp;&nbsp; c) Update their domain register to point domains to the nameservers above.<br /><br />Future changes to DNS should also be handled by opening up support tickets.<br /><br />DeployLinux does also provide domain registration services at a flat rate of $15/yr/domain.&nbsp; We realize this is a little more expensive than $7.99 at godaddy/etc, but in our experience the cheaper domain registration vendors tend to have reliability issues which result in at least a few hours/yr of domain downtime.&nbsp; &nbsp; They may also have limits of how popular your site can get and how many dns responses they will process.&nbsp;&nbsp; The $15/yr flat rate allows us to host the largest sites w/o any additional charges and with personal support/service.<br /><br />Our hosting clients typically receive a limited number of free domain registrations and DNS hosting w/ each VM.&nbsp; Note that information above is specific to .com domains.&nbsp;&nbsp;&nbsp; Other domain extensions may have different handling and rates.<br />]]>
        
    </content>
</entry>

<entry>
    <title>Thoughts on Dell R810/R910 announcements</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2010/03/#000062" />
    <id>tag:www.deploylinux.net,2010:/matt//4.62</id>

    <published>2010-03-30T20:58:20Z</published>
    <updated>2010-03-30T21:03:36Z</updated>

    <summary>Good:R810 2U form factor w/ 32 possible cores (4 x 8) is extremely compelling512GB max ram across 32 dimm slots in 2U ..wow. niceWill probably start using ram raid in futureOverall design of the R910 seems amazing, very tempting16 SAS...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<br /><b>Good:</b><br />R810 2U form factor w/ 32 possible cores (4 x 8) is extremely compelling<br />512GB max ram across 32 dimm slots in 2U ..wow. nice<br />Will probably start using ram raid in future<br />Overall design of the R910 seems amazing, very tempting<br />16 SAS drives in the R910 great<br />10 pcie slots in R910 ideal<br /><br /><b>Bad:</b><br />2 broadcom gigE in R810 annoying, should have been intel dual 10 gigE.<br />H200 default raid controller -- does not support non dell disks??<br />lack of info on how the 2-&gt;4 cpu socket occurs on R810, any limitations?<br />need more info on cooling of R810 in maxed out config<br />prior history suggests 4U are impossible to rackmount w/ 1 person<br />considering going 2U box only going forward due to safety/per-unit cost reasons<br />1100W power supplies :(<br />Looking for info on weight of new boxes...<br /><br /><b>Unsure</b>:<br />1TB ram for R910??<br />]]>
        
    </content>
</entry>

<entry>
    <title>Trying to get rid of a bunch of miscellaneous used cisco, datacenter, and office equipment</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2010/02/#000061" />
    <id>tag:www.deploylinux.net,2010:/matt//4.61</id>

    <published>2010-02-09T00:15:22Z</published>
    <updated>2010-03-01T16:10:00Z</updated>

    <summary> We have a moderate amount of gear that was removed from production at our datacenter or corporate office over the last few years that has been waiting in boxes to be sold when he had time to get around...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<h1 class="q"><br /></h1>
            <p class="q-details">
We have a moderate amount of gear that was removed from production at
our datacenter or corporate office over the last few years that has
been waiting in boxes to be sold when he had time to get around to it.
I'll be putting together an exhaustive list over the next few weeks,
but here are some items to start with:
<br />

<br /></p><ol><li>Genuine Cisco VWIC2-2MFT-T1, Qty 2<br /></li><li>Genuine Cisco 2811 Router w/ upgraded ram+flash (See Specs in 2/11 Update Below)&nbsp;</li><li>HP ProCurve 2626&nbsp;</li><li>Avocent Autoview 2030&nbsp;</li><li>Kingston Rackmount Ultra SCSI Storage Array&nbsp;</li><li>Snap Server 210 ( 2 * 700GB, GuardianOS 5.2.056)<br /></li><li>Snap Server 2200 (2 * 400GB, SnapOS 4.0.860)<br /></li><li>Several Adaptec UltraSCSI Adapters&nbsp;</li><li>Intel 1000PT Dual Port PCIe GigE NICS Qty 3</li><li>Intel Quad Port NICS (ask for model #'s)<br /></li><li>Qlogic QLA4052C Dual Port GigE PCI-X Server iSCSI Storage HBA's, Qty 2</li><li>Numerous rackmount kits for Dell PowerEdge 2800/2850</li><li>Rackmount Avocent LCD + Keyboard</li><li>Several APC Business SmartUPS 1000XL units with additional connected external battery packs for extended runtime (note that original batteries in these units exceeded their normal lifetime - buyer will need to procure new ones from APC to run - will be very heavy when shipped.)<br /></li></ol><p class="q-details">

<br />There is also a maxed out Genuine Cisco 2821 that may be leaving
production in the next few weeks if we can get a new 1941 installed to
replace it.
<br />

<br />Right now, we're looking for interested buyers and best offers. All
HP, Avocent, or Cisco gear was purchased direct from CDW or PCNation with
DeployLinux Consulting as the one/only owner.&nbsp;</p><p class="q-details"><b>UPDATE (03/01/2010):</b></p><ul><li>It's been a quiet last two weeks - much more equipment still to list, but I have decided to focus on getting rid of the stuff in the current list before adding more. I would love to be able to sell everything this week one way or another -- trying to avoid the ebay route, but may end up going that way for some of it.</li><li>If you have any questions or need pictures/more info, please email me.<br /></li></ul><p class="q-details"><b>UPDATE (02/15/2010):</b><br /></p><ul><li>The highest offer we've received to date on the Cisco Router + Two Dual T-1 HWICS is $2K.&nbsp; This will be the selling price soon if we don't receive any higher offers (feel free to bid on just router or hwics).</li><li>Added numerous rackmount kits for Dell PowerEdge 2800/2850 Servers.</li><li>Added SmartUPS XL Units</li><li>Added Rackmount LCD/Keyboard</li><li>Updated Information on Snap Servers</li><li>Our desired price for HP switch is $200, but we'll sell for best offer.<br /></li></ul><p class="q-details"><br /></p><p class="q-details"><b>UPDATE (02/11/2010):</b></p><ul><li>We received an offer on the 2811 + T-1 VWIC2, but will wait a week to see if we get any higher bids before accepting.</li><li>We were asked what we're hoping to get price wise for our equipment and the best answer I could put forward was: <br /></li></ul><blockquote><blockquote>Our
goal is to sell everything within the next 30-60 days, which means we
will consider all offers.&nbsp; Pricing wise, we expect to receive bids as
low as 25% of the current market price for new and as high as 75%.&nbsp;&nbsp; We'll sell to the higher
bids immediately and take longer to accept the lower bids, but we do
want to sell everything.<br /><br /></blockquote></blockquote><ul><li>Most
gear is in good to excellent condition.&nbsp; If you have a question about a
particular item, I can give detailed answers or upload photos.&nbsp;&nbsp; In
general, gear was taken out of production system sometime in the last
30 days to 2 years and placed in our office storage until we had time
to get around to selling it.</li></ul><br /><p class="q-details"><b>UPDATE (2/10/2010):</b><br /></p><ul><li>Updating LinkedIn and other places where notice was sent to point here.&nbsp; All future updates to 'sell list' will occur here.&nbsp; I will keep list constantly updated whenever items are added/removed/questions answered/etc.</li><li>Specs gathered for Cisco 2811</li><li>Added Qlogic iSCSI HBA's to Sell List</li><li>Other minor edits to list<br /></li></ul><p class="q-details"><br /></p><p class="q-details">Cisco 2811 Details:</p><p class="q-details">Appears to be a Cisco2821-HSEC-K9 w/ 786MB RAM + HWIC-4ESW Installed.&nbsp; Unit seems to be in good condition.&nbsp; I noticed 1 minor scratch in top paint and fan is loud, but I guess that is normal for 2811's.&nbsp;&nbsp; Configuration is not wiped, doing that now.<br /></p><p class="q-details"><br /></p>System Bootstrap, Version 12.3(8r)T7, RELEASE SOFTWARE (fc1)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Technical Support: http://www.cisco.com/techsupport&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Copyright (c) 2004 by cisco Systems, Inc.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Initializing memory for ECC&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />c2811 processor with 786432 Kbytes of main memory&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Main memory is configured to 64 bit mode with ECC enabled&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Readonly ROMMON initialized&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />program load complete, entry point: 0x8000f000, size: 0xc5a0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br /><br />Initializing ATA monitor library.......<br /><br />program load complete, entry point: 0x8000f000, size: 0x231985c<br />Self decompressing the image : ####################################################################################################################################################################]<br /><br />Smart Init is disabled. IOMEM set to: 5 &nbsp;<br /><br />Using iomem percentage: 5<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Restricted Rights Legend<br /><br />Use, duplication, or disclosure by the Government is<br />subject to restrictions as set forth in subparagraph<br />(c) of the Commercial Computer Software - Restricted<br />Rights clause at FAR sec. 52.227-19 and subparagraph<br />(c) (1) (ii) of the Rights in Technical Data and Computer<br />Software clause at DFARS sec. 252.227-7013.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cisco Systems, Inc.<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 170 West Tasman Drive<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; San Jose, California 95134-1706<br /><br /><br /><br />Cisco IOS Software, 2800 Software (C2800NM-ADVIPSERVICESK9-M), Version 12.4(10a), RELEASE SOFTWARE (fc2)<br />Technical Support: http://www.cisco.com/techsupport&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Copyright (c) 1986-2006 by Cisco Systems, Inc.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Compiled Wed 11-Oct-06 19:01 by prod_rel_team&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />Image text-base: 0x40093180, data-base: 0x42B00000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br /><br /><br />This product contains cryptographic features and is subject to United<br />States and local country laws governing import, export, transfer and <br />use. Delivery of Cisco cryptographic products does not imply&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />third-party authority to import, export, distribute or use encryption.<br />Importers, exporters, distributors and users are responsible for&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />compliance with U.S. and local country laws. By using this product you<br />agree to comply with applicable laws and regulations. If you are unable<br />to comply with U.S. and local laws, return this product immediately.&nbsp; &nbsp;<br /><br />A summary of U.S. laws governing Cisco cryptographic products may be found at:<br />http://www.cisco.com/wwl/export/crypto/tool/stqrg.html&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br /><br />If you require further assistance please contact us by sending email to<br />export@cisco.com.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br /><br />Cisco 2811 (revision 50.46) with 747520K/38912K bytes of memory.<br />Processor board ID FTX0902D42F&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />6 FastEthernet interfaces&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />2 Virtual Private Network (VPN) Modules&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />DRAM configuration is 64 bits wide with parity enabled.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />239K bytes of non-volatile configuration memory.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br />251904K bytes of ATA CompactFlash (Read/Write)<br /><br />cisco&gt;show inventory<br />NAME: "2811 chassis", DESCR: "2811 chassis"<br />PID: CISCO2811&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , VID:&nbsp;&nbsp; NA, SN: FTX0902D42F<br /><br />NAME: "4 Port FE Switch", DESCR: "4 Port FE Switch"<br />PID: HWIC-4ESW&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , VID: VN/A, SN: FOC1040406C<br /><br />NAME: "Virtual Private Network (VPN) Module", DESCR: "Encryption AIM Element"<br />PID: AIM-VPN/EPII-PLUS , VID:&nbsp;&nbsp; NA, SN: FOC09024B38<br /><br /><br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>Building a Durable Home Office Linux Workstation - YR 2010 Edition</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2010/01/#000060" />
    <id>tag:www.deploylinux.net,2010:/matt//4.60</id>

    <published>2010-01-26T01:44:16Z</published>
    <updated>2010-01-26T03:58:01Z</updated>

    <summary>There are truly dozens if not hundreds of requirements and limitations that come into place when designing and building a long lasting and durable Linux Workstation for the home office.The overall goal is to have a system that will be...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
        <category term="Linux" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="fedora" label="Fedora" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="linux" label="Linux" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="redhatenterpriselinux" label="Red Hat Enterprise Linux" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[There are truly dozens if not hundreds of requirements and limitations that come into place when designing and building a long lasting and durable Linux Workstation for the home office.<br /><br />The overall goal is to have a system that will be reliable, constantly upgradeable, and high value.&nbsp;&nbsp;&nbsp; Existing hardware MUST be incorporated where possible.<br /><br />Here are some of the decisions I made:<br /><ul><li>Equipment binges in the 90's and 2000's resulted in an excess of external equipment (low cost home nas, Firewire/USB attached drives, USB Hubs, video cameras, etc).&nbsp; While the ability to add things externally makes incremental expansion easy, it does so at the cost of complexity, reliability, and overall noise/aesthetics - not to mention power costs which in San Diego are quite high.&nbsp; So, my rule going forward was to put everything in a large full tower ATX case.</li><li>Supporting multiple operating systems is no longer as important.&nbsp; In the way, way, way past, I used to dual boot between Linux and Windows.&nbsp;&nbsp; Later, I experimented with multiple monitors dedicated to each either running in virtual machines or separate boxes (sharing keyboard/mouse).&nbsp; Then, as hardware got more microsoft dependent, I ran windows as an OS host and had a RedHat Enterprise Linux VM bootup in windowed mode for most day-to-day work.&nbsp; We are at the point though, where there are only a few applications that can not be fully ported to Linux (Quickbooks + <a class="zem_slink" href="http://www.vmware.com/" title="VMware" rel="homepage">VMware</a> Virtual Center Client + FrameMaker/Acrobat Extended/Visio&nbsp; + ). &nbsp;&nbsp; Therefore, the default now is to make Linux the host and access applications via unity mode of vmware workstation software.<br /></li><li>I agonized over what <a class="zem_slink" href="http://en.wikipedia.org/wiki/Linux_distribution" title="Linux distribution" rel="wikipedia">Linux Distribution</a> to depend on for the next many years and finally decided that it needed to be <a class="zem_slink" href="http://fedoraproject.org/" title="Fedora" rel="homepage">Fedora</a> 12.&nbsp; RedHat Enterprise Linux is by far the predominant OS installed in the datacenters I manage and being able to easily access development versions of new software for RHEL in my off hours is critical.&nbsp; Ubuntu may be very popular now, but I didn't see it being the right fit here.&nbsp;&nbsp; Furthermore, RHEL Workstation itself while being more stable than fedora just didn't provide easy access to recent versions of&nbsp; desktop/home office applications I may need or want.&nbsp;&nbsp; As a former gentoo developer, I'd have installed Gentoo but honestly I just couldn't afford to deal with managing a constant flood of manual security issues and qa testing that using it would have required.</li><li>All data must be protected by RAID, and regularly backed up in a low noise/maintenance manner w/ the ability to occasionally perform off site backups.</li><li>I want lots of storage, ability to burn blue ray discs, and excellent graphics.</li></ul><br />So, I grabbed the best full tower case + motherboard/cpu/ram combination I currently had in the house and then add any other hardware components I could find.&nbsp; And, only if absolutely necessary, ordering specific hardware from amazon.&nbsp; The idea was not to build the perfect system right away but to have a base to grow over the next 10 years.<br /><br />At the moment, I have mostly running in production state:<br /><br />Thermaltake Kandalf Full ATX Tower Case<br />Dual Core P4 3.4Ghz CPU<br />8GB ECC DDR2 RAM w/ 800 Mhz FSB<br />Asus Workstation Motherboard based on i975x chipset (P5WDG2-WS)<br />MB includes ~8 SATA Ports, 2 x PCIe, 2 x PCI-x and 2 PCI, Intel HD Sound<br />Dual Sky2 GigE Nics, Firewire, and lots of USB2 ports on MB<br />Nvidia GeoForce 8800 GTS 512 w/ Two <a class="zem_slink" href="http://en.wikipedia.org/wiki/Digital_Visual_Interface" title="Digital Visual Interface" rel="wikipedia">Dual Link DVI</a> Ports<br />Dell 30" LCD Monitor<br />VF0560 Live! Cam Optia AF Video Camera<br />Logitech Z520 Speaker System<br />3Ware 9550SX 8 Port <a class="zem_slink" href="http://en.wikipedia.org/wiki/Serial_ATA" title="Serial ATA" rel="wikipedia">SATA-II</a> RAID Controller w/ 128MB Battery Backed Cache<br />5 x Seagate 7200RPM 250GB SATA-II Drives in RAID5 for /home filesystem<br />1 x Seagate 7200RPM 250GB SATA-II Drive as Hot Spare<br />2 x Western Digital 2TB "Black Cavier" Hard Drives in RAID1 for all other filesystems<br />1 x ReadyNAS NV+ NAS w/ 4 x 750GB SATA-II in RAID5 for Daily Incremental Bkups<br />Multiple Internal Hard Drive Cages w/ Integrated Fans for Tower Case<br />Additional Low-noise directed case fans and BIOS tuning for stability/performance<br />Plextor PX-Q840U External USB DVD/CD Burner for easy access to drive<br />Plextor PX-B940SA Internal SATA Blu-ray Burner for creating offsite backups<br />Honeywell Firesafe next to system for safe keeping of critical media <br /><br />Desktop configured for KDE because KDE makes inspiring apps and the gnome equivalents are boring and life draining. <br />

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/6f730884-70e4-433b-a3f2-112c1e094c07/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=6f730884-70e4-433b-a3f2-112c1e094c07" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>]]>
        
    </content>
</entry>

<entry>
    <title>Thoughts on VMware&apos;s acquisition of Zimbra</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2010/01/#000059" />
    <id>tag:www.deploylinux.net,2010:/matt//4.59</id>

    <published>2010-01-13T05:09:33Z</published>
    <updated>2010-01-13T06:11:59Z</updated>

    <summary><![CDATA[For the last decade, I have been of two minds about VMware.&nbsp; My roots are in open-source but I keep buying expensive proprietary software licenses for VMware ESX and vSphere because VMware's products are proven and continue to be the...]]></summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[For the last decade, I have been of two minds about VMware.&nbsp; My roots are in open-source but I keep buying expensive proprietary software licenses for VMware ESX and vSphere because VMware's products are proven and continue to be the driving force of innovation in the virtualization and cloud computing space.<br /><br />This is not completely out of tune with being a Linux evangelist. Linus Torvalds himself has said he nothing against commercial software, and that businesses should be pragmatic when choosing which software to deploy.&nbsp; <br /><br />But, how the soul tears when a new CEO of VMware arrives from no less than Microsoft.&nbsp; Is this just the first prong in a multi-staged cultural invasion of sales/marketing over technical staff.&nbsp; <br /><br />I ask myself whether I am really supporting the growth of what will be the Microsoft of the next generation?&nbsp; <br /><br />Sometimes, one can certainly think so - Short of Amazon EC2, no one and nothing has gotten in the way of VMware's skyrocketing usage and to a certain extent (skyrocketing prices).&nbsp; <br /><br />Of course, VMware has a wonderful ecosystem of enterprise tools to support deployment of virtualization in business, including stage manager, life cycle manager, etc.&nbsp; However, none of these products are open-source and almost all of them are out of the budget of most internet start-ups that I perform consulting projects with. &nbsp;&nbsp;&nbsp; Yes, I know vmware offers some "free" tools like vmplayer and vmware server, but I do not consider these really production business tools.<br /><br />Nor is VMware exactly open about its development plans, progress towards fixing bugs, or even really support.&nbsp; Their are some awesome websites, forums, blogs, and irc channels.&nbsp; But these are mostly user run and you dont see the constant back and forth between developers and users that one might normally experience in an open-source project. <br /><br />And, yet.....VMware acquires Spring Source, Hyperic, and now Zimbra in a relatively short period of time. &nbsp; VMware is not just acquiring open-source companies, they are acquiring the cream of the crop when one narrows the search to focus on open-source innovation in the business application market. &nbsp; I would not be surprised if VMware tried to acquire EnterpriseDB (makers of postgresql plus) next.&nbsp; With the sagging of mysql and resurgence of Oracle, this would be smart.....for VMware.<br /><br />I am aware that RedHat hopes to take a lot of the virtualization market away from VMware, but I wonder if they playing last years war and thus distracted from the current battle being played out to determine the shape of&nbsp; the future of open source business application market place.<br /><br />There was palpable excitement in the Linux community throughout the 1990's as we knew that while enterprises move slowly, eventually they must and do deploy the most innovative and reliable software and thus the age of supporting defective closed-built buggy software would eventually come to an end when open-source business applications matured.&nbsp; We are there.&nbsp; It is happening, but how much of that success will be reinvested back into creating new open-source products if the real cash out goal of all developers creating innovative business applications is merely to be acquired by VMware?&nbsp; Will VMware in the business applications space be like Cisco Systems is in Networking - a constant ever growing technical company that purchases anyone that out-innovates it?<br /><br />At least, this will be a step up from Microsoft.&nbsp; <br /><br />On the other hand, maybe VMware will surprise me and actually adopt more open development processes and become not just a consumer and beneficiary of open source, not even a major source of patches to open-source projects, but a real evangelist of the philosophy of being transparent, sharing by default, and communicating constantly with clients and customers.<br /><br />I would hope so. <br />]]>
        
    </content>
</entry>

<entry>
    <title>Apache Bug - RHSA-2009-1075</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2009/05/#000053" />
    <id>tag:www.deploylinux.net,2009:/matt//4.53</id>

    <published>2009-05-27T21:58:13Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary>We will be updating apache software for all managed hosting clients today to resolve the following bug: https://rhn.redhat.com/errata/RHSA-2009-1075.html...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[We will be updating apache software for all managed hosting clients today to resolve the following bug:  <a href="https://rhn.redhat.com/errata/RHSA-2009-1075.html">https://rhn.redhat.com/errata/RHSA-2009-1075.html</a>]]>
        
    </content>
</entry>

<entry>
    <title>Follow us on Twitter</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2009/05/#000052" />
    <id>tag:www.deploylinux.net,2009:/matt//4.52</id>

    <published>2009-05-27T21:57:08Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary>http://twitter.com/deploylinux...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<a href="http://twitter.com/deploylinux">http://twitter.com/deploylinux</a>]]>
        
    </content>
</entry>

<entry>
    <title>Nightly Cloud Maintenance Schedule</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2009/02/#000051" />
    <id>tag:www.deploylinux.net,2009:/matt//4.51</id>

    <published>2009-02-25T08:43:44Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary><![CDATA[San Diego Datacenter:9pm&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp; Midnight: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; File System and OS Level BackupsMidnight -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4am: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; Mysql Backups (Snapshot and/or Full Export)4am&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6am:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Vulnerability Scans (Nessus Professional)Zero Downtime.&nbsp;...]]></summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
        <category term="SysAdmin" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[San Diego Datacenter:<br /><br />9pm&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp; Midnight: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; File System and OS Level Backups<br />Midnight -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4am: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; Mysql Backups (Snapshot and/or Full Export)<br />4am&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6am:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Vulnerability Scans (Nessus Professional)<br /><br />Zero Downtime.&nbsp; However, virtual machine resource utilization will fluctuate as each task is initiated.<br />]]>
        
    </content>
</entry>

<entry>
    <title>Daily Updates - 2/24/09</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2009/02/#000050" />
    <id>tag:www.deploylinux.net,2009:/matt//4.50</id>

    <published>2009-02-24T09:33:58Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary>Viso Stencils for VMware DeploymentsVMware vCenter Server 2.5 Update 4 Released, Linux Technology Preview also available (not for production)...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
        <category term="SysAdmin" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<ul><li><a href="http://viops.vmware.com/home/docs/DOC-1346">Viso Stencils for VMware Deployments</a></li><li><a href="http://www.vmware.com/support/vi3/doc/vi3_vc25u4_rel_notes.html">VMware vCenter Server 2.5 Update 4</a> Released, Linux Technology Preview also available (not for production)  </li></ul>]]>
        
    </content>
</entry>

<entry>
    <title>Vulnerability Scanning Update</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2009/02/#000049" />
    <id>tag:www.deploylinux.net,2009:/matt//4.49</id>

    <published>2009-02-21T02:54:06Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary><![CDATA[Gone:&nbsp; Performing monthly security scans via vendor security appliances and manually reviewing reports in their entirety for every host in the network.Incoming:&nbsp; Daily security audits initiated via a RedHat Enterprise Linux 5 VM running Nessus Professional software, updated with latest...]]></summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
        <category term="Security" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[Gone:&nbsp; Performing monthly security scans via vendor security appliances and manually reviewing reports in their entirety for every host in the network.<br /><br />Incoming:&nbsp; Daily security audits initiated via a RedHat Enterprise Linux 5 VM running Nessus Professional software, updated with latest plugins, and reports automatically compared against any previous for each specific ip address.&nbsp;&nbsp; Differences are also automatically prioritized and our sysadmin staff are notified when they first login for the day of any changes.&nbsp; The scan configuration is setup to be comprehensive, but non-destructive or dangerous.&nbsp; Also, all PCI DSS requirements are checked.<br /><br />Vulnerability scanning will also now include the scanning device logging into a restricted user account in each target VM and running OS, Application, and Database level checks (not just network visible checks).<br /><br />The scanner will also attempt to download the complete content of all target websites and run as much automated code sanity checks on applications as possible.<br /><br />In summary, vulnerability scanning technology has advanced substantially and we're going to try to take as much advantage of it as possible -- with the caveat that with vulnerability scanning, hardware&nbsp; and the network is usually not the limiting factor (physical human time to review results is).&nbsp; Any checks that require intensive human review will still need to be performed monthly, but 99% of all checks should now be possible to be done daily. <br /><br />Note that vulnerability scanning is a free service we provide to all our hosting clients in our San Diego Datacenter.&nbsp;&nbsp; This service would normally itself run from $25-$80/month from prominent security service providers, without being near as complete.<br /><br /><br /><br />References:<br /><br /><a href="http://www.nessus.org/nessus/">http://www.nessus.org/nessus/</a><br /><a href="http://www.nessus.org/whitepapers/sec_test_sc3_nessus.pdf">http://www.nessus.org/whitepapers/sec_test_sc3_nessus.pdf</a><br /><a href="http://www.nessus.org/news/#204">http://www.nessus.org/news/#204</a><br /><a href="http://www.autonessus.com/home">http://www.autonessus.com/home</a><br /><a href="http://cgi.tenablesecurity.com/demos/PCI_Audit/PCI_audit.htm">http://cgi.tenablesecurity.com/demos/PCI_Audit/PCI_audit.htm</a><br /><a href="http://www.nessus.org/plugins/index.php?view=all">http://www.nessus.org/plugins/index.php?view=all</a><br /><a href="http://www.alertra.com/pricing.php">http://www.alertra.com/pricing.php</a><br /><a href="http://www.mcafeesecure.com/us/pci-intro.jsp">http://www.mcafeesecure.com/us/pci-intro.jsp</a><br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>EnableResignature and/or DisallowSnapshotLUN » Yellow Bricks</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2008/12/#000044" />
    <id>tag:www.deploylinux.net,2008:/matt//4.44</id>

    <published>2008-12-15T14:54:17Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary><![CDATA[Excellent reference and a good document to review once a&nbsp; year:&nbsp; http://www.yellow-bricks.com/2008/12/11/enableresignature-andor-disallowsnapshotlun/...]]></summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
        <category term="SysAdmin" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[Excellent reference and a good document to review once a&nbsp; year:&nbsp; <br /><br />http://www.yellow-bricks.com/2008/12/11/enableresignature-andor-disallowsnapshotlun/<br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>HOWTO: Teaching Hobbit to Send Alerts via SMS using an Internet Skype Gateway and Linux Host</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2008/11/#000045" />
    <id>tag:www.deploylinux.net,2008:/matt//4.45</id>

    <published>2008-11-07T08:42:23Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary><![CDATA[Gone are the days when every sysadmin had to carry a pager because cell phones just didn't cut it.&nbsp; These days, SMS is just about as reliable in most environments and essentially free compared to the cost of a paging...]]></summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
        <category term="SysAdmin" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<p>Gone are the days when every sysadmin had to carry a pager because cell phones just didn't cut it.&nbsp; These days, SMS is just about as reliable in most environments and essentially free compared to the cost of a paging service and dealing with a 2nd device.</p><p>The hiccup, as nearly everyone knows now, is that you have to find a way to get your monitoring server to talk to your cell phone company -- and, honestly, you're cell phone company does not want to make this easy....they'll try to upgrade you to various unlimited SMS/messaging plans and then have an internet SMTP -&gt; SMS gateway that fails constantly.&nbsp;&nbsp; <br /></p><p>I've switched from provider to provider over the last 4-5 years and they are all the same.&nbsp; Alerts may be reliable for a few months on one or the other, but eventually there comes a time when you didn't get the call because the email -&gt; SMS gateway was down, or worse -- delivers the message a day later.<br /></p><p>So, screw the cell phone company, let's use Skype:<br /></p><p>Steps I Used to Teach The Hobbit Monitor to Use Skype:<br />
	</p><ul><li>Setup Hobbit in a Dedicated Linux Virtual Machine</li><li>Ensure Hobbit is running under its own non-root userid (actually, no reason not to just use apache userid since hobbit and apache are going to share a great many files and the entire VM is dedicated to hobbit).</li><li>Setup VM to automatically bootup in runlevel 5 and autostart a new gnome session under apache<br /></li><li>Install Skype for Linux and the Skype Command Line Tools at: <a href="http://www.oberle.org/blog/2007/06/11/sending-sms-with-skype-on-linux/">http://www.oberle.org/blog/2007/06/11/sending-sms-with-skype-on-linux/</a></li><li>Do not use the standard init system to startup hobbit.&nbsp; Instead, setup gnome to initiate the Skype Client followed by a hobbit restart at the start of each session.&nbsp; This will ensure that hobbit has full access to the X authentication environment which it needs to communicate with the X-windows skype client.</li><li>Create a new script in /usr/local/bin owned by apache that executes the skype command line SMS send tool and passes it the phone number and BB environment variable for the error message itself.</li><li>Follow the instructions to hobbit-alert.conf to tell hobbit under what condition it should send SMS alerts</li><li>Make sure you setup a dedicated Skype account for the server, use skype out credit, and have it auto deposit another $10 into the account whenever it runs out of funds.&nbsp; Also, modify the Skype client settings to not accept any incoming calls/messages/etc.<br /></li>

</ul>Voila!&nbsp; <br />]]>
        
    </content>
</entry>

<entry>
    <title>VMware Releases ESX 3.5U3</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2008/11/#000046" />
    <id>tag:www.deploylinux.net,2008:/matt//4.46</id>

    <published>2008-11-07T05:31:37Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary>Seems mostly to be a bugfix + new hardware support patch, although I did see the following nuggets: Intel Pro/1000 gigabit Ethernet device drivers (e1000) in some guests allocate MTU bytes for rx buffers, but tell the device the size...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
        <category term="SysAdmin" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<p>Seems mostly to be a bugfix + new hardware support patch, although I did see the following nuggets:</p>

<ul>
  <li> Intel Pro/1000 gigabit Ethernet device drivers (e1000) in some guests allocate MTU bytes for rx buffers, but tell the device the size of the rx buffer is 2048 bytes. If these buffers fall on the edge of the guest physical memory range, the virtual e1000 device could wedge during rx with the following messages in the VMkernel logs:

<p>WARNING: Alloc: ppn=0xc0000 out of range: 0x0-0xc0000 (count=3)<br />
WARNING: P2MCache: GetPhysMemRange failed: PPN 0xc0000 canBlock 0 status Bad parameter.</p>

<p>This patch fixes this problem.</p>

<p><a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1007041">http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1007041</a><br />
</li><br />
<li>Add experimental support for a new utility, the VMDK Recovery Tool.</p>

<p>More information available at: <a href="http://kb.vmware.com/kb/1007243">http://kb.vmware.com/kb/1007243</a><br />
</li><br />
</ul></p>

<p>The official release notes are available at: <a href="http://www.vmware.com/support/vi3/doc/vi3_esx35u3_rel_notes.html">http://www.vmware.com/support/vi3/doc/vi3_esx35u3_rel_notes.html</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>RHEL 5.3 Has Entered Beta</title>
    <link rel="alternate" type="text/html" href="http://www.deploylinux.net/matt/2008/11/#000047" />
    <id>tag:www.deploylinux.net,2008:/matt//4.47</id>

    <published>2008-11-06T15:22:16Z</published>
    <updated>2009-10-12T07:38:01Z</updated>

    <summary>Announcement: https://www.redhat.com/archives/rhelv5-announce/2008-October/msg00000.html Release Notes: http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.3/html/Release_Notes/index.html I don&apos;t see much that is earth-shattering for VMware ESX Server Deployments- but then, this is RHEL, and a .3 release so you wouldn&apos;t expect that anyway. The good stuff is probably all in Fedora...</summary>
    <author>
        <name>Webmaster</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.deploylinux.net/matt/">
        <![CDATA[<p>Announcement: https://www.redhat.com/archives/rhelv5-announce/2008-October/msg00000.html<br />
Release Notes:  <a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.3/html/Release_Notes/index.html">http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.3/html/Release_Notes/index.html</a></p>

<p>I don't see much that is earth-shattering for VMware ESX Server Deployments- but then, this is RHEL, and a .3 release so you wouldn't expect that anyway.  The good stuff is probably all in Fedora now and being saved up for RHEL6.</p>

<p>Anyhow, I was just thinking this morning that the rate of security updates for the RHEL 5.2 kernel was getting annoying....  When kernel security notices are as frequent as phpmyadmin ones, you know something is not right.</p>]]>
        
    </content>
</entry>

</feed>
