<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>MCS Press</title>
	
	<link>http://www.mycybersupport.com/blog</link>
	<description>Who cares what I think . . .</description>
	<lastBuildDate>Sat, 06 Feb 2010 22:33:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/McsPress" /><feedburner:info uri="mcspress" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Moving LVM partitions to a new system</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/E6zeanMQayM/</link>
		<comments>http://www.mycybersupport.com/blog/2010/02/moving-lvm-partitions-to-a-new-system/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 22:33:03 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[LVM2]]></category>
		<category><![CDATA[recovery]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=218</guid>
		<description><![CDATA[A few months ago I lost my main workstation that also doubled as my backup server, my web development server, the white noise generator and over all everything machine for my home network.
On that system I run Arch Linux, like do for all of my systems except for my daughters which runs Edubuntu 8.04. I [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago I lost my main workstation that also doubled as my backup server, my web development server, the white noise generator and over all everything machine for my home network.</p>
<p>On that system I run <a title="Arch Linux" href="http://www.archlinux.org" target="_blank">Arch Linux</a>, like do for all of my systems except for my daughters which runs <a title="Edubuntu" href="http://edubuntu.org/" target="_blank">Edubuntu</a> 8.04. I had all of my internal hard drives setup on <a title="LVM2" href="http://en.wikipedia.org/wiki/Logical_Volume_Manager_(Linux)" target="_self">LVM2</a> (Logical Volume Manager) partitions. When that system went down I was a shocked. To this day my beloved system still isn&#8217;t up and working correctly. So, in the mean time I was able to gather some old PC parts I had sitting in boxes and build out my &#8220;official&#8221; storage solution.</p>
<p>My storage solution is built up using a dual Pentium III 700 Mhz system with 256MB of RAM, a 4 port SATA PCI card, four 1 Terabyte hard drive &amp; a 20Gig system drive. Over all it is a clunker besides the 4TB of hard drive space. But you are hear to read about my storage system &amp; to know how to re-access your stranded LVM2 partitions.</p>
<p><strong>Step 1:</strong> Move the functional hard drive(s) into a system that can read the LVM mappings (This means you have all the proper kernel modules installed &amp; corresponding LVM software). Now if you have multiple drives that make up your LVM mappings, then you need to be able to have all drives accessible in one system. For me I only had one large drive mapped out to different volumes. I was able to add my drive to my storage server by using an external USB case.</p>
<p><strong>Step 2:</strong> Once that the drive(s) is physically accessible in new system, you need to know what are the Physical Volume(s) (PV), Volume Groups (VG) &amp; Logical Volume(s) (LV). To obtain this information run the following commands with root privileges &amp; take note of the VG &amp; LV names.</p>
<p><strong>Step 2a:</strong> Show the list of available physical volumes by running <span style="color: #008080;"><em>su -c &#8216;pvdisplay&#8217; </em></span>.</p>
<pre class="brush: plain;">
[testuser ~]$ su -c 'pvdisplay'
--- Physical volume ---
 PV Name               /dev/sdf3
 VG Name               VolGroup00
 PV Size               150.56 GiB / not usable 2.66 MiB
 Allocatable           yes
 PE Size               4.00 MiB
 Total PE              38542
 Free PE               14222
 Allocated PE          24320
 PV UUID               YSFO73-x3IY-wNTg-CUND-e3wT-7Whb-yLk4iO

 ...
</pre>
<p><strong>Step 2b:</strong> Show the list of available volume groups by running <span style="color: #008080;"><em>su -c &#8216;vgdisplay&#8217;</em> </span>.</p>
<pre class="brush: plain;">
[testuser ~]$ su -c 'vgdisplay'
  --- Volume group ---
  VG Name               VolGroup00
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  25
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                2
  Open LV               0
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               150.55 GiB
  PE Size               4.00 MiB
  Total PE              38542
  Alloc PE / Size       24320 / 95.00 GiB
  Free  PE / Size       14222 / 55.55 GiB
  VG UUID               oGX7wj-BLCd-6M8Q-3hPc-8wVN-r7jR-3Z6dgU

  ...
</pre>
<p><strong>Step 2c:</strong> Show the list of available logical volume by running <span style="color: #008080;"><em>su -c &#8216;lvdisplay&#8217; </em></span>.</p>
<pre class="brush: plain;">
[testuser ~]$ su -c 'lvdisplay'
  --- Logical volume ---
  LV Name                /dev/VolGroup00/Root
  VG Name                VolGroup00
  LV UUID                lnKn4G-BH0d-tn38-KJuz-o1ci-afVD-ncm5Zn
  LV Write Access        read/write
  LV Status              available
  # open                 0
  LV Size                15.00 GiB
  Current LE             3840
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:2

  --- Logical volume ---
  LV Name                /dev/VolGroup00/Home
  VG Name                VolGroup00
  LV UUID                l7oeK7-YKNV-KS2c-fXvO-hXpe-hIQP-LsqFxR
  LV Write Access        read/write
  LV Status              available
  # open                 0
  LV Size                80.00 GiB
  Current LE             20480
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:3

  ...
</pre>
<p><strong>Step 3:</strong> Now that you have the volume group name you need to make the volume(s) accessible on the new system. That is done by exporting (aka removing) the historical volume mappings, importing the volume group into the new system &amp; activating the volume group.</p>
<p><strong>Step 3a:</strong> Export the volume group with <span style="color: #008080;"><em>su -c &#8216;vgexport &lt;replace with volume group&gt;&#8217; </em></span></p>
<pre class="brush: plain;">
[testuser ~]$ vgimport VolGroup00
 Volume group &quot;VolGroup00&quot; is not exported
</pre>
<p><strong>Step 3b:</strong> Importing the Volume Group using pvscan &amp; then <span style="color: #008080;"><em>su -c &#8216;vgimport &lt;replace with volume group&#8217; </em></span></p>
<pre class="brush: plain;">
[testuser ~]$ su -c 'pvscan'
 PV /dev/sdf3    is in exported VG VolGroup00 [150.55 GiB / 55.55 GiB free]
 PV /dev/md0    VG RaidArray    lvm2 [2.73 TiB / 1.17 TiB free]
 Total: 2 [897.09 GiB] / in use: 2 [897.09 GiB] / in no VG: 0 [0   ]

[testuser ~]$ su -c 'vgimport VolGroup00'
  Volume group &quot;VolGroup00&quot; successfully imported
</pre>
<p><strong>Step 3c: </strong>Activating the Volume Group by using <span style="color: #008080;"><em>su -c &#8216;vgchange -ay &#8216; </em></span></p>
<pre class="brush: plain;">
[testuser ~]$ su -c 'vgchange -ay VolGroup00'
  2 logical volume(s) in volume group &quot;VolGroup00&quot; now active
</pre>
<p>Now that you have imported &amp; activated the volume group,  you should be able to list the available logical volume drive mappings under /dev/mapper/.</p>
<pre class="brush: bash;">
ls -l /dev/mapper/
</pre>
<p><strong>Step 4: </strong>The next step is to mount the logical volumes to check the integrity of the data. I would also suggest doing an file system check (fsck) of the partitions on logical volume before mounting them.</p>
<p>That it. You are ready to resume using your LVM partitions on your new system.</p>
<p>- Ken</p>
<p>LVM resource used for this post:</p>
<ul>
<li>HOW-To <a title="Move LVM How-To" href="http://www.tldp.org/HOWTO/html_single/LVM-HOWTO/#recipemovevgtonewsys" target="_self">http://www.tldp.org/HOWTO/html_single/LVM-HOWTO/#recipemovevgtonewsys</a></li>
<li>Helpful link: <a title="Helpful LVM Link" href="http://www.linuxquestions.org/questions/linux-software-2/remounting-a-lvm-partitioned-disk-on-new-box-136693/" target="_blank">http://www.linuxquestions.org/questions/linux-software-2/remounting-a-lvm-partitioned-disk-on-new-box-136693/</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/E6zeanMQayM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2010/02/moving-lvm-partitions-to-a-new-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2010/02/moving-lvm-partitions-to-a-new-system/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.8.3 Admin Exploit</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/yhgZOPtXP8g/</link>
		<comments>http://www.mycybersupport.com/blog/2009/08/wordpress-2-8-3-admin-exploit/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 17:08:17 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=221</guid>
		<description><![CDATA[To all my fellow WordPress users, please make sure you update to version 2.8.4 if you are on version 2.8.3. There is a documented exploit out in the wild that can reset your admin password.
You can get full details about the exploit on Darknet.org.uk. Here is a link to the post.
]]></description>
			<content:encoded><![CDATA[<p>To all my fellow WordPress users, please make sure you update to version 2.8.4 if you are on version 2.8.3. There is a documented exploit out in the wild that can reset your admin password.</p>
<p>You can get full details about the exploit on <a target="_blank" title="Darknet.org.uk" mce_href="http://www.darknet.org.uk" href="http://www.darknet.org.uk">Darknet.org.uk</a>.<a target="_blank" title="WordPress Admin Exploit on Darknet.org" mce_href="http://www.darknet.org.uk/2009/08/wordpress-2-8-3-admin-reset-exploit/" href="http://www.darknet.org.uk/2009/08/wordpress-2-8-3-admin-reset-exploit/"> </a>Here is a link to the <a target="_blank" title="WordPress Admin Exploit on Darknet.org" mce_href="http://www.darknet.org.uk/2009/08/wordpress-2-8-3-admin-reset-exploit/" href="http://www.darknet.org.uk/2009/08/wordpress-2-8-3-admin-reset-exploit/">post</a>.</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/yhgZOPtXP8g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/08/wordpress-2-8-3-admin-exploit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/08/wordpress-2-8-3-admin-exploit/</feedburner:origLink></item>
		<item>
		<title>Coder Girl</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/nWLtEs7v9fY/</link>
		<comments>http://www.mycybersupport.com/blog/2009/08/coder-girl/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 23:45:59 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[nerdcore]]></category>
		<category><![CDATA[Rap]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=206</guid>
		<description><![CDATA[I had to pimp this nerdcore rap video by daleochase called &#8220;Coder Girl&#8221;. I like the idea of the song, but I don&#8217;t like the usage of all the Crapple products. But, baggers can&#8217;t be choosers when it comes to freely distributed music.
Have a look &#38; listen . . .

You can follow daleochase on twitter [...]]]></description>
			<content:encoded><![CDATA[<p>I had to pimp this <a title="Nerdcore on Wikipedia" href="http://en.wikipedia.org/wiki/Nerdcore" target="_blank">nerdcore</a> rap video by daleochase called &#8220;Coder Girl&#8221;. I like the idea of the song, but I don&#8217;t like the usage of all the Crapple products. But, baggers can&#8217;t be choosers when it comes to freely distributed music.</p>
<p>Have a look &amp; listen . . .</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/B-m6JDYRFvk&amp;hl=en&amp;fs=1&amp;rel=0&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/B-m6JDYRFvk&amp;hl=en&amp;fs=1&amp;rel=0&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>You can follow daleochase on <a title="daleochase on twitter" href="http://twitter.com/daleochase" target="_blank">twitter </a>&amp; get the lyrics to his this song <a title="Coder Girl Lyrics" href="http://sound.ly/dalechase/2009/7/13/coder-girl-lyrics.html" target="_blank">here</a>.</p>
<p>Visit his web site @ <a title="http://syntaxbeats.squarespace.com/" href="http://syntaxbeats.squarespace.com/" target="_blank">http://syntaxbeats.squarespace.com/</a></p>
<p>- Ken</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/nWLtEs7v9fY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/08/coder-girl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/08/coder-girl/</feedburner:origLink></item>
		<item>
		<title>Getting More Virtual Space with DD &amp; Gparted</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/g7qt1Qdylfw/</link>
		<comments>http://www.mycybersupport.com/blog/2009/07/getting-more-virtual-space-with-dd-gparted/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 05:58:04 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Arch]]></category>
		<category><![CDATA[Arch Linux]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[Identica]]></category>
		<category><![CDATA[VirtualMachine]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=161</guid>
		<description><![CDATA[The other day I had an issue with my main Virtual Machine (VM) image at work. Inside the VM runs a version of Windows XP SP3 that I use for application automation testing and manual testing. The issue I was having was my VM was out of virtual disk space.
On my work laptop I run [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-172" style="margin: 8px 5px;" title="low-disk-space" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/07/low-disk-space.jpg" alt="low-disk-space" width="200" height="114" />The other day I had an issue with my main <a title="Virtual Machine Definition" href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FVirtual_machine&amp;ei=KjVxSsKbJovQsQPX46D1CA&amp;usg=AFQjCNExT7UOidDfl6IxUB_uPimill1UEA&amp;sig2=Bc8_iha7fH_l7hFQFQ-3wg" target="_blank">Virtual Machine</a> (VM) image at work. Inside the VM runs a version of Windows XP SP3 that I use for application automation testing and manual testing. The issue I was having was my VM was out of virtual disk space.</p>
<p>On my work laptop I run 64bit <a title="Arch Linux" href="http://www.archlinux.org" target="_blank">Arch Linux</a> and the virtual machine software I run is <a title="VirtualBox" href="http://www.virtualbox.org/" target="_blank">VirtualBox</a> version 3.0.2. VirtualBox has server me well over the past few year, but the one issue I have always run into with running VMs is disk space constraints. I typically give a VM the least amount of space it will need to run the operating system and the essential applications that I will need for testing and/or development. For Windows XP that is usually 8GB and for Windows Vista it is about 10 to 12 gigs.</p>
<p>So as I mentioned, I was running out of space on my main VM. I <a title="Identica Post" href="http://identi.ca/notice/7218268" target="_blank">bitched</a> about it on <a title="Identica" href="http://identi.ca" target="_blank">identica</a>/twitter and received a great response to my complaining. <a title="Excid3's Twitter Profile" href="http://twitter.com/excid3" target="_blank">Excid3</a> mentioned that I should create a new larger virtual disk and then use <a title="dd on wikipedia" href="http://en.wikipedia.org/wiki/Dd_%28Unix%29" target="_blank">dd</a> to clone the original virtual disk over to the new virtual disk. Once I read that it was like getting slapped in the face. I was shocked and ashamed that I never thought of doing that in the past.<a href="http://www.mycybersupport.com/blog/wp-content/uploads/2009/07/screenshot_002.png" rel="lightbox[161]"><img class="alignright size-medium wp-image-174" style="margin: 8px 5px;" title="Added Second Virtual Disk" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/07/screenshot_002-300x232.png" alt="Added Second Virtual Disk" width="240" height="186" /></a></p>
<p>The last time I looked into cloning a virtual disk, I did a google search and most of the suggestions mention creating a second virtual disk, but then using something like <a title="Symantec Ghost" href="http://www.symantec.com/themes/ghost/index.jsp" target="_blank">Symantec&#8217;s Ghost</a>, <a title="Partition Image (partimage)" href="http://www.partimage.org/Main_Page" target="_blank">PartImage</a> or <a title="Clonezilla Disk Duplicaiton Software" href="http://www.clonezilla.org/" target="_blank">Clonezilla</a> to perform the task of duplicating the disk data structure. I tried this solution once before and it ended in disaster and a waste of time.</p>
<p>Now with new insight and a fresh idea [something I should have thought of before] I set up to add a bit of extra space to my main dev/test VM. First I created a new 10GB virtual disk using the VirtualBox Virtual Media Manager. While creating the virtual disk I was downloading the ISO image of <a title="System Rescue CD" href="http://www.sysresccd.org/" target="_blank">SystemResuceCD</a>. Once the virtual disk was created, I went into the settings of my VM and added the new virtual disk as a secondary IDE drive. I then set the VM to point to the SystemRescueCD ISO and boot from that ISO image. Once I was booted into the SystemRescueCD environment I executed the following command:</p>
<pre class="brush: bash;">

dd if=/dev/sda of=/dev/sdb bs=64
</pre>
<p>I let the duplication process run it&#8217;s course, which took about 15 to 20 minutes. Plus, since I am a bit paranoid, I was running the following bash script from a terminal on the physical system from inside the folder that holds my virtual disk to make sure the virtual disk was being created:</p>
<pre class="brush: bash;">

while x=0
  do
  ls -lh *.vdi
  df -h | grep home
  sleep 2
done
</pre>
<p><a href="http://www.mycybersupport.com/blog/wp-content/uploads/2009/07/screenshot_009.png" rel="lightbox[161]"><img class="alignleft size-medium wp-image-177" style="margin: 8px 5px;" title="Gpated GUI" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/07/screenshot_009-300x250.png" alt="Gpated GUI" width="192" height="160" /></a>Once the dd process was complete I shut down the VM, released the SystemRescueCD ISO image, then I changed the order of the primary virtual disk to the new disk and booted the VM to make sure the all was good. Once I was certain the new virtual disk  was good, I shut down the VM, re-mounted the SystemRescueCD ISO to the VM and booted the VM to re-enter the SystemRescueCD environment. Once inside, I ran a startx to bring of a graphical interface for running <a title="Gparted" href="http://www.gparted.org/" target="_blank">gparted</a> (Gnome Partition Editor). I then used gparted to expand the unused portion of the virtual disk from 8GB to 10 GB. Once that was completed, I rebooted the VM &amp; unmounted the ISO. Windows run a CHKD on the expanded virtual disk and my VM came to life with an addition 2 gigs of space.</p>
<p>Thanks to Excid3 I now have a new &amp; quicker process for expanding the virtual disk size constrains I set upon myself.</p>
<p>-Ken</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/g7qt1Qdylfw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/07/getting-more-virtual-space-with-dd-gparted/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/07/getting-more-virtual-space-with-dd-gparted/</feedburner:origLink></item>
		<item>
		<title>A quick lesson in the power of bash variables</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/gswnjXRhJis/</link>
		<comments>http://www.mycybersupport.com/blog/2009/06/a-quick-lesson-in-the-power-of-bash-variables/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 16:44:01 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Parenting]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=156</guid>
		<description><![CDATA[I was reading a post by slmingol off of his blog, lamolabs.com, about bash variables. I thought it was really good and it should be shared.
Here is the link to his post: [one-liner]: Special Variables in Bash
I was able to find his blog by subscribing to the Linux Plant blog RSS feed.
- Ken
]]></description>
			<content:encoded><![CDATA[<p>I was reading a post by slmingol off of his blog, <a title="Lamolabs" href="http://www.lamolabs.org/blog" target="_self">lamolabs.com</a>, about bash variables. I thought it was really good and it should be shared.</p>
<p>Here is the link to his post: <a title="[one-liner]:Special Variables in Bash" href="http://www.lamolabs.org/blog/1375/one-liner-special-variables-bash/comment-page-1/#comment-91" target="_self">[one-liner]: Special Variables in Bash</a></p>
<p>I was able to find his blog by subscribing to the <a title="Linux Plant Blogs" href="http://www.linuxplanet.org/blogs" target="_self">Linux Plant blog</a> RSS feed.</p>
<p>- Ken</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/gswnjXRhJis" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/06/a-quick-lesson-in-the-power-of-bash-variables/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/06/a-quick-lesson-in-the-power-of-bash-variables/</feedburner:origLink></item>
		<item>
		<title>You shall become a GEEK!!!</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/tSlyRg0jlx8/</link>
		<comments>http://www.mycybersupport.com/blog/2009/06/you-shall-become-a-geek/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 00:20:41 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Children]]></category>
		<category><![CDATA[microbloggin]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=136</guid>
		<description><![CDATA[The idea of being a Geek is actually a cool thing these days. Everyone is driven by technology. Lots of people have smart phones or travel with a NetBook or laptop everywhere they go. When traveling people will have a GPS with them so they will not miss the next toilet stop along the highway. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mycybersupport.com/thesimeons/images/pj/month1819/15.jpg" rel="lightbox[136]"><img class="alignleft" style="margin: 5px 8px;" title="PJ Loved her PC" src="http://www.mycybersupport.com/thesimeons/images/pj/month1819/15.jpg" alt="" width="280" height="210" /></a>The idea of being a Geek is actually a cool thing these days. Everyone is driven by technology. Lots of people have smart phones or travel with a NetBook or laptop everywhere they go. When traveling people will have a GPS with them so they will not miss the next toilet stop along the highway. With this wealth of technology at our finger tips, you better be a person that is on pace with it or if your not you will be left in the dust to die with the dinosaurs.</p>
<p>When I say that you have to be on pace with the moving technology arena, I am not just talking about ponying up the cash for the hottest tech toy. I am talk about actually knowing what that tech toy can &amp; can&#8217;t do. It is about educating yourself so you can become a smart consumer and a smarted user of technology.</p>
<p>If you are a parent, this is doubly important. As a parent myself, I know that I am going to be the first teacher of the world to my kids. I don&#8217;t want to rely on someone else or have my kids rely on themselves to learn about technology. Granted I am a skilled user of technology, but I don&#8217;t see this as any different then a person who is a mechanic, a carpenter or any other skilled trade. Most skilled trades man/women are going to tech their kids how to do that job or at least understand it. The is all I am doing.</p>
<p><a href="http://www.mycybersupport.com/thesimeons/images/pj/month1819/13.jpg" rel="lightbox[136]"><img class="alignright" style="margin: 5px 8px;" title="PJs First Computer" src="http://www.mycybersupport.com/thesimeons/images/pj/month1819/13.jpg" alt="" width="280" height="210" /></a>So that this why I have started my kids out early in their technology education courses. With my first daughter, PJ, we had to get her a computer for herself so my wife and I could do our computing in piece. I put together a simple system when she was 18 months and we bought her a good amount of software that was fun and entertaining for her age [<a title="Reader Rabbit" href="http://www.reader-rabbit.com/Products.html" target="_blank">Reader Rabbit</a>, <a title="Sesame Street" href="http://www.sesamestreet.org" target="_blank">Sesame Street</a>, etc]. Many of our friends couldn&#8217;t believe that our 18 month old child was able to play computer games by herself and truly understood what was going on. All we had to do was ask her what game she wanted and load the CD. She was able to do the rest.</p>
<p>Now 7 years later, PJ has been the computer assistant in kindergarten &amp; 1st grade. She is the kid all the other kids [&amp; sometimes the teacher] turn to when they don&#8217;t understand what is happening on the computer. It&#8217;s actually funny &amp; scary to hear that she has become a mini IT person for her classes.</p>
<p>With our second child, MJ, she is chomping at the bit to be able to use a computer. She just turned 1, but has had a computer keyboard in her face since she was born. It is hard to keep her away from our laptops and other other computer in the house. <a href="http://www.mycybersupport.com/blog/wp-content/uploads/2009/06/sany0363-1024x768.jpg" rel="lightbox[136]"><img class="alignleft size-medium wp-image-151" style="margin: 5px 8px;" title="MJ up and coming geek" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/06/sany0363-1024x768-300x224.jpg" alt="MJ up and coming geek" width="300" height="224" /></a>Cause she loves to play the, &#8220;I&#8217;m going to touch your Backspace button while you are typing or surfing the net&#8221; game.</p>
<p>But we already have the plan in place for MJ. We kept PJ&#8217;s old computer and when MJ is about 18 months old I will set it up for her. We still have all of games PJ used and have learned about many web sites over the years of educating PJ.</p>
<p>It is going to be a lot of fun to have MJ on a computer also. I know PJ will have a blast teaching her lil sister the ins &amp; outs of the games and web sits. It will be hard to keep PJ out of MJ&#8217;s way, but I know they will work it all out.</p>
<p>I can&#8217;t wait to see where PJ &amp; MJ will be in the next 6 years. PJ will be 14 &amp; MJ 7. I bet we will all be sitting around the house on our computers <a title="Micro-blogging Site" href="http://identi.ca" target="_blank">mirco-blogging</a> to each other about how good dinner was that night.</p>
<p>Thanks to <a title="Think Geek" href="http://www.thinkgeek.com" target="_self">ThinkGeek</a> for helping me show the world that my littlest one will be a geek when she goes up. Here is a link to the <a title="Mostly IP Onesie" href="http://www.thinkgeek.com/geek-kids/1-3-years/5e09/" target="_blank">Onesie</a></p>
<p>-Ken</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/tSlyRg0jlx8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/06/you-shall-become-a-geek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/06/you-shall-become-a-geek/</feedburner:origLink></item>
		<item>
		<title>RAID to the AID (part 1)</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/r2kgJQEU3og/</link>
		<comments>http://www.mycybersupport.com/blog/2009/05/raid-to-the-aid-part-1/#comments</comments>
		<pubDate>Tue, 19 May 2009 07:20:50 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Storage]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[RAID]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=92</guid>
		<description><![CDATA[For the past while I&#8217;ve been itching to build a storage array and/or a NAS. The reason for the need &#38; desire for a storage solution is that between my wife and myself, we have hundreds of gigs of photos, home movie, music &#38; ripped movies spread across 3 computers, multiple backups and some of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mycybersupport.com/blog/wp-content/uploads/2009/05/raid5.png" rel="lightbox[92]"><img class="alignleft size-medium wp-image-106" style="margin-left: 5px; margin-right: 5px;" title="raid5 diagram" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/05/raid5-300x183.png" alt="raid5 diagram" width="180" height="110" /></a>For the past while I&#8217;ve been itching to build a storage array and/or a <a title="NAS - Network Attached Storage" href="http://en.wikipedia.org/wiki/Network-attached_storage" target="_blank">NAS</a>. The reason for the need &amp; desire for a storage solution is that between my wife and myself, we have hundreds of gigs of photos, home movie, music &amp; ripped movies spread across 3 computers, multiple backups and some of stuff stored on DVD-Rs. Basically our current data storage &amp; backup solution is CRAP!</p>
<p>So, I&#8217;ve tossed back &amp; forth the idea of getting one of the off the shelf NAS devices by <a title="Thecus" href="http://www.thecus.com/?set_language=english" target="_blank">Thecus</a>, <a title="Netgear" href="http://www.netgear.com/Products/Storage.aspx?for=All" target="_blank">Netgear</a>, <a title="LaCie" href="http://www.lacie.com/us/products/range.htm?id=10061" target="_blank">LaCie</a> or <a title="Buffalo Technology" href="http://www.buffalotech.com/products/network-storage/" target="_blank">Buffalo</a>. I am mostly considering one of the Thecus devices. I believe they are running <a title="Linux.com" href="http://www.linux.com" target="_blank">Linux</a>, which I really like. Plus they provide a long laundry list of features amoung their devices. I have been looking at one of the N4100 serious or the N5200. The N4100s supports 4 SATA drives and the N5200 holds 5. Either would work. They all support <a title="RAID" href="http://en.wikipedia.org/wiki/RAID" target="_blank">RAID</a> 0, 1, 5 and <a title="JBOD" href="http://en.wikipedia.org/wiki/JBOD#Concatenation_.28SPAN.29" target="_blank">JBOD</a>. The networking options are pretty nice to.</p>
<p>The other option I have kicked around was using an existing machine, loading it with SATA disks and then using <a title="FreeNAS" href="http://www.freenas.org/" target="_blank">FreeNAS</a> or rolling my own solution with Linux to manage the data store. Doing it this way adds some limitation. One limit is the bus speed. In my existing system I only have standard PCI slots. Then in my box of extra motherboards, processors &amp; parts I am still limited by only having PCI slots. It would be nice to have a system with PCI-X for PCI-Express slots, but to go out and upgrade a full system to gain that level of bus speed is not economical.</p>
<p>The next limit I have is cold hard cash!</p>
<p>OK, I am not truly limited on the financial side, but I do prefer to be on the cheap side. I don&#8217;t like to spend too much on items that I know I can get similar functionality from a less expensive items. The cost of a &#8220;true&#8221; hardware RAID card is way out of my mental budget. I can&#8217;t see paying over $200 for a damn expansion card. That means I am looking at RAID enabled cards that are providing software RAID, a.k.a. Fake RAID. The software RAID provided on the expansion cards can be a step above the &#8220;fake&#8221; RAID provided on most modern motherboards. That doesn&#8217;t sit all that well in the pit of my stomach. Not after recently talking with a co-worker that lost a lot of personal data because the RAID on his motherboard failed &amp; corrupted his hard drives. He was running a 1+0 RAID across 4 drives. He should have been pretty safe against failure, but he wasn&#8217;t. I am looking at running RAID for the reliability factor. After that story I am over all worried. Myself, I would not run anything but RAID 5.</p>
<p>So knowing that I am not going to put out the cash for a full hardware RAID card &amp; I am still not sure if I am going to do an external NAS system. I am left at looking at rolling my own solution using the software RAID provided by a sub 200 dollar SATA RAID card or buying any cheap SATA card that provides 4 to 8 ports and using the RAID capabilities built into the Linux kernel. This final solution doesn&#8217;t scare me too much. I am pretty damn sure that the reliability of the Linux kernel&#8217;s RAID is good. I would bet most of the software RAID cards are running embedded Linux anyways and using the RAID stack within the card.<a href="http://www.mycybersupport.com/blog/wp-content/uploads/2009/05/raid_cage.jpg" rel="lightbox[92]"><img class="alignright size-thumbnail wp-image-107" style="margin-left: 5px; margin-right: 5px;" title="raid_cage" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/05/raid_cage-150x150.jpg" alt="raid_cage" width="150" height="150" /></a></p>
<p>So now the research and testing starts. I have purchased 4 1 terabyte SATA II hard drives. I still need a SATA controller to drive the hard drives and a raid cage to hold the hard drives. I am currently scowering <a title="Newegg.com" href="http://www.newegg.com" target="_blank">newegg.com</a>, <a title="Tiger Direct" href="http://www.tigerdirect.com" target="_blank">Tiger Direct</a> and other sites for highly rated SATA controllers that work well with Linux. Once I buy the controller and start my testing I will post the next piece of RAID to the AID.</p>
<p>-Ken</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/r2kgJQEU3og" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/05/raid-to-the-aid-part-1/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/05/raid-to-the-aid-part-1/</feedburner:origLink></item>
		<item>
		<title>Been Way Too Busy</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/8wd3hheOn08/</link>
		<comments>http://www.mycybersupport.com/blog/2009/04/been-way-too-busy/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 03:33:08 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/archives/91</guid>
		<description><![CDATA[It has been a while sense I have posted on this blog. Life has been hectic and other projects have taken precedence. I do have a few blog posts in the works and I hope to have those out this week.
The projects that have taken all my time are related to other web sites that [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while sense I have posted on this blog. Life has been hectic and other projects have taken precedence. I do have a few blog posts in the works and I hope to have those out this week.</p>
<p>The projects that have taken all my time are related to other web sites that I am launching with my wife. I have been working on a theme for this site that needs some fine tuning. And now I have to do a web site for my next family reunion in 2010.</p>
<p>If you are subscribed to my RSS feed, I want to thank you for following. I will try to keep this blog active.</p>
<p>ks</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/8wd3hheOn08" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/04/been-way-too-busy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/04/been-way-too-busy/</feedburner:origLink></item>
		<item>
		<title>Twitter is Finally Cool Again!!!</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/gthRPbQCbWQ/</link>
		<comments>http://www.mycybersupport.com/blog/2009/04/twitter-is-finally-cool-again/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 09:00:04 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Identica]]></category>
		<category><![CDATA[microbloggin]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=71</guid>
		<description><![CDATA[That is right! I said it. Now what you going to do about it?!?
Twitter has become cool because, they were purchased by Control Yourself, Inc.. Control Yourself, Inc. is the creating body behind the Leconica open source microblogging software that powers Identi.ca. Yup, that wonderful open microblogging, protocol pimping, federated communication entity  stepped up and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mycybersupport.com/blog/wp-content/uploads/2009/04/identica_twitter_love.png" rel="lightbox[71]"><img class="alignleft size-thumbnail wp-image-75" style="margin: 5px;" title="identica_twitter_love" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/04/identica_twitter_love-150x150.png" alt="identica_twitter_love" width="150" height="150" /></a>That is right! I said it. Now what you going to do about it?!?</p>
<p><a title="Twitter" href="http://twitter.com" target="_blank">Twitter</a> has become cool because, <a title="Control Yourself Inc" href="http://controlyourself.ca/2009/04/01/identica-acquires-twitter/" target="_blank">they were purchased by Control Yourself, Inc.</a>. Control Yourself, Inc. is the creating body behind the <a title="Lacanica" href="http://laconi.ca/" target="_blank">Leconica</a> open source microblogging software that powers <a title="Identica" href="http://identi.ca" target="_blank">Identi.ca</a>. Yup, that wonderful open microblogging, protocol pimping, federated communication entity  stepped up and saved the tweeting day by buying the most crashy ass Web 2.0 site out there. Now there is a chance for everyone to not get the Twitter Fail Whale when trying to post their most important tweets.</p>
<blockquote><p>“We consider this an excellent merger of resources,” says Control Yourself CEO <strong>Evan Prodromou</strong>, who will remain in charge of the combined operations. “Identi.ca brings a superior feature set, a distributed architecture and Open Source development model, and impressive reliability, while Twitter brings little smiley robot images and the timely, fascinating personalities like Britney Spears and Shaquille O’Neal, as well as a <a href="http://www.techcrunch.com/2009/03/30/twitter-hiring-a-concierge-to-pamper-celebrities-requires-schmoozing/">celebrity concierge</a>.”</p></blockquote>
<p>So, what does this mean for all the the loyal open mircoblogging software users and followers. . . . <strong>WE WIN</strong>!!!!</p>
<p>As you can tell, I am pretty excited about this news. I have no idea where Evan Prodromou and Control Yourself, Inc. came up with the Franklins, Roosevelts, Benjamins, Washingtons &amp; Canadian Bank Notes to buy Twitter. I suspect that Twitter was not truly worth all the money that was projected by the street. Or Evan just rolls in cash like P Diddy and we didn&#8217; t know it. Either way, I am damn happy they were able to drop kick the freedom haters into the wide open arena of free software.</p>
<p>Good job Evan, I am looking forward to seeing what other Web 2.0 freedom haters you will be taking on in the near future. . . Facebook maybe?</p>
<p>Peace,</p>
<p>Ken</p>
<p>PS &#8211; Not sure I am digging the new look of Identica.</p>
<div id="attachment_76" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mycybersupport.com/blog/wp-content/uploads/2009/04/identica_new_look.png" rel="lightbox[71]"><img class="size-medium wp-image-76" title="identica_new_look" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/04/identica_new_look-300x239.png" alt="Identica's New Look" width="300" height="239" /></a><p class="wp-caption-text">Identica&#39;s New Look</p></div>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/gthRPbQCbWQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/04/twitter-is-finally-cool-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/04/twitter-is-finally-cool-again/</feedburner:origLink></item>
		<item>
		<title>Lights Out for Earth Hour</title>
		<link>http://feedproxy.google.com/~r/McsPress/~3/AUtu3K3CDv0/</link>
		<comments>http://www.mycybersupport.com/blog/2009/03/lights-out-for-earth-hour/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 17:15:48 +0000</pubDate>
		<dc:creator>sCrIpTmUnKeE</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Global Warming]]></category>
		<category><![CDATA[Vote Earch]]></category>

		<guid isPermaLink="false">http://www.mycybersupport.com/blog/?p=62</guid>
		<description><![CDATA[
Today, March 28th 2009, will be that day that you can give back to the Earth by reducing your power consumption for one hour. The proposed plan is to turn off all your lights for 1 hour starting at 8:30 PM.
Personally I think that is too simple. I say step up and do more then [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-133" href="http://www.mycybersupport.com/blog/2009/03/lights-out-for-earth-hour/voteearth_en/"><img class="alignleft size-full wp-image-133" style="margin: 5px;" title="Vote Earth" src="http://www.mycybersupport.com/blog/wp-content/uploads/2009/03/voteearth_en.png" alt="Vote Earth" width="277" height="130" /></a></p>
<p>Today, March 28th 2009, will be that day that you can give back to the Earth by reducing your power consumption for one hour. The proposed plan is to turn off all your lights for 1 hour starting at 8:30 PM.</p>
<p>Personally I think that is too simple. I say step up and do more then what is asked of you. Turn off everything non critical! Turn off the TV, stereo, computers, cell phones, Internet gateways, media player, hand held gaming devices and more. I know that we are going to turn off everything but the refrigerator in my house tonight at 8:30 PM PST.  Ideally it would be great to see blocks of an hour on <a title="Identica" href="http://identi.ca" target="_blank">Identica</a>, <a title="Twitter" href="http://twitter.com" target="_blank">Twitter</a>, <a title="Facebook" href="http://www.facebook.com" target="_blank">Facebook</a> and other social networks where there are no posts for an hour. The only way for everyone to know about Earth Hour and the <a title="Earth Hour" href="http://www.earthhour.org" target="_blank">VOTE EARTH</a> movement is by spreading the word. So get to it!</p>
<p>Now you ask, &#8220;<em>What the hell am I going to do for an hour with out my electronic devices!?!?!</em>&#8220;.</p>
<p>Enjoy the time sitting in the dark with candles glowing entertaining yourself and loved ones with something simple. If you have kids, tell them stories of your time as a kid. Let them know of some of the crazy things you did. Let them know that you did know how to have some fun before you became a parent. How about playing a board game or some card games. If you don&#8217;t have kids, but you have a significant other. Maybe it is time to kick some romance back into your relationship. I wont provide suggestions on that topic. Just remember what you did to get into the relationship and recapture those ideas.</p>
<p>I was turned on to this idea from a post from <span class="fn"><a title="Evan Prodromou" href="http://evan.prodromou.name/">Evan Prodromou</a> </span> on <a title="Identica" href="http://identi.ca">identica</a> and wanted to make sure that I did my small part of spreading the word. If you want to learn more about VOTE EARTH and Earth Hour, visit their web site at <a title="VOTE EARTH" href="http://www.earthhour.org" target="_blank">http://www.earthhour.org</a>.</p>
<p>Thanks for reading this post and make sure you turn off your unnecessary powered sucking devices tonight at 8:30 PM.</p>
<p>Ken</p>
<img src="http://feeds.feedburner.com/~r/McsPress/~4/AUtu3K3CDv0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mycybersupport.com/blog/2009/03/lights-out-for-earth-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mycybersupport.com/blog/2009/03/lights-out-for-earth-hour/</feedburner:origLink></item>
	</channel>
</rss>
