<?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>Doomlands of the Lunatics &#187; System</title>
	<atom:link href="http://www.maulvi.net/category/system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maulvi.net</link>
	<description>Only survivors here...</description>
	<lastBuildDate>Wed, 05 May 2010 20:13:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Centos Public Mirror &#8211; http://centos.maulvi.net</title>
		<link>http://www.maulvi.net/2009/10/15/centos-public-mirror-httpcentosmaulvinet/</link>
		<comments>http://www.maulvi.net/2009/10/15/centos-public-mirror-httpcentosmaulvinet/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 21:34:32 +0000</pubDate>
		<dc:creator>Maulvi Bakar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://www.maulvi.net/2009/10/15/centos-public-mirror-httpcentosmaulvinet/</guid>
		<description><![CDATA[To the world..
I present the Centos Public Mirror hosted on http://centos.maulvi.net
Basically, I&#8217;ve been installing and re-installing centos over and over and over..  Also, at any one time, I have a bunch of centos boxes running both physically and virtually.  This prompts me to run my own centos mirror.  It&#8217;s twofold &#8211; it saves time and [...]]]></description>
			<content:encoded><![CDATA[<p>To the world..</p>
<p>I present the Centos Public Mirror hosted on <a href="http://centos.maulvi.net" title="Centos Mirror" target="_blank">http://centos.maulvi.net</a></p>
<p>Basically, I&#8217;ve been installing and re-installing centos over and over and over..  Also, at any one time, I have a bunch of centos boxes running both physically and virtually.  This prompts me to run my own centos mirror.  It&#8217;s twofold &#8211; it saves time and make it easier for me to simply grab any packages.</p>
<p>Then I had a revelation &#8211; after leeching from the community, it&#8217;s time to give back something&#8230; This mirror is one small way I could do to give back and with a big THANK YOU to the wonderful centos linux community.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maulvi.net/2009/10/15/centos-public-mirror-httpcentosmaulvinet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a new Linux RAID1 device and extending an existing LVM Volume onto it. RHEL/Centos 5</title>
		<link>http://www.maulvi.net/2009/06/13/creating-a-new-linux-raid1-device-and-extending-an-existing-lvm-volume-onto-it-rhelcentos-5/</link>
		<comments>http://www.maulvi.net/2009/06/13/creating-a-new-linux-raid1-device-and-extending-an-existing-lvm-volume-onto-it-rhelcentos-5/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 22:08:18 +0000</pubDate>
		<dc:creator>Maulvi Bakar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://www.maulvi.net/2009/06/13/creating-a-new-linux-raid1-device-and-extending-an-existing-lvm-volume-onto-it-rhelcentos-5/</guid>
		<description><![CDATA[I&#8217;m seriously into server consolidation and virtualization.  I&#8217;m going to eliminate my other VMWare server and just concentrate on one.
First order of the day is to upgrade the RAM and Available HDD space. Upgrading the RAM is simple enough, just add/replace the modules.
Expanding the available space is another matter.  This is actually an extension of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m seriously into server consolidation and virtualization.  I&#8217;m going to eliminate my other VMWare server and just concentrate on one.</p>
<p>First order of the day is to upgrade the RAM and Available HDD space. Upgrading the RAM is simple enough, just add/replace the modules.</p>
<p>Expanding the available space is another matter.  This is actually an extension of my previous posting &#8211; <a href="http://www.maulvi.net/2007/12/16/new-hdd-enlarging-red-hatcentos-ext3lvm-partition/">New HDD, enlarging Red Hat/Centos ext3/lvm partition</a>, but there&#8217;s another factor in the equation, RAID1 (Mirroring) devices.</p>
<p>The existing root partition resides in an LVM partition which in turn resides in a RAID1 (Mirroring) Multi-Disk (MD) partition which is based on a twin 400GB HDD configuration.</p>
<p>I&#8217;ve acquired a pair of 500GB HDDs. Now to extend the existing LVM ontothe newly acquired disks in a RAID1 configuration.</p>
<p>Step 1 is to create Software RAID partitions on the said disks -<br />
<code># fdisk /dev/sdc<br />
# fdisk /dev/sdd</code><br />
Create a new &#8217;sdc1&#8242; and &#8217;sdd1&#8242; partitions using type FD, which is Linux RAID Autodetect.</p>
<p>Next, we need to create the Multi-Disk Volume -<br />
<code># mdadm --create /dev/md2 --level=1 --raid-devices=2 /dev/sdc1 /dev/sdd1</code><br />
Since I already have &#8216;md0&#8242; for my &#8216;/boot&#8217; and &#8216;md1&#8242; is the existing volume with the existing LVM that was the intended target for expansion, thus naturally I&#8217;m using &#8216;md2&#8242;.</p>
<p>Basically, I am creating &#8216;md2&#8242; device in RAID1 configuration using 2 devices namely &#8216;/dev/sdc1&#8242; and &#8216;/dev/sdd1&#8242;.</p>
<p>You can monitor the status of your RAID devices using &#8216;/proc/mdstat&#8217; -<br />
<code># cat /proc/mdstat<br />
Personalities : [raid1]<br />
md2 : active raid1 sdd1[1] sdc1[0]<br />
487331648 blocks [2/2] [UU]<br />
[&gt;....................]  resync =  1.9% (9622656/487331648) finish=90.0min speed=88417K/sec<br />
</code></p>
<p>The steps here onwards are basically the same as previously mentioned <a href="http://www.maulvi.net/2007/12/16/new-hdd-enlarging-red-hatcentos-ext3lvm-partition/">here</a>, the only difference is the &#8216;/dev/md2&#8242; device is the target.</p>
<p>To start, we need to create a Physical Volume within the newly created &#8216;/dev/md2&#8242; RAID device.<br />
<code># pvcreate /dev/md2</code></p>
<p>After that we will extend the existing volume ‘VolGroup00? onto the newly created physical volume.<br />
<code># vgextend VolGroup00 /dev/md2</code></p>
<p>Once done, the next step is to extend the Logical Volume within the volume group to use the free space newly made available when you extend the volume group previously.<br />
<code># lvextend /dev/VolGroup00/LogVol00 /dev/md2</code><br />
Here is the difference where I did not specify the space size to extend as the default will be to use all available spaces.</p>
<p>And finally, we’ll enlarge the ext3 partition to make use of the newly available free space in the logical volume.<br />
<code># resize2fs /dev/VolGroup00/LogVol00</code></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maulvi.net/2009/06/13/creating-a-new-linux-raid1-device-and-extending-an-existing-lvm-volume-onto-it-rhelcentos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New HDD, enlarging Red Hat/Centos ext3/lvm partition</title>
		<link>http://www.maulvi.net/2007/12/16/new-hdd-enlarging-red-hatcentos-ext3lvm-partition/</link>
		<comments>http://www.maulvi.net/2007/12/16/new-hdd-enlarging-red-hatcentos-ext3lvm-partition/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 07:11:01 +0000</pubDate>
		<dc:creator>Maulvi Bakar</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://www.maulvi.net/2007/12/16/new-hdd-enlarging-red-hatcentos-ext3lvm-partition/</guid>
		<description><![CDATA[Hmmm,
Suddenly, I&#8217;ve run out of space on one of my servers at home.  Solution, add a new harddisk, extend existing partition onto the new harddisk..  Simple right?  Right&#8230;
Firstly, fix the new harddisk onto the machine.  Fdisk it like thus -
# fdisk /dev/sdb
Create a new &#8217;sdb1&#8242; partition using type 8, which is [...]]]></description>
			<content:encoded><![CDATA[<p>Hmmm,</p>
<p>Suddenly, I&#8217;ve run out of space on one of my servers at home.  Solution, add a new harddisk, extend existing partition onto the new harddisk..  Simple right?  Right&#8230;</p>
<p>Firstly, fix the new harddisk onto the machine.  Fdisk it like thus -</p>
<p><code># fdisk /dev/sdb</code></p>
<p>Create a new &#8217;sdb1&#8242; partition using type 8, which is Linux LVM.</p>
<p>Next, we need to create a Physical Volume within the newly created sdb1 partition.</p>
<p><code># pvcreate /dev/sdb1</code></p>
<p>After that we will extend the existing volume &#8216;VolGroup00&#8242; onto the newly created physical volume.</p>
<p><code># vgextend VolGroup00 /dev/sdb1</code></p>
<p>Once done, the next step is to extend the Logical Volume within the volume group to use the free space newly made available when you extend the volume group previously.</p>
<p><code># lvextend -L 40G /dev/VolGroup00/LogVol00</code></p>
<p>And finally, we&#8217;ll enlarge the ext3 partition to make use of the newly available free space in the logical volume.</p>
<p><code># resize2fs /dev/VolGroup00/LogVol00</code></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maulvi.net/2007/12/16/new-hdd-enlarging-red-hatcentos-ext3lvm-partition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gnome-RDP, Terminal Server Client, vncviewer &#8211; Fullscreen woes!</title>
		<link>http://www.maulvi.net/2007/12/12/gnome-rdp-terminal-server-client-vncviewer-fullscreen-woes/</link>
		<comments>http://www.maulvi.net/2007/12/12/gnome-rdp-terminal-server-client-vncviewer-fullscreen-woes/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 19:16:18 +0000</pubDate>
		<dc:creator>Maulvi Bakar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://www.maulvi.net/2007/12/12/gnome-rdp-terminal-server-client-vncviewer-fullscreen-woes/</guid>
		<description><![CDATA[Well, I am using Ubuntu 7.10 Gutsy Gibbon.  Feeling gutsy right?   
Anyway, it seems that whenever I connect to a remote machine via VNC protocol, doesn&#8217;t matter what my client of choice, if I am using &#8216;Fullscreen&#8217;, I&#8217;ll be &#8216;Full Screaming&#8217;.   Seems that the CTRL-ALT-ENTER does not work for me to switch windows.  [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I am using Ubuntu 7.10 Gutsy Gibbon.  Feeling gutsy right?  <img src='http://www.maulvi.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Anyway, it seems that whenever I connect to a remote machine via VNC protocol, doesn&#8217;t matter what my client of choice, if I am using &#8216;Fullscreen&#8217;, I&#8217;ll be &#8216;Full Screaming&#8217;.   Seems that the CTRL-ALT-ENTER does not work for me to switch windows.  I&#8217;ll be stuck to the remote machine screen.</p>
<p>Fortunately, there&#8217;s hope yet.  Press &#8216;F8&#8242; button and voila! There&#8217;s a host of options in the menu revealed.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maulvi.net/2007/12/12/gnome-rdp-terminal-server-client-vncviewer-fullscreen-woes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>unknown nfs status return value: -1</title>
		<link>http://www.maulvi.net/2007/12/11/unknown-nfs-status-return-value-1/</link>
		<comments>http://www.maulvi.net/2007/12/11/unknown-nfs-status-return-value-1/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 07:54:30 +0000</pubDate>
		<dc:creator>Maulvi Bakar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.maulvi.net/2007/12/11/unknown-nfs-status-return-value-1/</guid>
		<description><![CDATA[I&#8217;m trying to mount an NFS export from an AIX machine to a Linux client.
Had encountered the above problem.   Apparently the NFS exports on AIX requires the client&#8217;s hostname and IP address within the /etc/hosts file.
Enjoy!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to mount an NFS export from an AIX machine to a Linux client.</p>
<p>Had encountered the above problem.   Apparently the NFS exports on AIX requires the client&#8217;s hostname and IP address within the /etc/hosts file.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maulvi.net/2007/12/11/unknown-nfs-status-return-value-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blog Migration</title>
		<link>http://www.maulvi.net/2006/07/31/blog-migration/</link>
		<comments>http://www.maulvi.net/2006/07/31/blog-migration/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 09:05:18 +0000</pubDate>
		<dc:creator>Maulvi Bakar</dc:creator>
				<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://maulvi.net/2006/07/31/blog-migration/</guid>
		<description><![CDATA[I&#8217;ve always liked WordPress.Â  It seems very customizable, full-featured and lotsa plugins for me to play around with.
Actually, I installed WordPress on Maulvi.Net a few days ago, but delayed the Data Migration from http://deunan.wordpress.com till earlier today.Â  Everything works perfectly!Â  All I did was a simple export from the old one to the new one.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always liked WordPress.Â  It seems very customizable, full-featured and lotsa plugins for me to play around with.</p>
<p>Actually, I installed WordPress on Maulvi.Net a few days ago, but delayed the Data Migration from <a href="http://deunan.wordpress.com/">http://deunan.wordpress.com</a> till earlier today.Â  Everything works perfectly!Â  All I did was a simple export from the old one to the new one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maulvi.net/2006/07/31/blog-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.maulvi.net/2006/04/27/hello-world-2/</link>
		<comments>http://www.maulvi.net/2006/04/27/hello-world-2/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 12:31:42 +0000</pubDate>
		<dc:creator>Maulvi Bakar</dc:creator>
				<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://maulvi.net/?p=4</guid>
		<description><![CDATA[Welcome to Wordpress. This is your first post. Edit or delete it and start blogging!
Yeah, yeah.. I get it.. This is the umphteenth time I started a blog.. Dunno whether this one lasts.. or maybe not.. I&#8217;ll damn well&#8217;ll give it a try.. a shot.. whatever..
]]></description>
			<content:encoded><![CDATA[<p>Welcome to Wordpress. This is your first post. Edit or delete it and start blogging!</p>
<p>Yeah, yeah.. I get it.. This is the umphteenth time I started a blog.. Dunno whether this one lasts.. or maybe not.. I&#8217;ll damn well&#8217;ll give it a try.. a shot.. whatever..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maulvi.net/2006/04/27/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
