<?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>MG&#039;s Notes &#187; Linux</title>
	<atom:link href="http://mugurel.sumanariu.ro/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://mugurel.sumanariu.ro</link>
	<description>Some useful things</description>
	<lastBuildDate>Mon, 21 Nov 2011 11:15:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>arcconf: How to add a hotspare drive to a logical drive</title>
		<link>http://mugurel.sumanariu.ro/linux/arcconf-how-to-add-a-hotspare-drive-to-a-logical-drive/</link>
		<comments>http://mugurel.sumanariu.ro/linux/arcconf-how-to-add-a-hotspare-drive-to-a-logical-drive/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 08:53:06 +0000</pubDate>
		<dc:creator>MG</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[arcconf]]></category>
		<category><![CDATA[raid]]></category>

		<guid isPermaLink="false">http://mugurel.sumanariu.ro/?p=255</guid>
		<description><![CDATA[If you have a IBM ServeRAID 8k controller and you have changed a defunct drive with new one, and rebuilding is not starting, you must add your new READY drive to your logical drive. Usage: SETSTATE &#60;Controller#&#62; DEVICE &#60;Channel# ID#&#62; &#60;State&#62; [LOGICALDRIVE &#60;LD#&#62; [LD#] &#8230; ] [noprompt] if you are in this particular situation : DEVICE [...]]]></description>
		<wfw:commentRss>http://mugurel.sumanariu.ro/linux/arcconf-how-to-add-a-hotspare-drive-to-a-logical-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: Starting the Installation in Text Mode</title>
		<link>http://mugurel.sumanariu.ro/linux/linux-starting-the-installation-in-text-mode/</link>
		<comments>http://mugurel.sumanariu.ro/linux/linux-starting-the-installation-in-text-mode/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 07:50:09 +0000</pubDate>
		<dc:creator>MG</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://mugurel.sumanariu.ro/?p=251</guid>
		<description><![CDATA[If you do not wish to perform a GUI installation, you can start a text  mode installation using the following boot command: boot: text If you are having trouble booting into the graphical installation program,  you can try to boot using the no framebuffer (nofb) boot option. At the boot command, enter the following: boot: [...]]]></description>
		<wfw:commentRss>http://mugurel.sumanariu.ro/linux/linux-starting-the-installation-in-text-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: How to view partition block size</title>
		<link>http://mugurel.sumanariu.ro/linux/linux-how-to-view-partition-block-size/</link>
		<comments>http://mugurel.sumanariu.ro/linux/linux-how-to-view-partition-block-size/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 07:12:41 +0000</pubDate>
		<dc:creator>MG</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://mugurel.sumanariu.ro/?p=217</guid>
		<description><![CDATA[Run: dumpe2fs -h /dev/sda1 or tune2fs -l /dev/sda1 where /dev/sda1 is you partition, and search for Block size:]]></description>
		<wfw:commentRss>http://mugurel.sumanariu.ro/linux/linux-how-to-view-partition-block-size/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rename dirs from uppercase to lowercase</title>
		<link>http://mugurel.sumanariu.ro/linux/rename-dirs-from-uppercase-to-lowercase/</link>
		<comments>http://mugurel.sumanariu.ro/linux/rename-dirs-from-uppercase-to-lowercase/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 09:30:49 +0000</pubDate>
		<dc:creator>MG</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://mugurel.sumanariu.ro/?p=176</guid>
		<description><![CDATA[#!/bin/bash for x in `find * -maxdepth 0 -type d`; do   # Translate Caps to Small letters   y=$(echo $x &#124; tr &#8216;[A-Z]&#8216; &#8216;[a-z]&#8216;);   # check if directory exits   if [ ! -d $y ]; then      echo &#8220;mv $x $y&#8221;      mv $x $y;   fi done NOTE: -maxdepth 0 is [...]]]></description>
		<wfw:commentRss>http://mugurel.sumanariu.ro/linux/rename-dirs-from-uppercase-to-lowercase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error: &#8216;PIX_FMT_RGBA32&#8242; undeclared</title>
		<link>http://mugurel.sumanariu.ro/linux/error-pix_fmt_rgba32-undeclared/</link>
		<comments>http://mugurel.sumanariu.ro/linux/error-pix_fmt_rgba32-undeclared/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 12:05:15 +0000</pubDate>
		<dc:creator>MG</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://mugurel.sumanariu.ro/?p=170</guid>
		<description><![CDATA[Error: /download/ffmpeg-php-0.6.0/ffmpeg_frame.c: In function &#8216;zif_ffmpeg_frame_toGDImage&#8217;: /download/ffmpeg-php-0.6.0/ffmpeg_frame.c:336: error: &#8216;PIX_FMT_RGBA32&#8242; undeclared (first use in this function) /download/ffmpeg-php-0.6.0/ffmpeg_frame.c:336: error: (Each undeclared identifier is reported only once /download/ffmpeg-php-0.6.0/ffmpeg_frame.c:336: error: for each function it appears in.) /download/ffmpeg-php-0.6.0/ffmpeg_frame.c: In function &#8216;zif_ffmpeg_frame_ffmpeg_frame&#8217;: /download/ffmpeg-php-0.6.0/ffmpeg_frame.c:421: error: &#8216;PIX_FMT_RGBA32&#8242; undeclared (first use in this function) make: *** [ffmpeg_frame.lo] Error 1 Solution: 1. Open the file “/ffmpeg-php-0.5.0/ffmpeg_frame.c” [...]]]></description>
		<wfw:commentRss>http://mugurel.sumanariu.ro/linux/error-pix_fmt_rgba32-undeclared/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

