<?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>totalnetsolutions.net &#187; Linux</title>
	<atom:link href="http://www.totalnetsolutions.net/category/tech/oss/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.totalnetsolutions.net</link>
	<description>totalnetsolutions.net - Complete Networking Solutions for business</description>
	<lastBuildDate>Wed, 14 Jul 2010 14:29:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Device or resource busy trying to open /dev/sdx1</title>
		<link>http://www.totalnetsolutions.net/2010/02/26/device-or-resource-busy-trying-to-open-devsdx1/</link>
		<comments>http://www.totalnetsolutions.net/2010/02/26/device-or-resource-busy-trying-to-open-devsdx1/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 21:22:55 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/?p=119</guid>
		<description><![CDATA[Because not enough information exists in easy-to-find searches: as a simple reminder &#8211; SCSI device IDs can and will change. A few months ago I hot-added a new disk to an ssh bastion host (a VM on ESX). As these things tend to go, I eventually took a maintenance window and updated firmware/BIOS/OS on the [...]]]></description>
			<content:encoded><![CDATA[<p>Because not enough information exists in easy-to-find searches: as a simple reminder &#8211; SCSI device IDs can and will change.</p>
<p>A few months ago I hot-added a new disk to an ssh bastion host (a VM on ESX).  As these things tend to go, I eventually took a maintenance window and updated firmware/BIOS/OS on the ESX host.  When the bastion VM came back online, however, I was presented with an odd error:<br />
<code><br />
[root@bastion ~]: fsck /dev/sdc1<br />
e2fsck 1.39 (29-May-2006)<br />
fsck.ext3: Device or resource busy while trying to open /dev/sdc1<br />
Filesystem mounted or opened exclusively by another program?<br />
[root@oracle1 ~]# cat /proc/mounts<br />
rootfs / rootfs rw 0 0<br />
/dev/root / ext3 rw,data=ordered 0 0<br />
/dev /dev tmpfs rw 0 0<br />
/proc /proc proc rw 0 0<br />
none /selinux selinuxfs rw 0 0<br />
devpts /dev/pts devpts rw 0 0<br />
tmpfs /dev/shm tmpfs rw 0 0<br />
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0<br />
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0<br />
[root@oracle1 ~]# cat /etc/fstab<br />
/dev/main/root          /                       ext3    defaults        1 1<br />
/dev/sdc1               /home                   ext3    defaults        1 2<br />
/dev/main/var           /var                    ext3    defaults        1 2<br />
/dev/main/tmp           /tmp                    ext3    defaults        1 2<br />
LABEL=/boot             /boot                   ext3    defaults        1 2<br />
tmpfs                   /dev/shm                tmpfs   defaults        0 0<br />
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0<br />
sysfs                   /sys                    sysfs   defaults        0 0<br />
proc                    /proc                   proc    defaults        0 0<br />
/dev/main/swap          swap                    swap    defaults        0 0<br />
# Beginning of the block added by the VMware software<br />
.host:/                 /mnt/hgfs               vmhgfs  defaults,ttl=5     0 0<br />
# End of the block added by the VMware software<br />
</code><br />
So everything in the fstab is how I left it &#8211; /dev/sdc1 is the new disk I added that is giving errors mounting.  So I thought to check for corruption on the disk, and found the problem:<br />
<code><br />
[root@oracle1 ~]# fdisk -l<br />
Disk /dev/sda: 42.9 GB, 42949672960 bytes<br />
255 heads, 63 sectors/track, 5221 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1   *           1          13      104391   83  Linux<br />
/dev/sda2              14        5221    41833260   8e  Linux LVM<br />
Disk /dev/sdb: 42.9 GB, 42949672960 bytes<br />
255 heads, 63 sectors/track, 5221 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sdb1               1        5221    41937651   83  Linux<br />
Disk /dev/sdc: 32.2 GB, 32212254720 bytes<br />
255 heads, 63 sectors/track, 3916 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sdc1   *           1        3917    31457279+  8e  Linux LVM<br />
</code></p>
<p>So, a simple fix &#8211; change &#8220;/dev/sdc1&#8243; to &#8220;/dev/sdb1&#8243; in /etc/fstab (or to VOLUME=home), and boot back up.</p>
<p>It&#8217;s not something that&#8217;ll probably happen on this server again, but it is something to be aware of, on both VM guests and on physical servers.  This is why so many newer Linux OSes are using UUID= or VOLUME= instead of device path for SCSI disks.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2010/02/26/device-or-resource-busy-trying-to-open-devsdx1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off console beep on Ubuntu 9.04</title>
		<link>http://www.totalnetsolutions.net/2009/05/04/turn-off-console-beep-on-ubuntu-904/</link>
		<comments>http://www.totalnetsolutions.net/2009/05/04/turn-off-console-beep-on-ubuntu-904/#comments</comments>
		<pubDate>Mon, 04 May 2009 22:35:13 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/?p=103</guid>
		<description><![CDATA[It used to be that you could edit /etc/modprobe.d/blacklist and add &#8220;blacklist pcspkr&#8221; to turn off the console beeps entirely on Ubuntu / Kubuntu.  As of 9.04, the module is now called &#8220;snd_pcsp&#8221;. So, to turn off console (not X terminal, but tty) beeps, you can do one of the following: 1) (This is my [...]]]></description>
			<content:encoded><![CDATA[<p>It used to be that you could edit /etc/modprobe.d/blacklist and add &#8220;blacklist pcspkr&#8221; to turn off the console beeps entirely on Ubuntu / Kubuntu.  As of 9.04, the module is now called &#8220;snd_pcsp&#8221;.</p>
<p>So, to turn off console (not X terminal, but tty) beeps, you can do one of the following:<br />
1) (This is my preference)<br />
<code><br />
echo blacklist snd_pcsp >> /etc/modprobe.d/blacklist.conf<br />
</code> </p>
<p>2) (I&#8217;ve done this, but it doesn&#8217;t affect all software)<br />
<code><br />
for i in 1 2 3 4 5 6<br />
do<br />
        setterm -blength 0 > /dev/tty$i<br />
done</code></p>
<p>3) (Only works per shell if ~/.inputrc is included)<br />
<code><br />
echo set bell-style visible >> ~/.inputrc<br />
</code></p>
<p>Enjoy more-sane editing from ttyX in the future!</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F&amp;title=Turn+off+console+beep+on+Ubuntu+9.04" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F&amp;title=Turn+off+console+beep+on+Ubuntu+9.04" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F&amp;title=Turn+off+console+beep+on+Ubuntu+9.04" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F&amp;title=Turn+off+console+beep+on+Ubuntu+9.04" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F&amp;title=Turn+off+console+beep+on+Ubuntu+9.04', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F&amp;title=Turn+off+console+beep+on+Ubuntu+9.04" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F05%2F04%2Fturn-off-console-beep-on-ubuntu-904%2F&amp;title=Turn+off+console+beep+on+Ubuntu+9.04" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2009/05/04/turn-off-console-beep-on-ubuntu-904/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation and Ubuntu 8.10</title>
		<link>http://www.totalnetsolutions.net/2009/01/02/vmware-workstation-and-ubuntu-810/</link>
		<comments>http://www.totalnetsolutions.net/2009/01/02/vmware-workstation-and-ubuntu-810/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 17:50:12 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/?p=68</guid>
		<description><![CDATA[I just finished my upgrade from Kubuntu 8.04 to 8.10 this past week (since I had downtime from work, I could afford to break things for a few days).  The upgrade went great, and I&#8217;ll write about it shortly, once I get used to the newness. Anyways; Workstation 6.5 has been giving me problems.  Because [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished my upgrade from Kubuntu 8.04 to 8.10 this past week (since I had downtime from work, I could afford to break things for a few days).  The upgrade went great, and I&#8217;ll write about it shortly, once I get used to the newness.</p>
<p>Anyways; Workstation 6.5 has been giving me problems.  Because of the newness of KDE4, I initially thought it was a KDE problem, but it turns out it&#8217;s something between Workstation 6.5 and Ubuntu 8.10.  I just ran the &#8220;adapt &#8211;dist-upgrade-devel&#8221; command from the Ubuntu wiki to upgrade, and upon reboot, I couldn&#8217;t &#8220;ctrl-alt-ins&#8221; or &#8220;ctrl-alt-del&#8221; to log into my Windows VM, my &#8220;Windows/Start&#8221; key on the keyboard wouldn&#8217;t respond, and my arrow keys wouldn&#8217;t work.  Incredibly, when I&#8217;d hit the &#8220;down&#8221; arrow, I&#8217;d get the Windows Start menu pop up!!</p>
<p>Fix is easy, edit /etc/vmware/config and add the line below like:<br />
<code><br />
sudo vim /etc/vmware/config<br />
:$<br />
A  (that's vi-command for "go to the end of the file, and start writing a new line")<br />
xkeymap.nokeycodeMap = true<br />
</code></p>
<p>Have to restart your VMs for this change to take effect.  Thanks to <a href="http://www.yellow-bricks.com/2008/11/19/vmware-workstation-ubuntu-ctrl-alt-ins-not-working/" target="_blank">Duncan Epping</a> for this fix (he posted it in the forums, where I found it).</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2009/01/02/vmware-workstation-and-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing large numbers of systems</title>
		<link>http://www.totalnetsolutions.net/2008/11/22/managing-large-numbers-of-systems/</link>
		<comments>http://www.totalnetsolutions.net/2008/11/22/managing-large-numbers-of-systems/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 18:33:39 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[remote control]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/?p=65</guid>
		<description><![CDATA[In the Windows world, tools like Group Policy, System Center Configuration Manager, and DesktopAuthority, among others, have been around for 8 or more years to allow fast simple deployment of software and updates to remote computers, or force tasks to be run on remote computers. For the Unix/Linux world, there doesn&#8217;t seem to be as [...]]]></description>
			<content:encoded><![CDATA[<p>In the Windows world, tools like Group Policy, <a href="http://www.microsoft.com/Systemcenter/configurationmanager/" target="_blank">System Center Configuration Manager</a>, and <a href="http://www.scriptlogic.com/products/desktopauthority/" target="_blank">DesktopAuthority</a>, among others, have been around for 8 or more years to allow fast simple deployment of software and updates to remote computers, or force tasks to be run on remote computers.</p>
<p>For the Unix/Linux world, there doesn&#8217;t seem to be as much available. </p>
<p>If you have a pure HP-UX shop, there is <a href="http://h18000.www1.hp.com/cpq-products/servers/management/hpsim/plugin-apps.html" target="_blank">HP Systems Insight Manager (SIM)</a> with plug-ins available for software deployment, and I believe <a href="http://www-01.ibm.com/software/tivoli/" target="_blank">IBM Tivoli</a> has a function or sub-product which does the same thing if you have all AIX systems.  <a href="http://www.redhat.com/red_hat_network/" target="_blank">Red Hat Network</a> has a feature to allow commands to be run on your servers, but only whenever they check in with the RHN or your internal Satellite Server (much like Group Policy, except GPO doesn&#8217;t allow &#8220;in the middle of the day&#8221; script creation without GP-Preferences).  So what&#8217;s available that&#8217;s like SCCM or DesktopAuthority &#8211; a &#8220;click now and do this thing&#8221; tool?</p>
<p>A bunch of my customers just have various levels of logging and processing that come down to being a big for loop that ssh&#8217;s into a server and runs a command:<br />
<code>for i in `cat server-list.txt` ; do scp scriptname $i:/root/; ssh $i "/root/scriptname" | tee logfile-$i.log; done;</code><br />
While it works great for smaller commands. if you have a mixed environment, the &#8220;scriptname&#8221; script has to be intelligent enough to know what it&#8217;s running against, or your &#8220;server-list.txt&#8221; has to be broken up by class of system.  In either case, if you have 200 systems in the list, and the task takes 5 minutes per server, a single install will run for 16-17 <b>hours</b>.</p>
<p>Software like <a href="http://www.likewisesoftware.com/products/likewise_enterprise/index.php" target="_blank">Likewise Enterprise</a> which allow Group Policy management to remote computers is great, because you can have guaranteed delivery and execution of your script or command in (by default) 30 minutes, but my problem is how to get it there in the first place?</p>
<p>So, administrators out there in companies with 1000, 4000, 10000+ servers (or even Desktops), what mutli-threaded or multi-process tool are you using to tackle this timing/resouce problem?  Please post below!</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F&amp;title=Managing+large+numbers+of+systems" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F&amp;title=Managing+large+numbers+of+systems" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F&amp;title=Managing+large+numbers+of+systems" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F&amp;title=Managing+large+numbers+of+systems" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F&amp;title=Managing+large+numbers+of+systems', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F&amp;title=Managing+large+numbers+of+systems" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F11%2F22%2Fmanaging-large-numbers-of-systems%2F&amp;title=Managing+large+numbers+of+systems" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2008/11/22/managing-large-numbers-of-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network packet capture on different OSes</title>
		<link>http://www.totalnetsolutions.net/2008/06/30/network-packet-capture-on-different-oses/</link>
		<comments>http://www.totalnetsolutions.net/2008/06/30/network-packet-capture-on-different-oses/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 05:16:50 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2008/06/30/network-packet-capture-on-different-oses/</guid>
		<description><![CDATA[I ran into a problem today where I couldn&#8217;t remember the native packet capture tool for Solaris and couldn&#8217;t install tcpdump, so i thought I&#8217;d put down as many as many native packet capture commands as I knew, by OS, in a single place.  I&#8217;ll update this as I find more, since there&#8217;s hundreds of [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into a problem today where I couldn&#8217;t remember the native packet capture tool for Solaris and couldn&#8217;t install tcpdump, so i thought I&#8217;d put down as many as many native packet capture commands as I knew, by OS, in a single place.  I&#8217;ll update this as I find more, since there&#8217;s hundreds of Operating systems out there.</p>
<ul>
<li>AIX: <a href="http://publib16.boulder.ibm.com/doc_link/en_US/a_doc_lib/cmds/aixcmds3/iptrace.htm" target="_blank">iptrace:</a> /usr/sbin/iptrace [ -a ] [ -b ][ -e ] [ -u ] [ -PProtocol_list ] [ -iInterface ] [ -pPort_list ] [ -sHost [ -b ] ] [ -dHost ] [ -L Log_size ] [ -B ] [ -T ] [ -S snap_length] LogFile</li>
<li>FreeBSD: <a href="http://www.manpages.info/freebsd/tcpdump.1.html" target="_blank">tcpdump (I think):</a> tcpdump [ -adeflnNOpqRStuvxX ] [ -c count ] [ -C file_size ] [ -F file ] [ -i interface ] [ -m module ] [ -r file ] [ -s snaplen ] [ -T type ] [ -w file ] [ -E algo:secret ] [ expression ]</li>
<li>HP-UX: <a href="http://docs.hp.com/en/B2355-60130/nettl.1M.html" target="_blank">nettl:</a> nettl requires a daemon start, and other setup: /usr/sbin/nettl -traceon kind&#8230; -entity subsystem&#8230; [-card dev_name...] [-file tracename] [-m bytes] [-size portsize] [-tracemax maxsize] [-n num_files] [-mem init_mem [max_mem]] [-bind cpu_id] [-timer timer_value]</li>
<li>Linux 2.4 and higher:
<ul>
<li><a href="http://linux.die.net/man/8/tcpdump" target="_blank">tcpdump (some distros): </a>tcpdump [ -AdDefKlLnNOpqRStuUvxX ] [ -c count ] [ -C file_size ] [ -G rotate_seconds ] [ -F file ] [ -i interface ] [ -m module ] [ -M secret ] [ -r file ] [ -s snaplen ] [ -T type ] [ -w file ] [ -W filecount ] [ -E spi@ipaddr algo:secret,... ] [ -y datalinktype ] [ -z postrotate-command ] [ -Z user ] [ expression ]</li>
<li><a href="http://wiki.wireshark.org/CaptureSetup" target="_blank">wireshark (some distros, used to be called &#8220;ethereal&#8221;): </a>GUI-config, no command-line, use tethereal (now tshark) for that</li>
<li><a href="http://www.wireshark.org/docs/man-pages/tshark.html" title="tshark" target="_blank">tshark</a>: tshark [ -a &lt;capture autostop condition&gt; ] &#8230; [ -b &lt;capture ring buffer option&gt;] &#8230; [ -B &lt;capture buffer size (Win32 only)&gt; ]  [ -c &lt;capture packet count&gt; ] [ -C &lt;configuration profile&gt; ] [ -d &lt;layer type&gt;==&lt;selector&gt;,&lt;decode-as protocol&gt; ] [ -D ] [ -e &lt;field&gt; ] [ -E &lt;field print option&gt; ] [ -f &lt;capture filter&gt; ] [ -F &lt;file format&gt; ] [ -h ] [ -i &lt;capture interface&gt;|- ] [ -l ] [ -L ] [ -n ] [ -N &lt;name resolving flags&gt; ] [ -o &lt;preference setting&gt; ] &#8230; [ -p ] [ -q ] [ -r &lt;infile&gt; ] [ -R &lt;read (display) filter&gt; ] [ -s &lt;capture snaplen&gt; ] [ -S ] [ -t ad|a|r|d|e ] [ -T pdml|psml|ps|text|fields ] [ -v ] [ -V ] [ -w &lt;outfile&gt;|- ] [ -x ] [ -X &lt;eXtension option&gt;] [ -y &lt;capture link type&gt; ] [ -z &lt;statistics&gt; ] [ &lt;capture filter&gt; ]</li>
</ul>
</li>
<li>Mac OSX: <a href="http://developer.apple.com/qa/qa2001/qa1176.html" target="_blank">tcpdump (among others): </a>tcpdump [ -adeflnNOpqRStuvxX ] [ -c count ] [ -C file_size ] [ -F file ] [ -i interface ] [ -m module ] [ -r file ] [ -s snaplen ] [ -T type ] [ -w file ] [ -E algo:secret ] [ expression ]</li>
<li>Solaris: <a href="http://www.bga.org/~lessem/psyc5112/usail/man/solaris/snoop.1.html" target="_blank">snoop:</a> snoop [ -aPDSvVNC ] [ -d device ] [ -s snaplen ] [ -c maxcount ] [ -i filename ] [ -o filename ] [ -n filename ] [ -t [ r | a | d ] ] [ -p first [ , last ] ] [ -x offset [ , length ] ] [ expression ]</li>
<li>Windows 2000, XP, 2003, Vista, 2008 and beyond:
<ul>
<li><a href="http://support.microsoft.com/kb/294818" target="_blank">netmon (not installed by default):</a> GUI config, <a href="http://support.microsoft.com/kb/231920/EN-US/" target="_blank">filter creation info here</a></li>
<li><a href="http://wiki.wireshark.org/CaptureSetup" target="_blank">wireshark (available by download):</a> GUI-config, no command-line</li>
</ul>
</li>
</ul>
<p>Any others anyone wants added (or corrected), just comment or email and I&#8217;ll update this.<br />
(Edit 7/29/08 &#8211; change tcpdump link)<br />
(Edit 10/13/08 &#8211; add tshark info, thanks Jefferson!, and wireshark on Windows)<br />
(Edit 12/27/09 &#8211; update IBM iptrace man page link)</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F&amp;title=Network+packet+capture+on+different+OSes" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F&amp;title=Network+packet+capture+on+different+OSes" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F&amp;title=Network+packet+capture+on+different+OSes" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F&amp;title=Network+packet+capture+on+different+OSes" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F&amp;title=Network+packet+capture+on+different+OSes', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F&amp;title=Network+packet+capture+on+different+OSes" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F06%2F30%2Fnetwork-packet-capture-on-different-oses%2F&amp;title=Network+packet+capture+on+different+OSes" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2008/06/30/network-packet-capture-on-different-oses/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP mail(), Apache, and SELinux (FC7)</title>
		<link>http://www.totalnetsolutions.net/2007/11/02/php-mail-apache-and-selinux-fc7/</link>
		<comments>http://www.totalnetsolutions.net/2007/11/02/php-mail-apache-and-selinux-fc7/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 17:48:20 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2007/11/02/php-mail-apache-and-selinux-fc7/</guid>
		<description><![CDATA[(Originally drafted November 2nd, 2007, finally finished and posted much later) As I posted last night, we built a new Fedora Core 7 box last night for PHP testing. Whenever at all possible, I leave SELinux enabled on new systems in Enforcing mode. Oracle 10g hasn’t had any issues with it, Oracle 11i EBusiness Suite [...]]]></description>
			<content:encoded><![CDATA[<p>(Originally drafted <a href="http://www.totalnetsolutions.net/2007/11/02/fedora-core-7-php-can%E2%80%99t-send-mail/">November 2nd, 2007</a>, finally finished and posted much later)<br />
As I posted last night, we built a new Fedora Core 7 box last night for PHP testing. Whenever at all possible, I leave SELinux enabled on new systems in Enforcing mode. Oracle 10g hasn’t had any issues with it, Oracle 11i EBusiness Suite hasn’t had any issues with it, and my NFS and FTP servers run without at hitch. The Oracle systems are RHEL4 (Red Hat Enterprise Linux 4), and the NFS and FTP servers are RHEL5.</p>
<p>However, this new PHP webserver caused a few glitches. I feel a little silly for not catching this as being an SELinux problem earlier, but since it’s caused 0 issues in 9 months of use in production, I didn’t even consider it initially.</p>
<p>What we initially saw was 0 errors from PHP &#8211; all the pages would run without error. PHP.ini has the following lines:</p>
<blockquote><p>sendmail_from = from@domain.com<br />
sendmail_path = /usr/sbin/sendmail -t -i</p></blockquote>
<p>and testing <code>cat mail.txt | /usr/sbin/sendmail -t -i</code> as a non-root user delivered mail properly as well. Combine that with /var/log/maillog being completely empty for every test page loaded, and it was sure that the mail wasn’t getting TO postfix (our preferred localhost MTA).</p>
<p>So, I looked at the /var/log/httpd/error_log for apache and found:</p>
<blockquote><p>sh: /usr/sbin/sendmail: Permission denied<br />
sh: /usr/sbin/sendmail: Permission denied<br />
sh: /usr/sbin/sendmail: Permission denied<br />
sh: /usr/sbin/sendmail: Permission denied<br />
sh: /usr/sbin/sendmail: Permission denied</p></blockquote>
<p>But I knew that non-root users could access sendmail as defined in php.ini, so I finally decided to tail /var/log/messages and saw:</p>
<blockquote><p> Nov 2 11:05:41 $(servername) setroubleshoot: SELinux is preventing the sh from using potentially mislabeled files sendmail.postfix (sendmail_exec_t). For complete SELinux messages. run sealert -l c9001c48-5d48-4b7c-9fd7-8400544daa8f</p></blockquote>
<p>So now to fix it… <more><br />
This is surprisingly simple, actually.  The sad part is, we had this problem, fixed it, forgot about it, had it again, and I blogged it&#8230; and lost the post.  so this has been sitting in my &#8220;drafts&#8221; folder for about 10 months now:<br />
<code>setsebool httpd_can_sendmail=true<br />
service httpd restart<br />
service postfix restart</code><br />
And retry sending mail.  There&#8217;s a few posts about sendmail and having to change permissions on home directories or on &#8220;main.cf&#8221;, but I use postfix, and not sendmail, so I don&#8217;t know how effective or necessary those changes are.</more></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F&amp;title=PHP+mail%28%29%2C+Apache%2C+and+SELinux+%28FC7%29" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F&amp;title=PHP+mail%28%29%2C+Apache%2C+and+SELinux+%28FC7%29" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F&amp;title=PHP+mail%28%29%2C+Apache%2C+and+SELinux+%28FC7%29" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F&amp;title=PHP+mail%28%29%2C+Apache%2C+and+SELinux+%28FC7%29" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F&amp;title=PHP+mail%28%29%2C+Apache%2C+and+SELinux+%28FC7%29', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F&amp;title=PHP+mail%28%29%2C+Apache%2C+and+SELinux+%28FC7%29" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Fphp-mail-apache-and-selinux-fc7%2F&amp;title=PHP+mail%28%29%2C+Apache%2C+and+SELinux+%28FC7%29" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2007/11/02/php-mail-apache-and-selinux-fc7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fedora Core 7 &#8211; PHP can’t send mail</title>
		<link>http://www.totalnetsolutions.net/2007/11/02/fedora-core-7-php-can%e2%80%99t-send-mail/</link>
		<comments>http://www.totalnetsolutions.net/2007/11/02/fedora-core-7-php-can%e2%80%99t-send-mail/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 06:33:16 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2007/11/02/fedora-core-7-php-can%e2%80%99t-send-mail/</guid>
		<description><![CDATA[I’m hunting down an issue on Fedora Core 7 where PHP5 can’t send mail using sendmail or postfix. In /var/log/httpd/access_log we are getting sh: /usr/sbin/sendmail: Permission denied every time the mail() function is accessed, and postfix never sees any connection. This is being caused by SELinux blocking Apache from transitioning from the “httpd” role to [...]]]></description>
			<content:encoded><![CDATA[<p>I’m hunting down an issue on Fedora Core 7 where PHP5 can’t send mail using sendmail or postfix. In /var/log/httpd/access_log we are getting <code>sh: /usr/sbin/sendmail: Permission denied</code> every time the <code>mail()</code> function is accessed, and postfix never sees any connection. This is being caused by SELinux blocking Apache from transitioning from the “httpd” role to the “mta” role &#8211; I’m just not sure what the *best* way to fix it is yet. I haven’t seen many posts about this, so stay tuned &#8211; I expect to have a fix tomorrow afternoon.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F&amp;title=Fedora+Core+7+%26%238211%3B+PHP+can%E2%80%99t+send+mail" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F&amp;title=Fedora+Core+7+%26%238211%3B+PHP+can%E2%80%99t+send+mail" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F&amp;title=Fedora+Core+7+%26%238211%3B+PHP+can%E2%80%99t+send+mail" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F&amp;title=Fedora+Core+7+%26%238211%3B+PHP+can%E2%80%99t+send+mail" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F&amp;title=Fedora+Core+7+%26%238211%3B+PHP+can%E2%80%99t+send+mail', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F&amp;title=Fedora+Core+7+%26%238211%3B+PHP+can%E2%80%99t+send+mail" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F11%2F02%2Ffedora-core-7-php-can%25e2%2580%2599t-send-mail%2F&amp;title=Fedora+Core+7+%26%238211%3B+PHP+can%E2%80%99t+send+mail" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2007/11/02/fedora-core-7-php-can%e2%80%99t-send-mail/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Linux Disk Utilization, Pt. 2</title>
		<link>http://www.totalnetsolutions.net/2007/10/26/linux-disk-utilization-pt-2/</link>
		<comments>http://www.totalnetsolutions.net/2007/10/26/linux-disk-utilization-pt-2/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 05:10:50 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2007/10/26/linux-disk-utilization-pt-2/</guid>
		<description><![CDATA[Previously I mentioned some issues I had been having on Kubuntu Feisty Fawn with disk utilization seemingly caused by unflushed disk buffers. I alluded to believing that my “laptop-mode.conf” parameters were at fault. With my recent upgrade of that same laptop to Kubuntu Gutsy Gibbon, I kept the laptop-mode.conf file a bit closer to the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.totalnetsolutions.net/2007/10/05/linux-disk-utilization/" target="_blank">Previously</a> I mentioned some issues I had been having on Kubuntu Feisty Fawn with disk utilization seemingly caused by unflushed disk buffers. I alluded to believing that my “laptop-mode.conf” parameters were at fault.</p>
<p>With my recent upgrade of that same laptop to Kubuntu Gutsy Gibbon, I kept the laptop-mode.conf file a bit closer to the maintaner’s version. There are some changes to the “dirty-writeback-centiseconds” and the “dirty-background-ratio” values from what I posted, and my issue seems to have gone away. I’ve been able to go back to running my Windows 2003 SBS server with a Centrify DirectControl lab environment and a RHEL 4 Oracle 10g server attached at the same time.</p>
<p>The configuration files that work MUCH better are attached here:</p>
<p><a href="http://www.totalnetsolutions.net/wp-content/uploads/2007/11/laptop-modeconf.txt" title="laptop-mode.conf">laptop-mode.conf</a></p>
<p><a href="http://www.totalnetsolutions.net/wp-content/uploads/2007/11/cpufreqdconf.txt" title="cpufreqd.conf">cpufreqd.conf</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F&amp;title=Linux+Disk+Utilization%2C+Pt.+2" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F&amp;title=Linux+Disk+Utilization%2C+Pt.+2" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F&amp;title=Linux+Disk+Utilization%2C+Pt.+2" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F&amp;title=Linux+Disk+Utilization%2C+Pt.+2" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F&amp;title=Linux+Disk+Utilization%2C+Pt.+2', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F&amp;title=Linux+Disk+Utilization%2C+Pt.+2" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F26%2Flinux-disk-utilization-pt-2%2F&amp;title=Linux+Disk+Utilization%2C+Pt.+2" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2007/10/26/linux-disk-utilization-pt-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation 6 &#8211; Kernel 2.6.22 on Ubuntu Gutsy</title>
		<link>http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/</link>
		<comments>http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 17:37:48 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/</guid>
		<description><![CDATA[I upgraded my Dell D620 from Feisty to Gutsy this weekend, which included an upgrade to kernel 2.6.22. Every time there’s a kernel upgrade, VMWare Workstation needs to be reconfigured with “vmware-config.pl”. This isn’t an issue normally, but today it was. Thanks to Chris Hope with Electric Toolbox I was able to fix the problem [...]]]></description>
			<content:encoded><![CDATA[<p>I upgraded my Dell D620 from Feisty to Gutsy this weekend, which included an upgrade to kernel 2.6.22. Every time there’s a kernel upgrade, VMWare Workstation needs to be reconfigured with “vmware-config.pl”. This isn’t an issue normally, but today it was. Thanks to <a href="http://www.electrictoolbox.com/vmware-config-failed-opensuse-103/" onclick="javascript:urchinTracker ('/outgoing/www.electrictoolbox.com/vmware-config-failed-opensuse-103/');" target="_blank">Chris Hope with Electric Toolbox</a> I was able to fix the problem quick and easy.</p>
<p>For completeness the error I was getting was the same:<br />
<code>/tmp/vmware-config1/vmnet-only/userif.c:630: error: ‘const struct sk_buff’ has no member named ‘h’</code><br />
when trying to build the VMNet module &#8211; VMMon built and inserted perfectly. Downloaded 6.0.1 and installed it, and I’m back and in the game.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux disk utilization</title>
		<link>http://www.totalnetsolutions.net/2007/10/05/linux-disk-utilization/</link>
		<comments>http://www.totalnetsolutions.net/2007/10/05/linux-disk-utilization/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 06:46:13 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2007/10/05/linux-disk-utilization/</guid>
		<description><![CDATA[On my Ubuntu Dell D620 laptop (which dual-boots into Windows XP occasionally), I run some pretty demanding software. Sometimes. As a systems architect, I spend a lot of time in standard “Information Worker” tools &#8211; email, office suite, web browser for white papers and product reviews. For me, OpenOffice.org, Evolution, and Firefox work great. I [...]]]></description>
			<content:encoded><![CDATA[<p>On my Ubuntu Dell D620 laptop (which dual-boots into Windows XP occasionally), I run some pretty demanding software. Sometimes. As a systems architect, I spend a lot of time in standard “Information Worker” tools &#8211; email, office suite, web browser for white papers and product reviews. For me, OpenOffice.org, Evolution, and Firefox work great. I even like Evolution’s Exchange plugin better than Outlook &#8211; everything updates on my Windows Mobile phone just like Outlook, it’s faster than Outlook, and it threads my messages. I love message threading for all the reasons that it was invented.</p>
<p>However, because I mostly design Windows networks, I also run VMWare Workstation 6 with the following VMs: Windows XP Pro joined to primary domain (full workstation with Office 2003, Visio, Outlook (and EMC EmailExtender plugins), Windows Admin Pack, Resource Kit, SQL Enterprise Manager, and Exchange Admin Pack), Windows Vista Enterprise, Windows 2003 DC, Exchange, SQL server, Windows XP Pro joined to VM domain, RHEL 4, RHEL 5, and a Live-CD system that I often use to test bootable CDs. And a sysprep’d Windows install.</p>
<p>All that, plus Evolution caching my email and Firefox being disk-happy (did you ever “strace -p $(pgrep firefox) -e trace=open,close,read,write”? It’s busier than Evolution during an offline mail check!), means my 7200 RPM 160GB SATA disk gets hammered. Me also using laptop-mode-tools changing my vm.dirty_writeback_* settings and read/write cache isn’t helping either, I’m sure.</p>
<p><span id="more-35"></span>Today and yesterday I ran into an issue where my disk would begin a sync that would last 10-20 minutes, leaving me unable to work the entire time that was happening. Hunting down WHAT was causing this, however, was even more frusterating than it happening (If I shut down any of the 3 above-mentioned programs, the problem went away &#8211; it only happened with all 3 open). In Windows, you can open Task Manager, go to the “Process” tab, click “View-&gt; Columns” and add “IO Write Bytes” and “IO Read Bytes” and watch the numbers count up. Or you can use Perfmon and look at IO reads/writes/bytes per second or total, and know immediately what’s causing all your disk IO pain. I still don’t know how to do this in Linux.</p>
<p>First, any hunt for “disk utilization” and “Linux” on Google directs you to hundreds of sites, forums, and blogs evangelizing the wonders of “df” for disk utilization. Yes, it’s really nice to know how much free space I have on my hard drives- that’s why I have SuperKaramba to tell me. But when a problem hits and leaves me unable to work, it’s useless.</p>
<p>“iostat -k 1″ is great &#8211; you’ll know immediately which disk is being used, and how hard. But on a laptop with a single disk, you already know.</p>
<p>“top” sorted by process-state will show you what’s in “waiting on IO” state, but not what’s CAUSING the IO that’s causing everything else to wait.</p>
<p>“sar” seems to be the only tool that can provide per-process IO stats, but it has to be pre-set up to write to a log. And I can’t begin to guess how well that will work when my disk is at 100% utilization (peaked at 120tps today).</p>
<p>So if anyone knows of any way to know what’s causing disk IO in a “right now” fashion, please comment or email me. And if you’re curious more about my problem:</p>
<ol>
<li>Only happens when VMWare (with a guest), firefox, and Evolution are all running.</li>
<li>VMWare with multiple guests runs fine, and never has this issue.</li>
<li><code>rauch@lt00-bofh:~$ free<br />
total       used       free     shared    buffers     cached<br />
Mem:       3348960    1099216    2249744          0      68668     533124<br />
-/+ buffers/cache:     497424    2851536<br />
Swap:      6000268          0    6000268</code></li>
<li>Happens with Laptop_mode disabled or enabled, on AC or on battery</li>
<li>“sync” causes the exact same symptoms, leading me to believe that somehow I’m getting a LOT more dirty pages than my parameters are set at.</li>
<li><code>dirty_background_ratio<br />
1<br />
dirty_expire_centisecs<br />
60003<br />
dirty_ratio<br />
60<br />
dirty_writeback_centisecs<br />
60003</code></li>
<li>For now, I just close Firefox when I have VMWare open, which means I spend a lot more time in IE than I want to.</li>
</ol>
<p>As a final note, I’ve updated my <a href="http://www.totalnetsolutions.net/2007/08/22/evdo-on-debian-ubuntu/" target="_blank">Linux EVDO post here</a> with my new built-in card’s info.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F&amp;title=Linux+disk+utilization" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F&amp;title=Linux+disk+utilization" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F&amp;title=Linux+disk+utilization" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F&amp;title=Linux+disk+utilization" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F&amp;title=Linux+disk+utilization', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F&amp;title=Linux+disk+utilization" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F05%2Flinux-disk-utilization%2F&amp;title=Linux+disk+utilization" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2007/10/05/linux-disk-utilization/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
