<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Number 42 &#187; Administration</title>
	<atom:link href="http://www.thenumber42.net/category/computer-stuff/administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thenumber42.net</link>
	<description>Mostly about software testing, but a little bit about life, the universe, and everything</description>
	<lastBuildDate>Wed, 31 Mar 2010 01:52:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting Gmail as the Default Email Application in Linux</title>
		<link>http://www.thenumber42.net/2009/04/26/setting-gmail-as-the-default-email-application-in-linux/</link>
		<comments>http://www.thenumber42.net/2009/04/26/setting-gmail-as-the-default-email-application-in-linux/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 01:08:52 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=130</guid>
		<description><![CDATA[Yesterday I was searching for a way to make GMail my default email provider, so that when I click on "mailto" links GMail opens.  In Windows this is pretty easy, but I couldn't figure it out for Linux.  So, bring on Google search.  I found this web page which explains it succinctly.  While I don't [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was searching for a way to make GMail my default email provider, so that when I click on "mailto" links GMail opens.  In Windows this is pretty easy, but I couldn't figure it out for Linux.  So, bring on Google search.  I found <a href="http://www.howtogeek.com/howto/ubuntu/set-gmail-as-default-mail-client-in-ubuntu/" target="_blank">this</a> web page which explains it succinctly.  While I don't run Ubuntu, the same method worked for Arch Linux.</p>
<p>Essentially:</p>
<ol>
<li>Go to System-&gt;Preferences-&gt;Preferred Applications</li>
<li>For "Mail Reader" choose "Custom" and enter this (we'll create the script later):
<pre class="bash">/home/username/bin/open_mailto.<span style="color: #c20cb9; font-weight: bold;">sh</span> <span style="color: #ff0000;">&quot;%s&quot;</span></pre>
</li>
<li>The above script will be triggered anytime you click on an email link.  Now, let's create the actual script.  Note: This is a modified script from the above web site.  It is based on some of the comments posted about the artice and then refined a little.  This script will properly handle subject, cc, to, body, and most any proper email tag that you can throw at it.  One other difference is that it can handle parenthesis.
<pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/sh</span>
<span style="color: #007800;">uri=</span>`<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$1&quot;</span>| <span style="color: #c20cb9; font-weight: bold;">sed</span> -e <span style="color: #ff0000;">'s/subject=/su=/'</span> \
     -e <span style="color: #ff0000;">'s/^mailto:<span style="color: #000099; font-weight: bold;">\(</span>[^&amp;?]<span style="color: #000099; font-weight: bold;">\+</span><span style="color: #000099; font-weight: bold;">\)</span>[?&amp;]<span style="color: #000099; font-weight: bold;">\?</span><span style="color: #000099; font-weight: bold;">\(</span>.*<span style="color: #000099; font-weight: bold;">\)</span>$/<span style="color: #000099; font-weight: bold;">\1</span><span style="color: #000099; font-weight: bold;">\&</span><span style="color: #000099; font-weight: bold;">\2</span>/'</span> \
     -e <span style="color: #ff0000;">'s/(/%28/g'</span> -e <span style="color: #ff0000;">'s/)/%29/g'</span>`
firefox -remote <span style="color: #ff0000;">&quot;openurl(https://mail.google.com/mail?<span style="color: #000099; font-weight: bold;">\</span>
view=cm&amp;tf=0&amp;to=$uri,new-tab)&quot;</span></pre>
</li>
<li>Finally, change the mode of the script so that it can execute:
<pre>chmod 755 /home/username/bin/open_mailto.sh</pre>
</li>
</ol>
<p>Hopefully that will work for you without problems.  In my tests so far it has worked great.</p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.howtogeek.com/howto/ubuntu/set-gmail-as-default-mail-client-in-ubuntu/' target="_blank">http://www.howtogeek....ail-client-in-ubuntu/</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2009/04/26/setting-gmail-as-the-default-email-application-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing The Password For An Oracle User</title>
		<link>http://www.thenumber42.net/2009/04/06/changing-the-password-for-an-oracle-user/</link>
		<comments>http://www.thenumber42.net/2009/04/06/changing-the-password-for-an-oracle-user/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 13:55:21 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=128</guid>
		<description><![CDATA[I manage users in Oracle infrequently enough that I have to look up password management each time I want to change a password.  So, this is mainly for me to remember:
alter user user_name identified by new_password;
]]></description>
			<content:encoded><![CDATA[<p>I manage users in Oracle infrequently enough that I have to look up password management each time I want to change a password.  So, this is mainly for me to remember:</p>
<pre>alter user <em>user_name</em> identified by <em>new_password</em>;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2009/04/06/changing-the-password-for-an-oracle-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Tool for Testing Regular Expressions</title>
		<link>http://www.thenumber42.net/2008/12/29/online-tool-for-testing-regular-expressions/</link>
		<comments>http://www.thenumber42.net/2008/12/29/online-tool-for-testing-regular-expressions/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 14:21:27 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=126</guid>
		<description><![CDATA[Today, while trying to get a particular regular expression to work I found an online tool to help me out.  What is particularly nice about this tool is that you can try multiple strings at a time against your regular expression.  Go check it out: http://www.fileformat.info/tool/regex.htm.
Link Summary

http://www.fileformat.info/tool/regex.htm
]]></description>
			<content:encoded><![CDATA[<p>Today, while trying to get a particular regular expression to work I found an online tool to help me out.  What is particularly nice about this tool is that you can try multiple strings at a time against your regular expression.  Go check it out: <a href="http://www.fileformat.info/tool/regex.htm">http://www.fileformat.info/tool/regex.htm</a>.</p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.fileformat.info/tool/regex.htm'>http://www.fileformat.info/tool/regex.htm</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/12/29/online-tool-for-testing-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automagic SSH Tunneling</title>
		<link>http://www.thenumber42.net/2008/06/23/automagic-ssh-tunneling/</link>
		<comments>http://www.thenumber42.net/2008/06/23/automagic-ssh-tunneling/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 14:27:53 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[git ssh]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=106</guid>
		<description><![CDATA[SSH never ceases to amaze me.  It's like the swiss army knife of network connections and firewall busting.  For years I've used SSH tunneling to overcome barriers (read firewalls) stuck into my path.  I've never been one to be malicious, but there are times when I need a certain connection that is [...]]]></description>
			<content:encoded><![CDATA[<p>SSH never ceases to amaze me.  It's like the swiss army knife of network connections and firewall busting.  For years I've used SSH tunneling to overcome barriers (read firewalls) stuck into my path.  I've never been one to be malicious, but there are times when I need a certain connection that is "prohibited."</p>
<p>For example, during my lunch break at work I will often work on personal projects.  One of my projects right now is a suite of programs and libraries generically called <em><a href="http://github.com/wg3i/ditndah/wikis">Mr. Morse</a></em>.  These projects are all related to Morse Code in some way.  What's strange is that my employer blocks outbound SSH (port 22) connections, but not telnet (port 23) connections.  Don't ask, because the answer is weird.  Anyway, I use <a href="http://www.github.com">github.com</a> to host my source code and <a href="http://sourceforge.net/projects/mrmorse/">Sourceforge</a> to host the software releases and bug tracking.  Because I am blocked at work from outgoing SSH connections I can't directly connect to github and push/pull my source code.</p>
<p>SSH to the rescue!  Fortunately, a solution exists that once set up is totally transparent to you.  Unfortunately, this requires access to another machine outside of the firewall that you control.  In my case I have a machine running at home with the SSH daemon running on port 23 instead of the normal port 22.  My employer does not block outbound port 23 connections, so this works.  From work I can SSH to this machine.</p>
<p>Once this machine was set up there were two options for bouncing a SSH connection through this machine to github.  One, I could create a SSH tunnel and leave it running on my machine.  This is the "typical" way I see it done on the internet, which works fine, but if your machine is rebooted you need to remember to start the tunnel again.  It also makes the remote server look like it is attached to your local machine ports, which may or may not be desirable.  For reference, here is how I would do this tunnel to github through my personal remote machine.</p>
<pre>#!/bin/sh
# Explanation of command:
# * Disable TCP Keep Alive.  This can be spoofed.
# * Send an encrypted message to the other end every 60 seconds. This
#   should keep the tunnel open
# * The -L creates the tunnel. How this reads is open a tunnel from
#   localhost port 65321 through remote.machine.com to github.com
#   port 22.  Strange, I know.  But, it works.
# * -p 23 because the ssh server at remote.machine.com is on port 23
# * -N don't execute a shell at the other end
# * -f fork into background
# The combination of -N and -f will open the tunnel but we won't
# get a shell and the tunnel will just sit in the background.
ssh -o TCPKeepAlive=no -o ServerAliveInterval=60 -L 65321:github.com:22 \
  -l user remote.machine.com -p 23 -N -f
</pre>
<p>That's not too bad, but like I said, you need to remember to open the tunnel every time you reboot.  Also, the remote machine looks like it is attached to your local machine at port 65321 with this command.  The second and preferred method for remote github connection is a SSH config item.  This has the advantages of working transparently and still looking like the machine is remote, not local.  Simply add this to your .ssh/config file:</p>
<pre>Host github.com
     ProxyCommand ssh -p 23 -l user remote.machine.com exec nc %h %p
</pre>
<p>That's it.  Now all git pulls/pushes will automagically be routed through the remote machine without you having to do a thing.  So, when you clone my repository all you will have to do is:
<pre>git clone git://github.com/wg3i/dit-n-dah.git</pre>
<p> and things will just work.</p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://github.com/wg3i/ditndah/wikis'>http://github.com/wg3i/ditndah/wikis</a></li><li><a href='http://www.github.com'>http://www.github.com</a></li><li><a href='http://sourceforge.net/projects/mrmorse/'>http://sourceforge.net/projects/mrmorse/</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/06/23/automagic-ssh-tunneling/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SSH not setting DISPLAY variable</title>
		<link>http://www.thenumber42.net/2008/05/27/ssh-not-setting-display-variable/</link>
		<comments>http://www.thenumber42.net/2008/05/27/ssh-not-setting-display-variable/#comments</comments>
		<pubDate>Tue, 27 May 2008 20:19:36 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[xauth]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=103</guid>
		<description><![CDATA[This morning I did a bare bones CentOS 5.1 installation onto a machine.  I don't need Gnome, KDE, or any other window manager.  However, I did need to forward the display over SSH for one of the programs that I need to run.  For the life of me I could not figure [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I did a bare bones CentOS 5.1 installation onto a machine.  I don't need Gnome, KDE, or any other window manager.  However, I did need to forward the display over SSH for one of the programs that I need to run.  For the life of me I could not figure out the correct libraries to install to get the DISPLAY environment variable set when doing "ssh -X".  Finally, I ran "ssh -X -v" and that revealed what I needed.  A simple</p>
<pre>yum install xauth</pre>
<p>fixed the problem and now my SSH happily sets the DISPLAY variable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/05/27/ssh-not-setting-display-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Identifying the Hard Drives in Your System Under Solaris</title>
		<link>http://www.thenumber42.net/2008/05/19/identifying-the-hard-drives-in-your-system-under-solaris/</link>
		<comments>http://www.thenumber42.net/2008/05/19/identifying-the-hard-drives-in-your-system-under-solaris/#comments</comments>
		<pubDate>Mon, 19 May 2008 19:52:44 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=101</guid>
		<description><![CDATA[As someone coming from Linux I find working in Solaris completely backwards.  Case in point: Today I needed to get the drive information from a Solaris machine.  Of all commands the one to use is "format."  Go figure.  Anyway, here's how to do it, thanks to this article:
bash-3.00# format
Searching for disks...done

AVAILABLE [...]]]></description>
			<content:encoded><![CDATA[<p>As someone coming from Linux I find working in Solaris completely backwards.  Case in point: Today I needed to get the drive information from a Solaris machine.  Of all commands the one to use is "format."  Go figure.  Anyway, here's how to do it, thanks to <a href="http://developers.sun.com/solaris/articles/disk_info.html">this article</a>:</p>
<pre>bash-3.00# format
Searching for disks...done

AVAILABLE DISK SELECTIONS:
       0. c1t0d0 &lt;SUN72G cyl 14087 alt 2 hd 24 sec 424&gt;
          /pci@1c,600000/scsi@2/sd@0,0
       1. c1t1d0 &lt;SUN72G cyl 14087 alt 2 hd 24 sec 424&gt;
          /pci@1c,600000/scsi@2/sd@1,0
Specify disk (enter its number): 0
selecting c1t0d0
[disk formatted]
Warning: Current Disk has mounted partitions.
/dev/dsk/c1t0d0s0 is currently mounted on /. Please see umount(1M).
/dev/dsk/c1t0d0s1 is currently used by swap. Please see swap(1M).
/dev/dsk/c1t0d0s6 is currently mounted on /var. Please see umount(1M).
/dev/dsk/c1t0d0s7 is currently mounted on /sdh_home. Please see umount(1M).

FORMAT MENU:
        disk       - select a disk
        type       - select (define) a disk type
        partition  - select (define) a partition table
        current    - describe the current disk
        format     - format and analyze the disk
        repair     - repair a defective sector
        label      - write label to the disk
        analyze    - surface analysis
        defect     - defect list management
        backup     - search for backup labels
        verify     - read and display labels
        save       - save new disk/partition definitions
        inquiry    - show vendor, product and revision
        volname    - set 8-character volume name
        !&lt;cmd&gt;     - execute &lt;cmd&gt;, then return
        quit
format&gt; inquiry
Vendor:   SEAGATE
Product:  ST373207LSUN72G
Revision: 045A
format&gt;
</pre>
<p>Now that you have the disk info you can go to the manufacturers web site and look up the drive information.  In this case the model number is ST373207L, which turns out to be a 10k RPM 73GB SCSI drive.</p>
<p>Good luck drive hunting. <img src='http://www.thenumber42.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://developers.sun.com/solaris/articles/disk_info.html'>http://developers.sun...ticles/disk_info.html</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/05/19/identifying-the-hard-drives-in-your-system-under-solaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Idea for Logging Tool</title>
		<link>http://www.thenumber42.net/2008/05/16/idea-for-logging-tool/</link>
		<comments>http://www.thenumber42.net/2008/05/16/idea-for-logging-tool/#comments</comments>
		<pubDate>Fri, 16 May 2008 21:11:51 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[interprocess communication]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[pipes]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=100</guid>
		<description><![CDATA[The piece of software that I test at work has an option to enable debug logging to a file.  Normally, I run with this enabled so that I have a record of what I did and any errors that I encounter.  However, this file can become extremely bloated and if often hundreds of [...]]]></description>
			<content:encoded><![CDATA[<p>The piece of software that I test at work has an option to enable debug logging to a file.  Normally, I run with this enabled so that I have a record of what I did and any errors that I encounter.  However, this file can become extremely bloated and if often hundreds of megabytes by the time I give it to the developer to fix a problem that I found.  I was thinking today about a solution that would be useful for any program that can dump logs to a file.  In Linux, you can create a named pipe, that other programs can write to.  Would it be possible to have one program create this pipe, then have the program under test write to this pipe instead of a file?  I haven't tested this, but I imagine it's possible.</p>
<p>Where this would be useful is your "log interceptor" program could do a multitude of different things with this stream of log data.  For example, it could push it into a database which could later be searched by developers to narrow down time windows or look for specific error messages.  Another really useful thing to do would be to have the log interceptor do basic log rotation.  This could keep the log file size manageable.  Or, maybe you want the log file emailed somewhere every 100k or whatever.  There are a lot of uses I could see for something like this.</p>
<p>Has anyone written or seen such a program?  Am I the only one that thinks this would be useful?  Post a comment and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/05/16/idea-for-logging-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation 6.0 and Ubuntu Hardy</title>
		<link>http://www.thenumber42.net/2008/05/14/vmware-workstation-60-and-ubuntu-hardy/</link>
		<comments>http://www.thenumber42.net/2008/05/14/vmware-workstation-60-and-ubuntu-hardy/#comments</comments>
		<pubDate>Wed, 14 May 2008 20:20:56 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=99</guid>
		<description><![CDATA[I just finished installing VMWare Workstation 6.0.3 under Ubuntu Hardy (8.04) and ran into some issues.  During the configuration, when VMWare is compiling drivers for the system, I got an error saying "include/asm/bitops_32.h:9:2: error: #error only &#60;linux/bitops.h&#62; can be included directly"
From my reading this seems to be related to version 2.6.24 of the Linux kernel. [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished installing VMWare Workstation 6.0.3 under Ubuntu Hardy (8.04) and ran into some issues.  During the configuration, when VMWare is compiling drivers for the system, I got an error saying "<code>include/asm/bitops_32.h:9:2: error: #error only &lt;linux/bitops.h&gt; can be included directly</code>"</p>
<p>From my reading this seems to be related to version 2.6.24 of the Linux kernel.  The solution to this problem is actually quite easy...if you are willing to edit one of the VMWare header files.  A <a href="http://eitchpress.eitchnet.ch/?p=13">blog post</a> pointed me to the solution.  Here is what you need to do:</p>
<ol>
<li><code>cd /usr/lib/vmware/modules/source</code></li>
<li><code>sudo cp vmmon.tar vmmon.tar.orig</code></li>
<li><code>sudo tar xvf vmmon.tar</code></li>
<li><code>cd vmmon-only/include/</code></li>
<li><code>sudo vi vcpuset.h</code></li>
<ul>
<li>Line 74 needs to be changed from:<code> #include "asm/bitops.h"</code> to: <code>#include "linux/bitops.h"</code></li>
</ul>
<li><code>cd ../../</code></li>
<li><code>sudo rm vmmon.tar</code></li>
<li><code>sudo tar cvf vmmon.tar vmmon-only/</code></li>
<li><code>sudo rm -rf vmmon-only/</code></li>
<li><code>sudo vmware-config.pl</code></li>
</ol>
<p>Things should work now.  Good luck.</p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://eitchpress.eitchnet.ch/?p=13'>http://eitchpress.eitchnet.ch/?p=13</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/05/14/vmware-workstation-60-and-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network, network, where is thy speed?</title>
		<link>http://www.thenumber42.net/2008/03/28/network-network-where-is-thy-speed/</link>
		<comments>http://www.thenumber42.net/2008/03/28/network-network-where-is-thy-speed/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 20:39:09 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[duplex]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/2008/03/28/network-network-where-is-thy-speed/</guid>
		<description><![CDATA[In the lab today I was having problems with a slow network.  In tracing the cables from the computer I found they went into a hub, not a switch.  After recovering from shock I checked the card settings to see what duplex mode they were in.  It turns out that in addition to being connected [...]]]></description>
			<content:encoded><![CDATA[<p>In the lab today I was having problems with a slow network.  In tracing the cables from the computer I found they went into a hub, not a switch.  After recovering from shock I checked the card settings to see what duplex mode they were in.  It turns out that in addition to being connected to a hub they were also running in half duplex mode.  This is a very busy network and a with a hub all the computers see the traffic from all the other computers.  A switch would be much better.  So on my todo list goes another task: get a switch from IT for this subnet.</p>
<p><a href="http://www.cyberciti.biz/faq/howto-setup-linux-lan-card-find-out-full-duplex-half-speed-or-mode/">Linux LAN card: Find out full duplex / half speed or mode</a></p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.cyberciti.biz/faq/howto-setup-linux-lan-card-find-out-full-duplex-half-speed-or-mode/'>http://www.cyberciti....x-half-speed-or-mode/</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/03/28/network-network-where-is-thy-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crontab how I love thee</title>
		<link>http://www.thenumber42.net/2008/03/21/crontab-how-i-love-thee/</link>
		<comments>http://www.thenumber42.net/2008/03/21/crontab-how-i-love-thee/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 10:45:11 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[crontab]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/2008/03/21/crontab-how-i-love-thee/</guid>
		<description><![CDATA[Crontab has got to be one of the greatest programs ever written.  How in the world did we get along before being able to schedule the periodic execution of commands?  Of course when I am setting up a cron job I seldom remember the order of the fields, so at the top of [...]]]></description>
			<content:encoded><![CDATA[<p>Crontab has got to be one of the greatest programs ever written.  How in the world did we get along before being able to schedule the periodic execution of commands?  Of course when I am setting up a cron job I seldom remember the order of the fields, so at the top of my crontab files I always stick a large comment block to remind me.  This little diagram is priceless as a header in crontab files.</p>
<pre class="bash"><span style="color: #808080; font-style: italic;"># *     *   *   *    *  <span style="color: #7a0874; font-weight: bold;">command</span> to be executed</span>
<span style="color: #808080; font-style: italic;"># -     -    -    -    -</span>
<span style="color: #808080; font-style: italic;"># |     |     |     |     |</span>
<span style="color: #808080; font-style: italic;"># |     |     |     |     +----- day of week <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0</span> - <span style="color: #000000;">6</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #007800;">Sunday=</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></span>
<span style="color: #808080; font-style: italic;"># |     |     |     +------- month <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1</span> - <span style="color: #000000;">12</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></span>
<span style="color: #808080; font-style: italic;"># |     |     +--------- day of month <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1</span> - <span style="color: #000000;">31</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></span>
<span style="color: #808080; font-style: italic;"># |     +----------- hour <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0</span> - <span style="color: #000000;">23</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></span>
<span style="color: #808080; font-style: italic;"># +------------- min <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0</span> - <span style="color: #000000;">59</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></span></pre>
<p>Here is a good reference link for all things crontab: <a href="http://www.adminschoice.com/docs/crontab.htm">Unix Crontab - setting up cron jobs using crontab</a></p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.adminschoice.com/docs/crontab.htm'>http://www.adminschoice.com/docs/crontab.htm</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/03/21/crontab-how-i-love-thee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
