<?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>Jason Sares is a Giant Dork &#187; Linux Quick Tip</title>
	<atom:link href="http://giantdorks.org/jason/category/linux-quick-tip/feed/" rel="self" type="application/rss+xml" />
	<link>http://giantdorks.org/jason</link>
	<description></description>
	<lastBuildDate>Wed, 20 Jan 2010 10:47:27 +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>Bash One Liner &#8211; Human Readable Sorted du</title>
		<link>http://giantdorks.org/jason/2009/05/01/bash-one-liner-human-readable-sorted-du/</link>
		<comments>http://giantdorks.org/jason/2009/05/01/bash-one-liner-human-readable-sorted-du/#comments</comments>
		<pubDate>Sat, 02 May 2009 00:25:49 +0000</pubDate>
		<dc:creator>Jason Sares</dc:creator>
				<category><![CDATA[Linux Quick Tip]]></category>

		<guid isPermaLink="false">http://giantdorks.org/jason/?p=26</guid>
		<description><![CDATA[du -s * 2&#62;/dev/null &#124; sort -n &#124; cut -f2 &#124; xargs du -sh 2&#62;/dev/null
]]></description>
			<content:encoded><![CDATA[<p><code>du -s * 2&gt;/dev/null | sort -n | cut -f2 | xargs du -sh 2&gt;/dev/null</code></p>
]]></content:encoded>
			<wfw:commentRss>http://giantdorks.org/jason/2009/05/01/bash-one-liner-human-readable-sorted-du/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Linux Quick Tip &#8211; Linux RAID Driver</title>
		<link>http://giantdorks.org/jason/2008/12/29/linux-quick-tip-linux-raid-driver/</link>
		<comments>http://giantdorks.org/jason/2008/12/29/linux-quick-tip-linux-raid-driver/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 21:38:26 +0000</pubDate>
		<dc:creator>Jason Sares</dc:creator>
				<category><![CDATA[Linux Hardware]]></category>
		<category><![CDATA[Linux Quick Tip]]></category>

		<guid isPermaLink="false">http://giantdorks.org/jason/2008/12/29/linux-quick-tip-linux-raid-driver/</guid>
		<description><![CDATA[If you buy a RAID Adapter often you&#8217;ll have to create a driver disk for your OS.  Most of these are 1.44MB floppy images and since modern systems often lack a floppy drive I needed some way of creating the disk.
I used a USB stick and dd for Windows (I&#8217;m sure dd for Linux [...]]]></description>
			<content:encoded><![CDATA[<p>If you buy a RAID Adapter often you&#8217;ll have to create a driver disk for your OS.  Most of these are 1.44MB floppy images and since modern systems often lack a floppy drive I needed some way of creating the disk.</p>
<p>I used a USB stick and <a href="http://webconverger.com/dd.exe">dd for Windows</a> (I&#8217;m sure dd for Linux would work just as well)</p>
<p>From the Windows  Comand Prompt:</p>
<p><code><big>C:\&gt;dd if=mini.img od=</big></code><big><strong>x</strong><code>: (Where X is the drive letter of the USB stick) </code></big></p>
<p>Then just insert the USB stick before loading your Linux Installation Media.</p>
]]></content:encoded>
			<wfw:commentRss>http://giantdorks.org/jason/2008/12/29/linux-quick-tip-linux-raid-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Quick Tip &#8211; Benchmark Disk Performance</title>
		<link>http://giantdorks.org/jason/2008/12/22/linux-quick-tip-benchmark-disk-performance/</link>
		<comments>http://giantdorks.org/jason/2008/12/22/linux-quick-tip-benchmark-disk-performance/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 00:53:20 +0000</pubDate>
		<dc:creator>Jason Sares</dc:creator>
				<category><![CDATA[Linux Hardware]]></category>
		<category><![CDATA[Linux Quick Tip]]></category>

		<guid isPermaLink="false">http://giantdorks.org/jason/2008/12/22/linux-quick-tip-benchmark-disk-performance/</guid>
		<description><![CDATA[A very quick way to benchmark your disk performance is hdparm -t /dev/Xda (hda or sda):
you should get results like this:
[root@esx-mars root]# hdparm -t /dev/sda
/dev/sda:
Timing buffered disk reads:  358 MB in  3.00 seconds = 119.33 MB/sec
This is from a Dell PowerEdge 2900 with the PERC 5i SATA RAID Controller.
Roughly you want to see 50 MB+ [...]]]></description>
			<content:encoded><![CDATA[<p>A very quick way to benchmark your disk performance is hdparm -t /dev/Xda (hda or sda):</p>
<p>you should get results like this:</p>
<p>[<big><strong><code>root@esx-mars root]# hdparm -t /dev/sda</code></strong></big></p>
<p><big><strong><code>/dev/sda:<br />
Timing buffered disk reads:  358 MB in  3.00 seconds = 119.33 MB/sec</code></strong></big></p>
<p>This is from a Dell PowerEdge 2900 with the PERC 5i SATA RAID Controller.</p>
<p>Roughly you want to see 50 MB+ per disk, if you have a RAID 0 of two disks you should get 100 MB+.</p>
<p>What numbers are your getting?</p>
]]></content:encoded>
			<wfw:commentRss>http://giantdorks.org/jason/2008/12/22/linux-quick-tip-benchmark-disk-performance/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Little Quick Tip &#8211; Rename Multiple Files</title>
		<link>http://giantdorks.org/jason/2008/12/03/little-quick-tip-rename-multiple-files/</link>
		<comments>http://giantdorks.org/jason/2008/12/03/little-quick-tip-rename-multiple-files/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 22:32:39 +0000</pubDate>
		<dc:creator>Jason Sares</dc:creator>
				<category><![CDATA[Linux Quick Tip]]></category>

		<guid isPermaLink="false">http://giantdorks.org/jason/2008/12/03/little-quick-tip-rename-multiple-files/</guid>
		<description><![CDATA[I used to use mv in a for loop or with exec, or xargs until I found a very useful command that&#8217;s included in almost every distro
rename
Usage
$ rename oldfilename newfilename *filepattern
Example
To rename all the files in the current directory ending with .htm to .html
$ rename .htm .html *.htm
You can use RegEx and for more sophisticated [...]]]></description>
			<content:encoded><![CDATA[<p>I used to use mv in a for loop or with exec, or xargs until I found a very useful command that&#8217;s included in almost every distro</p>
<p><a href="http://www.go2linux.org/rename-bulk-files-with-linux-console-command"><big><strong><code>rename</code></strong></big></a></p>
<p>Usage</p>
<p><big><strong><code>$ rename oldfilename newfilename *filepattern</code></strong></big></p>
<p>Example</p>
<p>To rename all the files in the current directory ending with .htm to .html</p>
<p><big><strong><code>$ rename .htm .html *.htm</code></strong></big></p>
<p>You can use RegEx and for more sophisticated selections and use <big><strong><code>-n</code></strong></big> to test your changes before you commit them.</p>
]]></content:encoded>
			<wfw:commentRss>http://giantdorks.org/jason/2008/12/03/little-quick-tip-rename-multiple-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Quick Tip &#8211; Find What Distro You&#8217;re On</title>
		<link>http://giantdorks.org/jason/2007/12/03/quick-tip-find-what-distro-your-on/</link>
		<comments>http://giantdorks.org/jason/2007/12/03/quick-tip-find-what-distro-your-on/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 19:58:00 +0000</pubDate>
		<dc:creator>Jason Sares</dc:creator>
				<category><![CDATA[Linux Quick Tip]]></category>

		<guid isPermaLink="false">http://giantdorks.org/jason/2007/12/03/quick-tip-find-what-distro-your-on/</guid>
		<description><![CDATA[I was just setting up some services on the giantdorks server and I forgot which distro we where running.  uname -a wasn't very helpful so I looked in /etc/issue and found it was openSUSE 10.2 (i586).  Anyone know how many distros this works for, or any other ways to find the distro your on?]]></description>
			<content:encoded><![CDATA[<p>I was just setting up some services on the giantdorks server and I forgot which distro (doh) we&#8217;re running.  uname -a wasn&#8217;t very helpful so I looked at <strong>/etc/issue</strong> and found it was openSUSE 10.2 (i586).  Anyone know which distros this works for, or any other ways to find which distro you&#8217;re logged on to?</p>
<p>Edit:</p>
<p>I found an additional way is to use<strong> lsb_ release -a</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://giantdorks.org/jason/2007/12/03/quick-tip-find-what-distro-your-on/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
