<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>MudNCrud Blog</title>
	<link>http://www.mudncrud.com/blog</link>
	<description></description>
	<pubDate>Tue, 11 May 2010 23:38:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Sending mail using Perl on Windows NET::SMTP</title>
		<link>http://www.mudncrud.com/blog/?p=76</link>
		<comments>http://www.mudncrud.com/blog/?p=76#comments</comments>
		<pubDate>Tue, 11 May 2010 23:38:53 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[work]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=76</guid>
		<description><![CDATA[NET:SMTP is a bit limited compared to Mail::Sender  or MIME::Lite.  For simple emails is is nice and simple.  It can also be handy when working on system where it is very difficult to make changes.  In my case I had 15 system with different version of Perl and make changes was difficult at best.
#!/perl/bin -w
use [...]]]></description>
			<content:encoded><![CDATA[<p>NET:SMTP is a bit limited compared to Mail::Sender  or MIME::Lite.  For simple emails is is nice and simple.  It can also be handy when working on system where it is very difficult to make changes.  In my case I had 15 system with different version of Perl and make changes was difficult at best.</p>
<p>#!/perl/bin -w</p>
<p>use Net::SMTP;</p>
<p>$smtp = Net::SMTP->new( Host => &#8220;your.mail.server.com&#8221;,<br />
Timeout => 20,<br />
Debug   => 0,<br />
) || die &#8220;SMTP failed&#8221;;</p>
<p>$smtp->mail(&#8217;my.email@null.com&#8217;);     # use the sender&#8217;s address here<br />
$smtp->recipient(&#8217;someones.email@null.com&#8217;, &#8217;somebody.else@null.com&#8217;, { Notify => [&#8217;FAILURE&#8217;,'DELAY&#8217;], SkipBad => 1 });   # Good<br />
#        $smtp->to(&#8217;someones.email@null.com&#8217;);        # recipient&#8217;s address<br />
#        $smtp->to(&#8217;somebody.else@null.com&#8217;);        # recipient&#8217;s address<br />
$smtp->data();                      # Start the mail</p>
<p># Send the header.<br />
$smtp->datasend(&#8221;Priority: Urgent\n&#8221;);<br />
$smtp->datasend(&#8221;To: someones.email\@null.com, somebody.else\@null.com\n&#8221;);<br />
$smtp->datasend(&#8221;From: my.email\@null.com\n&#8221;);<br />
$smtp->datasend(&#8221;Subject: Windows Perl Test Mail.\n&#8221;);<br />
$smtp->datasend(&#8221;\n&#8221;);</p>
<p># Send the body.<br />
$smtp->datasend(&#8221;Please reply if you recieved this email.  My name is Mud.\n&#8221;);<br />
$smtp->dataend();                   # Finish sending the mail<br />
$smtp->quit;                        # Close the SMTP connection</p>
<p>If you call the pl2bat utility on your Perl script <em>helloworld.pl</em>, like this:</p>
<pre>    C:> pl2bat helloworld.pl</pre>
<p>it will produce a batch file, <em>helloworld.bat</em>. You can then invoke the script just like this:</p>
<pre>    C:> helloworld</pre>
<pre>     Hello, World!</pre>
<pre></pre>
<pre></pre>
<p>You can invoke it on the command line like this:</p>
<p>cat myfile.txtYou can use it with I/O redirection (Windows 2000 SP3 and later) like this:</p>
<p>cat myfile.txt > newfile.txt     cat myfile.txt | more</p>
<p>The best approach to use when writing Perl scripts that need to send email and also need to work on both UNIX and Windows systems is to use the Mail::Sender modules</p>
<p>You can install Mail::Sender by running:</p>
<pre>  ppm install mail-sender</pre>
<p>&#8230;at a command prompt. Documentation for using Mail::Sender is available here:</p>
<p><a href="http://search.cpan.org/%7Ejenda/Mail-Sender-0.8.10/Sender.pm">http://search.cpan.org/~jenda/Mail-Sender-0.8.10/Sender.pm</a></p>
<p>unix mail with perl</p>
<p>http://www.revsys.com/writings/perl/sending-email-with-perl.html</p>
<p>MIME::Lite::TT::</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=76</wfw:commentRss>
		</item>
		<item>
		<title>Free Anti Virus Software</title>
		<link>http://www.mudncrud.com/blog/?p=74</link>
		<comments>http://www.mudncrud.com/blog/?p=74#comments</comments>
		<pubDate>Thu, 08 Apr 2010 15:48:16 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[RedHat]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=74</guid>
		<description><![CDATA[Avast -  Very good for rootkits.  Flexible antivirus tool.
rkhunter - tools used to find root kits.
AVG
iAntiVirus - Anti Virus for Mac.
Comodo - firewall fairly easy
Gdata - uses 2 A/V engines
Vipre - is a very slim software excellent for netbooks,  and power users who prefer perforance.
BitDefender - possibly the best graphical interface for Linux.  Works [...]]]></description>
			<content:encoded><![CDATA[<p>Avast -  Very good for rootkits.  Flexible antivirus tool.</p>
<p>rkhunter - tools used to find root kits.</p>
<p>AVG</p>
<p>iAntiVirus - Anti Virus for Mac.</p>
<p>Comodo - firewall fairly easy</p>
<p>Gdata - uses 2 A/V engines</p>
<p>Vipre - is a very slim software excellent for netbooks,  and power users who prefer perforance.</p>
<p>BitDefender - possibly the best graphical interface for Linux.  Works with both Linux and Windows.  Can attach a windows disk to a Linux box then scan it.</p>
<p><span id="more-32789"></span></p>
<p>Avira/Antivir - good CLI.  Can attach a windows disk to a Linux box then scan it.  Finds stuff that other tools do not.</p>
<p>MSE (Microsoft Security Essentials) - Anti Virus from Microsoft.  This should be the absolute minimum that is used on a Windows machine.  Simple, free effective.</p>
<p>ClamAV - Used for Mail Servers.</p>
<p>Dr.Web CureIt! - virus checker that you can put on a USB. This program is a small binary that you is manually launched.</p>
<p>ESET Smart Security Anti Virus and learning Firewall.</p>
<p>ZoneAlarm - Antivirus, Boot Authentication, encryption.  This program has come a long way but is no longer the light weight tool it once was.  Requires active participation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=74</wfw:commentRss>
		</item>
		<item>
		<title>VMWare commands</title>
		<link>http://www.mudncrud.com/blog/?p=73</link>
		<comments>http://www.mudncrud.com/blog/?p=73#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:58:45 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[vmware]]></category>

		<category><![CDATA[work]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=73</guid>
		<description><![CDATA[vmkfstools x (to change size)
vmkfstools -l (to clone)
service &#8212; mgmt -vmware stop
vmware-cmd &#60;path&#62; stop reset status start (affects start stop)
]]></description>
			<content:encoded><![CDATA[<p>vmkfstools x (to change size)</p>
<p>vmkfstools -l (to clone)</p>
<p>service &#8212; mgmt -vmware stop</p>
<p>vmware-cmd &lt;path&gt; stop reset status start (affects start stop)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=73</wfw:commentRss>
		</item>
		<item>
		<title>6 Ways to connect to ESX Server</title>
		<link>http://www.mudncrud.com/blog/?p=72</link>
		<comments>http://www.mudncrud.com/blog/?p=72#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:04:03 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[vmware]]></category>

		<category><![CDATA[work]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=72</guid>
		<description><![CDATA[ - Console
-  Remote SSH
- Web Access
- Virtual Infrastructure Client (VSphere)
- Virtual Center - Entire Infrastructure
- RCLI (Remote command Line Interface)
]]></description>
			<content:encoded><![CDATA[<p> - Console</p>
<p>-  Remote SSH</p>
<p>- Web Access</p>
<p>- Virtual Infrastructure Client (VSphere)</p>
<p>- Virtual Center - Entire Infrastructure</p>
<p>- RCLI (Remote command Line Interface)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=72</wfw:commentRss>
		</item>
		<item>
		<title>Free Tools / Downloads</title>
		<link>http://www.mudncrud.com/blog/?p=70</link>
		<comments>http://www.mudncrud.com/blog/?p=70#comments</comments>
		<pubDate>Wed, 03 Mar 2010 04:52:16 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=70</guid>
		<description><![CDATA[Ad-Aware Free - Find and remove SpyWare
Audacity - Record and edit Sound
BitTorrent - file Sharing
Dropbox - 2gb of online data
FreeConference.com - Conference call service
IMDb - Movie Review Database
OpenOffice.org - Office Sweet
Gimp - Image Editor
Putty - xterm for Windows
Keypass - Password Safe
Password Safe -  the name says it all
superantispyware - find and remove spyware
 ccleaner - cleans [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pcworld.com/downloads/file/fid,7423/description.html">Ad-Aware Free</a> - Find and remove SpyWare</p>
<p><a href="http://www.pcworld.com/downloads/file/fid,22513/description.html">Audacity</a> - Record and edit Sound</p>
<p><a href="http://www.pcworld.com/downloads/file/fid,23326/description.html">BitTorrent</a> - file Sharing</p>
<p><a href="http://www.pcworld.com/downloads/file/fid,77029/description.html">Dropbox</a> - 2gb of online data</p>
<p><a href="http://www.freeconference.com/">FreeConference.com</a> - Conference call service</p>
<p><a href="http://www.imdb.com/">IMDb</a> - Movie Review Database</p>
<p><a href="http://www.pcworld.com/downloads/file/fid,23158/description.html">OpenOffice.or</a>g - Office Sweet</p>
<p><a href="http://www.gimp.org/">Gimp</a> - Image Editor</p>
<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">Putty</a> - xterm for Windows</p>
<p><a href="http://keepass.info/download.html">Keypass</a> - Password Safe</p>
<p><a href="http://passwordsafe.sourceforge.net/">Password Saf</a>e -  the name says it all</p>
<p><a href="http://www.superantispyware.com/">superantispyware</a> - find and remove spyware</p>
<p><a href="http://www.ccleaner.com/"> ccleaner</a> - cleans unused files, web traffic etc</p>
<p><a href="http://www.stardock.com/products/Fences/">Fences</a> - Organize Windows Desktop Icons</p>
<p><a href="http://www.piriform.com/defraggler">defraggler</a> - Defrag Windows</p>
<p><a href="http://sourceforge.net/projects/ultradefrag/files/">UltraDefrag </a>- Defrag Window</p>
<p><a href="http://www.microsoft.com/Security_Essentials/">MSE</a> - Remove Spy Ware</p>
<p><a href="http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx">BGInfo</a> - System information on Windows Desktop</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=70</wfw:commentRss>
		</item>
		<item>
		<title>Solaris - format</title>
		<link>http://www.mudncrud.com/blog/?p=50</link>
		<comments>http://www.mudncrud.com/blog/?p=50#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:23:11 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[Sun]]></category>

		<category><![CDATA[Solaris]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=50</guid>
		<description><![CDATA[ # format
Searching for disks&#8230;done
AVAILABLE DISK SELECTIONS:
0. c0t0d0 &#60;drive not available: formatting&#62;
/sbus@6,0/SUNW,socal@d,10000/sf@0,0/ssd@w210000163787753a,0
Sometimes
# format -Mm
may be helpful as this reports additional messages about what is happening.
Get a list of disks
# format &#60; /dev/null or echo &#8220;\n&#8221; &#124; format
format non destructive commands
disk, current, defect, verify, save, inquiry
format destructive commands
type, partition, format, repair, label, analyze, backup
formating using another disk
# [...]]]></description>
			<content:encoded><![CDATA[<p> # format<br />
Searching for disks&#8230;done<br />
AVAILABLE DISK SELECTIONS:<br />
0. c0t0d0 &lt;drive not available: formatting&gt;<br />
/sbus@6,0/SUNW,socal@d,10000/sf@0,0/ssd@w210000163787753a,0</p>
<p>Sometimes</p>
<p># format -Mm<br />
may be helpful as this reports additional messages about what is happening.</p>
<p>Get a list of disks</p>
<p># format &lt; /dev/null or echo &#8220;\n&#8221; | format</p>
<p>format non destructive commands<br />
disk, current, defect, verify, save, inquiry</p>
<p>format destructive commands<br />
type, partition, format, repair, label, analyze, backup</p>
<p>formating using another disk<br />
# prtvtoc /dev/rdsk/c0t0d0s2 | fmthard -s – /dev/rdsk/c0t2d0s2</p>
<p>Install boot block<br />
# installboot /usr/platform/`uname -i`/lib/fs/ufs/bootblk /dev/rdsk/c0t2d0s0</p>
<p>A fairly typical layout is</p>
<p>0. /<br />
1.  swap<br />
2. whole disk<br />
3.  /var<br />
4. /data</p>
<p>If the system has has a database locally and there is a need for a bit of extra speed then /data can always be put on the faster part of the disk.  Not to many systems swap much anymore since there is the ability to put in as much memory as is needed.  Although if needed a seperate filesystem can be created for a swap partition.<br />
0. /data<br />
1. /<br />
2. whole disk<br />
3. /swap<br />
4. /var</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=50</wfw:commentRss>
		</item>
		<item>
		<title>Solaris - Compress, Uncompress</title>
		<link>http://www.mudncrud.com/blog/?p=57</link>
		<comments>http://www.mudncrud.com/blog/?p=57#comments</comments>
		<pubDate>Tue, 01 Sep 2009 17:23:28 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=57</guid>
		<description><![CDATA[Backup to a USB drive
Mount USB drive and check contents
# volrmmount -i rmdisk0; cd /rmdisk/rmdisk0; ls -FC
tar -cf foobar.tar /tmp/dir
jar cf foobar.jar /tmp/dir/*
jar are cool, they do however require the Jave Runtime Engine.  jar&#8217;s do not maintain soft links the do follow the soft link and copy the contents. 
compress -v foobar.tar
ends up with foobar.tar.Z
to view [...]]]></description>
			<content:encoded><![CDATA[<p>Backup to a USB drive</p>
<p>Mount USB drive and check contents</p>
<p># volrmmount -i rmdisk0; cd /rmdisk/rmdisk0; ls -FC</p>
<p>tar -cf foobar.tar /tmp/dir</p>
<p>jar cf foobar.jar /tmp/dir/*</p>
<p>jar are cool, they do however require the Jave Runtime Engine.  jar&#8217;s do not maintain soft links the do follow the soft link and copy the contents. </p>
<p>compress -v foobar.tar</p>
<p>ends up with foobar.tar.Z</p>
<p>to view compress files use zcat foobar.tar.Z | less</p>
<p>or extract the output in conjunction with tar</p>
<p>zcat foobar.tar.Z | tar xf -</p>
<p>uncompress -v foobar.tar.Z</p>
<p>look at contents with uncompress</p>
<p>uncompress -c foobar.tar.Z | tar xvf -</p>
<p>compress and uncompress with 7za</p>
<p>7za a foobar.7z file1 file2</p>
<p>7za x foobar.7z</p>
<p>gzip -v filename</p>
<p>gunzip filename</p>
<p>gzcat filename to view contents of zip file</p>
<p>use unzip on .jar .zip files</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=57</wfw:commentRss>
		</item>
		<item>
		<title>x86 / Linux raid</title>
		<link>http://www.mudncrud.com/blog/?p=60</link>
		<comments>http://www.mudncrud.com/blog/?p=60#comments</comments>
		<pubDate>Tue, 01 Sep 2009 17:20:57 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[Raid]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=60</guid>
		<description><![CDATA[Note not &#8220;hardware&#8221; raid cards for pc type machines actually do hardware raid.  Most of the cheaper raid controllers are doing a form of software raid that uses their driver and the system bios.
 At that point it is probably best just to use the OS to do the raid and skip the extra.
 If it states [...]]]></description>
			<content:encoded><![CDATA[<p>Note not &#8220;hardware&#8221; raid cards for pc type machines actually do hardware raid.  Most of the cheaper raid controllers are doing a form of software raid that uses their driver and the system bios.</p>
<p> At that point it is probably best just to use the OS to do the raid and skip the extra.</p>
<p> If it states somewhere on the box  (e.g., 3w-xxxx, 3w-9xxx, aacraid, cciss, dac960, dpt_i2o, gdth, ips, megaraid, megaraid2, megaraid_mbox aka megaraid-newgen, mpt*) then there is a good chance that it is true hardware raid.</p>
<p>A couple of good pages</p>
<p>This page has a good list of what is and what is not true hardware raid.</p>
<p><a href="http://linuxmafia.com/faq/Hardware/sata.html">http://linuxmafia.com/faq/Hardware/sata.html</a></p>
<p>A site that talks about what they are calling fakeraid.</p>
<p><a href="http://linux-ata.org/faq-sata-raid.html">http://linux-ata.org/faq-sata-raid.html</a></p>
<p>This is a good break down on what is the difference between fakeraid and hardware raid.</p>
<p><a href="http://mark.kolich.com/2008/11/sata-raid-cards-linuxwindows-what-you-should-know-about-fake-raid-cards.html">http://mark.kolich.com/2008/11/sata-raid-cards-linuxwindows-what-you-should-know-about-fake-raid-cards.html</a></p>
<p>I have cut and pasted this article below on the off chance this page ever disappears.  I do not do this often but on occasion I put in a link to a quality article then years later go back and it is gone.  Just want to make sure I keep this one.</p>
<p> .  Be sure to check out Mark&#8217;s Blog.  It has quite a bit of real good stuff in it.  I ended up getting lost in there for a bit.  Good Stuff.</p>
<p>snip<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h1 id="page-title" class="asset-name entry-title">SATA RAID Cards (Linux/Windows), What you Should Know About Fake RAID Cards</h1>
<p class="asset-meta"><span class="byline">By <span class="vcard author"><a href="http://mark.kolich.com/" class="fn url">Mark Kolich</a></span> on <abbr title="2008-11-14T16:50:04-08:00" class="published"></abbr>November 14, 2008 4:50 PM </span><span class="separator">|</span> <a href="http://mark.kolich.com/2008/11/sata-raid-cards-linuxwindows-what-you-should-know-about-fake-raid-cards.html#trackbacks">1 TrackBack</a></p>
<p class="asset-body">I recently had a <strong>rude awakening regarding many of today&#8217;s RAID cards</strong>; come to find out <strong>most of today&#8217;s RAID controllers are not actually &#8220;hardware RAID&#8221; cards like you might expect</strong>.  A few days ago, I went to Fry&#8217;s and picked up a relatively cheap <a href="http://siig.com/ViewProduct.aspx?pn=SC-SA4R12-S2">SATA 4-Channel RAID card (SC-SA4R12-S2) by SIIG</a>.  I brought it home, unpacked it, and plugged it into my Linux box.  Everything was working well, except that the raw disks connected to the RAID controller were exposed under /dev:</p>
<p><strong>/dev/sdc<br />
/dev/sdd</strong></p>
<p>I found this strange, because I used the controller&#8217;s <a href="http://en.wikipedia.org/wiki/Option_ROM">Option ROM</a> configuration utility to build a RAID-1 volume (a mirror) of the two SATA drives connected to the controller.  Assuming my RAID card drivers were installed, <strong>I was expecting to see only one device file for the &#8220;virtual RAID array&#8221; that I just created (e.g., /dev/cciss/*).</strong>  Continue reading to see what&#8217;s actually going on.</p>
<p id="more" class="asset-more">In my past life with HP-UX, I&#8217;ve worked on the <a href="http://cciss.sourceforge.net/">HP-UX CISS Smart Array RAID</a> driver.  <strong>Using an HP-UX Smart Array RAID solution, or a CCISS Linux Smart Array RAID solution, the OS driver only sees RAID arrays, and uses RAID-specific commands to read/write data.  The individual disks themselves are not actually exposed to the OS.</strong>  This is true hardware RAID.  If my new SATA RAID card was actually a true hardware RAID controller, I wouldn&#8217;t see both disk device files under /dev.  Instead, I would see a single device file pointing to the mirrored RAID volume.</p>
<p>So what exactly is going on anyways?  I thought my SATA RAID card is actually a hardware RAID card?  Turns out, it&#8217;s not.  I dug around looking for answers, and come to find out, <a href="http://linux-ata.org/faq-sata-raid.html">many non-enterprise level RAID cards sold today are actually &#8220;fakeraid&#8221; cards</a>.  <strong>These &#8220;fakeraid&#8221; cards use the OS driver and on-board flash BIOS to provide 100 percent of the RAID capability.</strong>  My cheap <a href="http://siig.com/ViewProduct.aspx?pn=SC-SA4R12-S2">SATA 4-Channel RAID card (SC-SA4R12-S2) by SIIG</a> is nothing more than a fake; it&#8217;s a bare non-RAID SATA controller that relies on the OS driver for most of the RAID operations.  That basically defeats the purpose of buying a hardware RAID card in the first place; the whole point of using a real hardware RAID controller is to offload the RAID processing from the host to the controller itself.</p>
<p>In any event, my <a href="http://siig.com/ViewProduct.aspx?pn=SC-SA4R12-S2">SATA 4-Channel RAID card (SC-SA4R12-S2) by SIIG</a> was only $40, so I guess I got what I paid for!  If you suspect your RAID card isn&#8217;t a real hardware RAID controller, <a href="http://linuxmafia.com/faq/Hardware/sata.html">you can check with Linuxmafia.</a></p>
<p>If you want to setup a <a href="http://mark.kolich.com/2008/11/howto-setup-and-configure-linux-software-raid-centosfedoraredhat.html">software RAID volume on Linux, read my HOWTO guide</a>.</p>
<p class="asset-more">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>snip</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=60</wfw:commentRss>
		</item>
		<item>
		<title>Windows - Memory/Performance Troubleshooting</title>
		<link>http://www.mudncrud.com/blog/?p=58</link>
		<comments>http://www.mudncrud.com/blog/?p=58#comments</comments>
		<pubDate>Wed, 19 Aug 2009 18:39:10 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=58</guid>
		<description><![CDATA[Process Explorer:
http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
Performance Monitor:
http://support.microsoft.com/default.aspx?scid=kb;en-us;325558
Definitions:
http://blogs.technet.com/askperf/archive/2008/01/25/an-overview-of-troubleshooting-memory-issues.aspx
]]></description>
			<content:encoded><![CDATA[<p>Process Explorer:<br />
http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx</p>
<p>Performance Monitor:<br />
<a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;325558">http://support.microsoft.com/default.aspx?scid=kb;en-us;325558</a></p>
<p>Definitions:<br />
http://blogs.technet.com/askperf/archive/2008/01/25/an-overview-of-troubleshooting-memory-issues.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=58</wfw:commentRss>
		</item>
		<item>
		<title>RedHat - NIC Status</title>
		<link>http://www.mudncrud.com/blog/?p=56</link>
		<comments>http://www.mudncrud.com/blog/?p=56#comments</comments>
		<pubDate>Wed, 19 Aug 2009 03:30:05 +0000</pubDate>
		<dc:creator>strom</dc:creator>
		
		<category><![CDATA[RedHat]]></category>

		<category><![CDATA[Erik's Tech Notes]]></category>

		<guid isPermaLink="false">http://www.mudncrud.com/blog/?p=56</guid>
		<description><![CDATA[ifconfig -a in RedHat does not provide link status sooooo.  After a bit of digging it turns out there is a cool tool that will.
# /sbin/ethtool eth0
Settings for eth0:
Supported ports: [ TP ]
Supported link modes:
10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supports auto-negotiation: Yes
Advertised link modes:
10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Advertised auto-negotiation: Yes
Speed: 1000Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 1
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d
Link [...]]]></description>
			<content:encoded><![CDATA[<p>ifconfig -a in RedHat does not provide link status sooooo.  After a bit of digging it turns out there is a cool tool that will.</p>
<p># /sbin/ethtool eth0<br />
Settings for eth0:<br />
Supported ports: [ TP ]<br />
Supported link modes:<br />
10baseT/Half 10baseT/Full<br />
100baseT/Half 100baseT/Full<br />
1000baseT/Full<br />
Supports auto-negotiation: Yes<br />
Advertised link modes:<br />
10baseT/Half 10baseT/Full<br />
100baseT/Half 100baseT/Full<br />
1000baseT/Full<br />
Advertised auto-negotiation: Yes<br />
Speed: 1000Mb/s<br />
Duplex: Full<br />
Port: Twisted Pair<br />
PHYAD: 1<br />
Transceiver: internal<br />
Auto-negotiation: on<br />
Supports Wake-on: g<br />
Wake-on: d<br />
Link detected: yes</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mudncrud.com/blog/?feed=rss2&amp;p=56</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Start of StatCounter Code -->
<script type="text/javascript" language="javascript">
var sc_project=2626736; 
var sc_invisible=0; 
var sc_partition=25; 
var sc_security="fa38dbdf"; 
</script>

<script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript><a href="http://www.statcounter.com/" target="_blank"><img  src="http://c26.statcounter.com/counter.php?sc_project=2626736&java=0&security=fa38dbdf&invisible=0" alt="website stats" border="0"></a> </noscript>
<!-- End of StatCounter Code -->

