<?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>jusupov.com</title>
	<atom:link href="http://www.jusupov.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jusupov.com</link>
	<description>Computer Technology Blog</description>
	<lastBuildDate>Mon, 13 Jul 2009 07:45:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install Darwin Streaming Server 6.0.3 on Ubuntu 8.04.2 Hardy</title>
		<link>http://www.jusupov.com/2009/06/13/how-to-install-darwin-streaming-server-on-ubuntu-hardy/</link>
		<comments>http://www.jusupov.com/2009/06/13/how-to-install-darwin-streaming-server-on-ubuntu-hardy/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 18:08:59 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Apple DSS]]></category>
		<category><![CDATA[Darwin Streaming Server]]></category>
		<category><![CDATA[DSS]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=340</guid>
		<description><![CDATA[I couldn&#8217;t find any good tutorial on how to install Darwing Streaming Server on Ubuntu Hardy.
So let&#8217;s get started with a fresh install of 8.04.2 with all the updates.

sudo apt-get update &#38;&#38; sudo apt-get upgrade
sudo apt-get install build-essential
sudo addgroup &#8211;system qtss
sudo adduser &#8211;system &#8211;no-create-home &#8211;ingroup qtss qtss
cd /usr/local/src/
Download the latest version at http://github.com/lstoll/dss/tree/master
tar -xvf lstoll-dss-984a1365251f36ebf3f60f0d0175fa895a30b9a9.tar
cd [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t find any good tutorial on how to install Darwing Streaming Server on Ubuntu Hardy.</p>
<p>So let&#8217;s get started with a fresh install of 8.04.2 with all the updates.</p>
<ol>
<li>sudo apt-get update &amp;&amp; sudo apt-get upgrade</li>
<li>sudo apt-get install build-essential</li>
<li>sudo addgroup &#8211;system qtss<br />
sudo adduser &#8211;system &#8211;no-create-home &#8211;ingroup qtss qtss</li>
<li>cd /usr/local/src/</li>
<li>Download the latest version at http://github.com/lstoll/dss/tree/master</li>
<li>tar -xvf lstoll-dss-984a1365251f36ebf3f60f0d0175fa895a30b9a9.tar</li>
<li>cd lstoll-dss-984a1365251f36ebf3f60f0d0175fa895a30b9a9/</li>
<li>./Buildit install</li>
<li>cd DarwinStreamingSrvr6.0.3-Linux</li>
<li>./Install</li>
<li>If you see Setup Complete! message, you are good to go. Logon to http://servername:1220/ using your browser. Username and password is the ones you entered at step 10.</li>
</ol>
<p>Ok, now you have Darwin Streaming Server installed on your Ubuntu Hardy box.</p>
<p>Here&#8217;s a sample init file for DSS:<br />
[sourcecode language="plain"]<br />
#!/bin/sh<br />
#<br />
# chkconfig: 35 92 12<br />
# description: Quicktime Streaming Media Server<br />
#<br />
# Slight tweak of file create by Larry Underhill 05/20/02<br />
#<br />
# init script to start up the quicktime (Darwin) streaming server<br />
# tested on Redhat 7.2, Fedora Core 4 and CentOS-4.3</p>
<p># source function library<br />
#. /etc/rc.d/init.d/functions</p>
<p>case &quot;$1&quot; in<br />
start)<br />
if test -r /var/lock/dssd<br />
then<br />
echo &quot;Lockfile /var/lock/dssd exists. Server not started.&quot;<br />
failure<br />
else<br />
echo &quot;Starting Darwin Streaming Server: &quot;<br />
/usr/local/sbin/DarwinStreamingServer &amp;amp;&amp;amp; touch /var/lock/dssd<br />
echo &quot;Starting DSS Admin Console: &quot;<br />
/usr/local/sbin/streamingadminserver.pl<br />
echo &quot;DSS and DSS Admin Console started&#8230;&quot;<br />
fi<br />
;;</p>
<p>stop)<br />
echo &quot;Stopping Darwin Streaming Server: &quot;<br />
[ -f /var/lock/dssd ] || exit 0<br />
echo &quot;stopping&#8230;&quot;<br />
killall DarwinStreamingServer &amp;amp;&amp;amp; killall streamingadminserver.pl<br />
#ps ax | awk &#8216;{print $1&quot; &quot; $5}&#8217; | awk &#8216;/DarwinStreamingServer/ {print $1}&#8217; | xargs -r kill -9 &amp;amp;&amp;amp; success || failure<br />
#echo &quot;Stopping DSS Admin Console: &quot;<br />
#ps ax | awk &#8216;/streamingadminserver.pl/ {print $1}&#8217; | xargs -r kill -9  &amp;amp;&amp;amp; success || failure<br />
rm -f /var/lock/dssd<br />
echo<br />
;;</p>
<p>restart)<br />
$0 stop<br />
sleep 1<br />
$0 start<br />
;;</p>
<p>*)<br />
echo &quot;Usage: $0 [start|stop|restart]&quot;<br />
exit 1<br />
esac<br />
exit 0<br />
[/sourcecode]<br />
Save this file in /etc/init.d/dss</p>
<p>Make it executable chmod +x /etc/init.d/dss and make it auto start when booting:</p>
<p>update-rc.d dss defaults<br />
Adding system startup for /etc/init.d/dss &#8230;<br />
/etc/rc0.d/K20dss -&gt; ../init.d/dss<br />
/etc/rc1.d/K20dss -&gt; ../init.d/dss<br />
/etc/rc6.d/K20dss -&gt; ../init.d/dss<br />
/etc/rc2.d/S20dss -&gt; ../init.d/dss<br />
/etc/rc3.d/S20dss -&gt; ../init.d/dss<br />
/etc/rc4.d/S20dss -&gt; ../init.d/dss<br />
/etc/rc5.d/S20dss -&gt; ../init.d/dss</p>
<p>Now that we have already installed DSS on Ubuntu Hardy box, next thing is how to broadcast mp3 and video through it. Well, that&#8217;s a next post coming up. <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Enjoy!</p>
<div id="attachment_343" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-343" title="DSS Admin Console" src="http://www.jusupov.com/wp-content/uploads/2009/06/picture-1-300x197.png" alt="DSS Admin Console" width="300" height="197" /><p class="wp-caption-text">DSS Admin Console</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2009/06/13/how-to-install-darwin-streaming-server-on-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install kismet on MacBook, Mac OS X 10.5.6 Leopard</title>
		<link>http://www.jusupov.com/2009/04/20/how-to-install-kismet-on-mac-os-x-1056-leopard/</link>
		<comments>http://www.jusupov.com/2009/04/20/how-to-install-kismet-on-mac-os-x-1056-leopard/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 09:34:24 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[kismet]]></category>
		<category><![CDATA[mac os]]></category>
		<category><![CDATA[macbook]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=321</guid>
		<description><![CDATA[I have a MacBook 13&#8243; Aliminium. Here&#8217;s how I installed and run kismet on this machine.

cd /tmp
svn co https://www.kismetwireless.net/code/svn/trunk kismet-devel
cd kismet-devel
./configure
sudo make install
Edit  kismet config file like: sudo vim /opt/local/etc/kismet.conf  and change the following two lines:
a.) suiduser=Your_Username_For_Mac
b.) source=darwin,en1,airport_extreme
Run kismet and enjoy! sudo kismet

]]></description>
			<content:encoded><![CDATA[<p>I have a MacBook 13&#8243; Aliminium. Here&#8217;s how I installed and run kismet on this machine.</p>
<ol>
<li>cd /tmp</li>
<li>svn co https://www.kismetwireless.net/code/svn/trunk kismet-devel</li>
<li>cd kismet-devel</li>
<li>./configure</li>
<li>sudo make install</li>
<li>Edit  kismet config file like: sudo vim /opt/local/etc/kismet.conf  and change the following two lines:<br />
a.) suiduser=Your_Username_For_Mac<br />
b.) source=darwin,en1,airport_extreme</li>
<li>Run kismet and enjoy! sudo kismet</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2009/04/20/how-to-install-kismet-on-mac-os-x-1056-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review &#8211; Dell Vostro 1510 Laptop</title>
		<link>http://www.jusupov.com/2009/04/20/review-dell-vostro-1510-laptop/</link>
		<comments>http://www.jusupov.com/2009/04/20/review-dell-vostro-1510-laptop/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 06:21:10 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=308</guid>
		<description><![CDATA[Today in the morning came in 4 boxes from Dell, 3 Dell Vostro 1310 Laptops and 1 Dell Vostro 1510 Laptop.
First thing I noticed was the packaging, the box huge! Here, take a look!

Four Dell Vostro Laptop boxes


There are two versions of Vostro 1510, one with Intel® Core™2 Duo Processor T5670 (1.80GHz) and the other [...]]]></description>
			<content:encoded><![CDATA[<p>Today in the morning came in 4 boxes from Dell, 3 Dell Vostro 1310 Laptops and 1 Dell Vostro 1510 Laptop.</p>
<p>First thing I noticed was the packaging, the box huge! Here, take a look!</p>
<div id="attachment_310" class="wp-caption alignnone" style="width: 235px"><img class="size-medium wp-image-310" title="Four Dell Vostro Laptop boxes" src="http://www.jusupov.com/wp-content/uploads/2009/04/img1000-225x300.jpg" alt="Four Dell Vostro Laptop boxes" width="225" height="300" /></p>
<div class="mceTemp">
<dl id="attachment_311" class="wp-caption alignnone" style="width: 235px;">
<dt class="wp-caption-dt"><img class="size-medium wp-image-311" title="Dell Vostro 1510 Laptop" src="http://www.jusupov.com/wp-content/uploads/2009/04/img077-225x300.jpg" alt="Dell Vostro 1510 Laptop" width="225" height="300" /><p class="wp-caption-text">Dell Vostro 1510 Laptop</p></div>
</dt>
<dd class="wp-caption-dd">Four Dell Vostro Laptop boxes</dd>
</dl>
</div>
<p>There are two versions of Vostro 1510, one with <span>Intel® Core™2 Duo Processor T5670 (1.80GHz) and the other with </span><span>Intel® Core™2 Duo Processor T8100 (2.10GHz) at <a title="Vostro 1510" href="http://www1.ap.dell.com/content/products/productdetails.aspx?c=my&amp;cs=mybsd1&amp;id=vostronb_1510&amp;l=en&amp;s=bsd" target="_blank">Dell Malaysia website</a>. But guess what, the Vostro at my hands has Intel(R) Core(TM)2 Duo CPU T5870 @ 2.00Ghz.</span></p>
<div id="attachment_314" class="wp-caption alignnone" style="width: 528px"><img class="size-full wp-image-314" title="Dell Vostro 1510 Vista" src="http://www.jusupov.com/wp-content/uploads/2009/04/2009-04-17_152243.png" alt="Dell Vostro 1510 Vista" width="518" height="176" /><p class="wp-caption-text">Dell Vostro 1510 Vista</p></div>
<p>Compared to my 13&#8243; MacBook, this machine looks like a soldier <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  type.</p>
<p><a href="http://www.amazon.com/gp/product/B001Z0UZSQ?ie=UTF8&amp;tag=arststechblog-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001Z0UZSQ">Dell Vostro 1510 Notebook Computer</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=arststechblog-20&amp;l=as2&amp;o=1&amp;a=B001Z0UZSQ" border="0" alt="" width="1" height="1" /></p>
<p>Generally Vostro models are designed for business. That&#8217;s why I guess it&#8217;s designed minimalistic. It&#8217;s not fancy, it is a solid box that does the job.</p>
<p>Little things I didn&#8217;t like:</p>
<ol>
<li>Phone &amp; Mic jacks in front, I&#8217;d expect them to be on the left side. When you work in the office, you tend to listen music using ear phones all the time. The wire mess in front will definitely bug you a lot.</li>
<li>RJ45 Network jack, external VGA input at the back of the laptop. Whenever you need to connect LAN cable and/or external VGA, you will need to turn around the laptop or close the lid. Again, I&#8217;d put them either on the left or right side of the laptop.</li>
<li>Ugly Targus backpack. How many people really enjoy those bags that comes in a package?</li>
</ol>
<p>Little things I loved:</p>
<ol>
<li>CPU cooling</li>
<li>4 USB ports &amp; FireWire</li>
<li>apple like cdrom drive</li>
<li><span class="para"><span class="para">15.4&#8243; WXGA</span></span></li>
<li><span class="para"><span class="para">8-in-1 media memory card reader</span></span></li>
<li><span class="para"><span class="para"> Two stereo 2 watt internal speakers with HD Audio 2.0 software standard</span></span></li>
</ol>
<p>Here&#8217;s some shots of the laptop</p>
<div id="attachment_315" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-315" title="MacBook 13&quot; by Dell Vostro 1510" src="http://www.jusupov.com/wp-content/uploads/2009/04/17042009037-300x225.jpg" alt="MacBook 13&quot; by Dell Vostro 1510" width="300" height="225" /><p class="wp-caption-text">MacBook 13&quot; by Dell Vostro 1510</p></div>
<div id="attachment_316" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-316" title="Dell Vostro 1510 Keyboard" src="http://www.jusupov.com/wp-content/uploads/2009/04/17042009038-300x225.jpg" alt="Dell Vostro 1510 Keyboard" width="300" height="225" /><p class="wp-caption-text">Dell Vostro 1510 Keyboard</p></div>
<div id="attachment_317" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-317" title="Dell Vostro 1510 &amp; MacBook 13&quot;" src="http://www.jusupov.com/wp-content/uploads/2009/04/17042009034-300x225.jpg" alt="Dell Vostro 1510 &amp; MacBook 13&quot;" width="300" height="225" /><p class="wp-caption-text">Dell Vostro 1510 &amp; MacBook 13&quot;</p></div>
<p>How much? The cheaper model is RM2379 and the higher specs model is RM3839.</p>
<p>Do you have Dell Vostro? What&#8217;s your say? Share it with us.</p>
<p><iframe src="http://rcm.amazon.com/e/cm?t=arststechblog-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=B001Z0UZSQ&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2009/04/20/review-dell-vostro-1510-laptop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Review &#8211; Lenovo IdeaPad S10</title>
		<link>http://www.jusupov.com/2009/04/14/review-lenovo-ideapad-s10/</link>
		<comments>http://www.jusupov.com/2009/04/14/review-lenovo-ideapad-s10/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 17:17:56 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[ideapad]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[s10]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=302</guid>
		<description><![CDATA[One of my bosses at my place bought a netbook &#8211; Lenovo IdeaPad S10. I couldn&#8217;t stop myself from getting my hands on that machine.
First thing I noticed is that the keyboard is really small and not so perfectly designed. You can always blame to the fact that it&#8217;s a netbook. Yes, but why not [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_303" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-303" title="IdeaPad S10 Netbook" src="http://www.jusupov.com/wp-content/uploads/2009/04/img050-300x225.jpg" alt="IdeaPad S10 Netbook" width="300" height="225" /><p class="wp-caption-text">IdeaPad S10 Netbook</p></div>
<p>One of my bosses at my place bought a netbook &#8211; Lenovo IdeaPad S10. I couldn&#8217;t stop myself from getting my hands on that machine.</p>
<p>First thing I noticed is that the keyboard is really small and not so perfectly designed. You can always blame to the fact that it&#8217;s a netbook. Yes, but why not take a look at HP Mini? They sure did a hell of a job with their keyboard.</p>
<div id="attachment_304" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-304" title="IdeaPad S10 Netbook Keyboard" src="http://www.jusupov.com/wp-content/uploads/2009/04/img051-300x225.jpg" alt="IdeaPad S10 Netbook Keyboard" width="300" height="225" /><p class="wp-caption-text">IdeaPad S10 Netbook Keyboard</p></div>
<p>Also left/right click buttons aren&#8217;t that nice too. When clicking right/left click you have a bit of trouble, not ergonomic(?).</p>
<div id="attachment_305" class="wp-caption alignnone" style="width: 235px"><img class="size-medium wp-image-305" title="IdeaPad S10 Netbook Charger" src="http://www.jusupov.com/wp-content/uploads/2009/04/img053-225x300.jpg" alt="IdeaPad S10 Netbook Charger" width="225" height="300" /><p class="wp-caption-text">IdeaPad S10 Netbook Charger</p></div>
<p>Honestly, if you make that small netbook I think you should have spent some time designing a more compact and more user friendly charger. Learn from Apple. I love their charger. The fact that I can remove the thicker part of the charger and make the charger damn small.</p>
<p>However I liked their netbook cover. It&#8217;s well designed and cute.</p>
<div id="attachment_306" class="wp-caption alignnone" style="width: 235px"><img class="size-medium wp-image-306" title="IdeaPad S10 Netbook Cover" src="http://www.jusupov.com/wp-content/uploads/2009/04/img052-225x300.jpg" alt="IdeaPad S10 Netbook Cover" width="225" height="300" /><p class="wp-caption-text">IdeaPad S10 Netbook Cover</p></div>
<p>If you take a look at the specs:</p>
<p>Intel Atom N270 CPU, 2GB RAM, 160GB SATA HDD, Intel 95o,  10/100 Mbps LAN, b/g WiFi, Bluetooth, 1.3Megapixel webcam, SD/MMC/MS/MS pro card reader, 2xUSB port.</p>
<p>It&#8217;s 1.25kg, 3 cell battery. For a good netbook I&#8217;d say 6 cell battery is must. May be you sacrifice and have a little bit more weight.</p>
<p>Overall, bad keyboard, low battery life, long/big charger, nice cover, good CPU.<br />
<a href="http://www.amazon.com/gp/product/B001GNBD8I?ie=UTF8&#038;tag=arststechblog-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B001GNBD8I">Lenovo Ideapad S10 10.2-Inch Netbook (1.6 GHz Intel Atom N270 Processor, 1 GB RAM, 160 GB Hard Drive, XP Home) White</a><img src="http://www.assoc-amazon.com/e/ir?t=arststechblog-20&#038;l=as2&#038;o=1&#038;a=B001GNBD8I" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2009/04/14/review-lenovo-ideapad-s10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Hosting &#8211; a top alternative</title>
		<link>http://www.jusupov.com/2009/04/06/linux-hosting-a-top-alternative/</link>
		<comments>http://www.jusupov.com/2009/04/06/linux-hosting-a-top-alternative/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 15:34:02 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=299</guid>
		<description><![CDATA[Anyone looking to buy web hosting that is of top quality and offered at a reasonable fee will most likely have come across the option of Linux hosting. It is one of the most common cheap hosting plans today; only costing a couple of dollars each month. The Linux software and development itself is open [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone looking to buy web hosting that is of top quality and offered at a reasonable fee will most likely have come across the option of Linux hosting. It is one of the most common cheap hosting plans today; only costing a couple of dollars each month. The Linux software and development itself is open source and hence free. Many like to compare Linux hosting with Windows hosting so let us take a further look at if there is any difference and which one to choose.</p>
<p>These two types of hosting are quite similar in many ways but there are still a few differences that could be worth mentioning. Firstly though, one mistake that many seem to do is focusing too much on the operating system rather than picking web host because of its services and features. We have already mentioned that Linux hosting comes very cheap (so does Windows hosting) and all the features that almost always are included makes the hosting plan even more impressive. Take a look at the Linux hosting plans offered by the largest hosting providers on the market – we are sure that you will like what you see.</p>
<p>Ok, <a title="linux hosting" href="http://www.webhostingsearch.com/linux-web-hosting.php" target="_blank">Linux hosting</a> and Windows hosting are quite similar in many ways but is it possible to say that one is better than the other? Historically has Linux been regarded as the stronger alternative among webmasters and it still seems as if it is their top alternative. One reason for this could be that Linux hosting has narrowed its ease-of-use gap and functionality.  Windows hosting is of course not a bad alternative and it can boost with full allowance for use of ASP and ASP.Net. You are probably better off with Windows if you feel more comfortable with ASP when creating websites. If you are not particularly fond of ASP we would like to recommend you picking Linux hosting.</p>
<p>If we look into web servers in Linux we have Apache, lighttpd, nginx and many other open source servers. They are 100% open source and free. For big websites you can have complicated setup like clustering and failover.</p>
<p>In Windows hosting we have IIS. Mostly it is used to host .NET (old same ASP). Unlike in Linux, in IIS you are more or less stuck with .NET and there&#8217;s not much chance to scale.</p>
<p>Most of the successful websites run free and open source servers and applications. Good examples will be Google, Facebook, Flickr, Twitter, Yahoo and such.</p>
<p>So if you are <a title="Web Hosting Search" href="http://www.webhostingsearch.com/" target="_blank">buy web hosting</a> consider linux hosting as an alternative. If you don&#8217;t have any particular reason for going windows hosting go for linux hosting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2009/04/06/linux-hosting-a-top-alternative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poka 2008!</title>
		<link>http://www.jusupov.com/2008/12/31/poka-2008/</link>
		<comments>http://www.jusupov.com/2008/12/31/poka-2008/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 09:06:14 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Life is beautiful]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=297</guid>
		<description><![CDATA[It&#8217;s 9pm and I&#8217;m at my sister&#8217;s place enjoying quite family holiday.
It&#8217;s no secret that New Year is not celebrated here like back at home. With all the shining super-mega shopping complexes, all the luxury and high technology New Year eve isn&#8217;t as exciting. I guess it&#8217;s not because of those things, I guess it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s 9pm and I&#8217;m at my sister&#8217;s place enjoying quite family holiday.</p>
<p>It&#8217;s no secret that New Year is not celebrated here like back at home. With all the shining super-mega shopping complexes, all the luxury and high technology New Year eve isn&#8217;t as exciting. I guess it&#8217;s not because of those things, I guess it&#8217;s the new year mood that gets you high and makes it more exciting.</p>
<p>Yeah, few hours left of 2008, 2009 is just ahead. So what was so special in 2008 to me?</p>
<ul>
<li>My daughter, my sweet angel. She turned 1 and walking and talking(in her own way). My shining star. I love her so much!</li>
<li>My son, super-duper cool guy <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  He started talking English only. His first year at pre-school is over. He&#8217;s not rooky anymore <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
<li>My wife started working as freelance guide. She couldn&#8217;t wait to start. Now she&#8217;s in Sabah, a part of Malaysia where the locals used to hang skulls of their ancestors. She&#8217;s there for a 2 weeks job. Doing pretty good.</li>
<li>I got to know great and interesting people. Learned a lot.</li>
<li>Went to couple of barcamps.</li>
<li>Started driving, bought my first ever car. An old Honda civic which is older then me <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
<li>Started off (2-3 months ago)  couple of websites ( <a title="Hot Wedding Guide &amp; Tips" href="http://hotweddingguide.com" target="_blank">http://hotweddingguide.com</a> and <a title="Brandology" href="http://thebrandology.com" target="_self">http://thebrandology.com</a> ) with my kid sister. Today I got to know they are Google PR2!</li>
<li>Said good bye to my futsal career (as if!) because of my knee injury. I really have to find some time and get it &#8220;fixed&#8221; as my better half says.</li>
<li>Have malaysian server, moving out from US.</li>
<li>Hands on Macs, iPod touch</li>
</ul>
<p>I could go on with the list but I think it&#8217;s enough. Now, next post will be expectations for the year 2009.</p>
<p>Stay around.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/12/31/poka-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPod touch and first installed apps</title>
		<link>http://www.jusupov.com/2008/12/24/ipod-touch-and-first-installed-apps/</link>
		<comments>http://www.jusupov.com/2008/12/24/ipod-touch-and-first-installed-apps/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 04:21:10 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[iPod Touch]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=281</guid>
		<description><![CDATA[Last weekend my lovely wife gave me a surprise gift &#8211; iPod touch 16GB. It was out of nowhere a smashing surprise!
As soon as I got back home and connected iPod to my PC, I started downloading apps one after another. Of course, all free versions. First thing I noticed, I couldn&#8217;t get my apple [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend my lovely wife gave me a surprise gift &#8211; iPod touch 16GB. It was out of nowhere a smashing surprise!</p>
<p>As soon as I got back home and connected iPod to my PC, I started downloading apps one after another. Of course, all free versions. First thing I noticed, I couldn&#8217;t get my apple ID to get integrated. I don&#8217;t have a credit card or neither do I want to pay for the apps(for now).  So the easiest way would be registering a new account and setting <em>None </em>as payment method.</p>
<p>After a couple of days, I decided to write a short list of my favourite iPod touch apps.</p>
<ol>
<li>Free RSS Reader. It&#8217;s a cool software to read your favourite blogs/sites feeds. It can manage to pull the feeds offline so you can read while not connected to WiFi.
<p><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0007.png"><img class="alignnone size-full wp-image-284" title="img_0007" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0007.png" alt="" width="320" height="480" /></a><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0007.png"><br />
</a></li>
<li>Twitterrific. A very cool software, helps you to tweet through you iPod.<br />
<a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0008.png"><img class="alignnone size-full wp-image-285" title="img_0008" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0008.png" alt="" width="320" height="480" /></a></li>
<li>TouchTerm. It&#8217;s a terminal to connect to your OpenSSH Servers. If you haven&#8217;t jailed your iPod, this is the only way to connect to them to my knowledge.<br />
<a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0009.png"><img class="alignnone size-full wp-image-286" title="img_0009" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0009.png" alt="" width="320" height="480" /></a></li>
<li>Discover. Use your iPod as external disk. Share files.
<p><div id="attachment_287" class="wp-caption alignnone" style="width: 330px"><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0010.png"><img class="size-full wp-image-287" title="Discover" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0010.png" alt="use your iPod touch as external disk" width="320" height="480" /></a><p class="wp-caption-text">use your iPod touch as external disk</p></div></li>
<li>WordPress. If you run your own hosted WordPress blog, here&#8217;s a chance to blog through your iPod.
<p><div id="attachment_288" class="wp-caption alignnone" style="width: 330px"><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0011.png"><img class="size-full wp-image-288" title="img_0011" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0011.png" alt="WordPress" width="320" height="480" /></a><p class="wp-caption-text">WordPress</p></div></li>
<li>LiveJournal. For LiveJournal based blogs.
<p><div id="attachment_289" class="wp-caption alignnone" style="width: 330px"><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0014.png"><img class="size-full wp-image-289" title="img_0014" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0014.png" alt="LiveJournal" width="320" height="480" /></a><p class="wp-caption-text">LiveJournal</p></div></li>
<li>Windows RDP &amp; VNC Client.<br />
<a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0017.png"><img class="alignnone size-full wp-image-291" title="img_0017" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0017.png" alt="" width="320" height="480" /></a></li>
<li>iQuran. Read, listen and translate Holy Quran.
<p><div id="attachment_292" class="wp-caption alignnone" style="width: 330px"><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0018.png"><img class="size-full wp-image-292" title="img_0018" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0018.png" alt="Holy Quran" width="320" height="480" /></a><p class="wp-caption-text">Holy Quran</p></div></li>
<li>Evernote. Take notes everywhere in text, voice, video.
<p><div id="attachment_293" class="wp-caption alignnone" style="width: 330px"><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0020.png"><img class="size-full wp-image-293" title="img_0020" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0020.png" alt="EverNote" width="320" height="480" /></a><p class="wp-caption-text">EverNote</p></div></li>
<li>Facebook. Do facebook.
<p><div id="attachment_294" class="wp-caption alignnone" style="width: 330px"><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0021.png"><img class="size-full wp-image-294" title="img_0021" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0021.png" alt="Facebook" width="320" height="480" /></a><p class="wp-caption-text">Facebook</p></div></li>
<li>Nimbuzz. Conntect to every single IM service via one single messenger.
<p><div id="attachment_295" class="wp-caption alignnone" style="width: 330px"><a href="http://www.jusupov.com/wp-content/uploads/2008/12/img_0023.png"><img class="size-full wp-image-295" title="img_0023" src="http://www.jusupov.com/wp-content/uploads/2008/12/img_0023.png" alt="Nimbuzz" width="320" height="480" /></a><p class="wp-caption-text">Nimbuzz</p></div></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/12/24/ipod-touch-and-first-installed-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Active Endpoints, Business Process Management Software</title>
		<link>http://www.jusupov.com/2008/12/24/active-endpoints-business-process-management-software/</link>
		<comments>http://www.jusupov.com/2008/12/24/active-endpoints-business-process-management-software/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 22:40:45 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Sponsored Reviews]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=275</guid>
		<description><![CDATA[Active Endpoints is a provider of cost-effectively and flexibly use all of the web services infrastructure that has been installed in companies over the last few years to create composite applications.
Active Endpoints is the world&#8217;s first all-in-one, standards-based visual orchestration system.
Active is the only SOA-based process orchestration and business process management (BPM) system that allows [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Business Process Management " href="http://www.activevos.com" target="_self">Active Endpoints</a> is a provider of cost-effectively and flexibly use all of the web services infrastructure that has been installed in companies over the last few years to create composite applications.</p>
<p>Active Endpoints is the world&#8217;s first all-in-one, standards-based visual orchestration system.</p>
<p>Active is the only <a title="SOA Software " href="http://www.activevos.com/soa-service-oriented-architecture.php" target="_self">SOA-based process orchestration</a> and business process management (BPM) system that allows enterprises and developers to:</p>
<ol>
<li>Automate business processes</li>
<li>Collaborate across IT and business boundaries</li>
<li>Control the overall state of the business</li>
<li> Adapt rapidly and easily to change</li>
</ol>
<p>Ok, so what&#8217;s SOA? What&#8217;s BPEL? What is Business Process Management?</p>
<p>SOA &#8211; Service Oriented Architecture provides enterprises a design framework to deploy new application in a more faster and economic way. You can say that SOA is a bunch of different business services that can communicate with each other.</p>
<p>Web Services Business Process Execution Language(BPEL) &#8211; Web service interactions can be described in two ways. Executable business processes model actual behavior of a participant in a business interaction. Abstract business processes are partially specified processes that are not intended to be executed. An Abstract Process may hide some of the required concrete operational details. Abstract Processes serve a descriptive role, with more than one possible use case, including observable behavior and process template. WS-BPEL is meant to be used to model the behavior of both Executable and Abstract Processes. ( <a href="http://en.wikipedia.org/wiki/Business_Process_Execution_Language" target="_self">taken from Wikipedia</a> )</p>
<p>Business Process Management, well in short it&#8217;s a process where organizations satisfy their clients by studying and enhancing their products or services.</p>
<p>Now Active Endpoints let&#8217;s you do all these three things. There&#8217;s a free trial, you can download it at <a href="http://www.activevos.com/download-trial.php" target="_self">http://www.activevos.com/download-trial.php</a> by filling out some forms.</p>
<p>If you opt to purchase the software, they give you two options:</p>
<ol>
<li>You buy the software for Development Environment. ActiveVOS is $5,000 per CPU socket.</li>
<li>You buy the software for Deployment Environment. ActiveVOS is $12,000 per CPU socket when the Deployment licenses are ordered with a first-time purchase of Development licenses. Subsequent ActiveVOS deployment purchases are $25,000 per CPU socket.</li>
</ol>
<p>Support is given at annual fee of 20% of total license fees. If you need training,  a  5-day skills transfer program geared specifically to your project     teams needs. Includes 5 days on site for $10,000 plus travel and expenses.</p>
<p>You can follow them via their online blog at <a title="ActiveVos Blog " href="http://www.vosibilities.com/" target="_self">http://www.vosibilities.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/12/24/active-endpoints-business-process-management-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>See you at Barcamp Johor Bahru 2008</title>
		<link>http://www.jusupov.com/2008/11/23/see-you-at-barcamp-johor-baru-2008/</link>
		<comments>http://www.jusupov.com/2008/11/23/see-you-at-barcamp-johor-baru-2008/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 04:28:03 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=267</guid>
		<description><![CDATA[I wish I did go to the first Barcamp in KL but unfortunately I couldn&#8217;t make it for some reason. However, I will be attending Barcamp in Johor Bahru(JB) in 6th-7th December 2008.
For those who don&#8217;t know much about Malaysia, the capital of Malaysia is Kuala Lumpur(KL). And Johor Bahru is like 5 hours drive [...]]]></description>
			<content:encoded><![CDATA[<p>I wish I did go to the first Barcamp in KL but unfortunately I couldn&#8217;t make it for some reason. However, I will be attending <a title="Barcamp JB" href="http://barcamp.org/BarCampJB" target="_self">Barcamp in Johor Bahru(JB)</a> in 6th-7th December 2008.</p>
<p>For those who don&#8217;t know much about Malaysia, the capital of Malaysia is Kuala Lumpur(KL). And Johor Bahru is like 5 hours drive from KL. Yeah, so for me that&#8217;ll be another journey to that side of the country. Lately I&#8217;ve traveled to Singapore twice and Singapore is just opposite of JB.</p>
<div id="attachment_268" class="wp-caption alignnone" style="width: 410px"><a href="http://www.jusupov.com/wp-content/uploads/2008/11/barcamp-johor-baru-2008.jpg"><img class="size-full wp-image-268" title="Barcamp Johor Baru 2008" src="http://www.jusupov.com/wp-content/uploads/2008/11/barcamp-johor-baru-2008.jpg" alt="Barcamp Johor Baru 2008" width="400" height="121" /></a><p class="wp-caption-text">Barcamp Johor Baru 2008</p></div>
<p>So I went to their website and checked out the sessions. Here&#8217;s the ones I liked:</p>
<ul>
<li>Azure, Cloud computing from Microsoft.</li>
<li>MSC Malaysia pre-seed fund.</li>
<li>Microfinancing(?) from Kiva</li>
<li>Drupal</li>
<li>Enterprise PHP</li>
</ul>
<p>For the final sessions and tracks please check back at their website <a title="Barcamp JB" href="http://barcamp.org/BarCampJB" target="_self">http://barcamp.org/BarCampJB</a></p>
<p>So see you at Barcamp JB 2008!</p>
<p><strong>Update:</strong><br />
It&#8217;s Johor Bahru. New Johor <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/11/23/see-you-at-barcamp-johor-baru-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Startup Camp KL, Day 1</title>
		<link>http://www.jusupov.com/2008/11/22/startup-camp-kl-day-1/</link>
		<comments>http://www.jusupov.com/2008/11/22/startup-camp-kl-day-1/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 07:23:59 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Barcamp]]></category>
		<category><![CDATA[Life is beautiful]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=265</guid>
		<description><![CDATA[What I have really missed is getting up early, I guess that&#8217;s what you get when you live right in front of your office, literally. So to get myself register(registration at 8am) and attend early tracks(9am) I had to wake up at 6.30am. Travelled in LRT until Bangsar and took a cab to Midvalley Megamall.
Getting [...]]]></description>
			<content:encoded><![CDATA[<p>What I have really missed is getting up early, I guess that&#8217;s what you get when you live right in front of your office, literally. So to get myself register(registration at 8am) and attend early tracks(9am) I had to wake up at 6.30am. Travelled in LRT until Bangsar and took a cab to Midvalley Megamall.</p>
<p>Getting through registration and writing my name on a sticker and sticking it on my T-Shirt, I went into the lift where I meet <a title="Daniel CerVentus" href="http://daniel.cerventus.com/" target="_blank">Daniel CerVentus.</a> Upstairs at level 7 early comers were getting their startup camp T-Shirts and already getting social.</p>
<p>I attended <strong>Social Entrepreneurship &amp; its Challenges: Aceh &#8211; The Case Study</strong> &#8211; <em>Ellynita Hazlina Lamin, CEO, ACSB, </em><strong>Profiling: Picking The Right Partners</strong> &#8211; <em>Michael Reyes (<a href="http://moneytree.sg/" target="_blank">Co-founder, Money Tree</a>), </em><strong>The Entrepreneur Myth</strong> &#8211; <em><a title="Khailee Ng" href="http://khailee.info/" target="_blank">Khailee Ng</a>, </em> <strong>Shaking Today, Shaping Tomorrow -</strong> <em>Michael Tan, Founder of</em> <a href="http://www.yourparttime.com/"><em>www.yourparttime.com</em></a></p>
<p>Ellyn was quite emotional, her startup involved a lot more then just making big bucks. I believe she is contributing to the society and she is really dedicated to it. It was quite different and informative for me.</p>
<p>The next track was Michael&#8217;s from Money Tree. He was very experienced in giving speeches and did quite a interesting one. He made a lot of related jokes and interacted with the audience. His track was about how to read people and choose the right partner for your startup. It was fun.</p>
<p>Khailee started off quite in unusual way, he didn&#8217;t have any slides to show(I&#8217;m sure it is not because he didn&#8217;t have time to prepare it was his style) unlike others. He talked, very fast and very interestingly. All the audience was listening carefully to him. He mentioned his life experiences, mistakes and pitfalls of getting to where he is. And he is at <a title="The Youth Intelligence" href="http://www.theyouthintelligence.com" target="_blank">TheYouthIntelligence</a>. It was surprise for me to hear him mentioning about Phang, my boss over at Innity.</p>
<p>In between these sessions I met a lot new faces: Carmen and Jules from Creative Paramedics, Boon from Gotka Technologies and Steven from Brilliant Resources.</p>
<p>We had really nice chat with Carmen and Jules, they are sweet ladies that started 4Play magazine for kids and teens.</p>
<p>With Boon we couldn&#8217;t chat much since the track was already begining. But I guess will have time tomorrow.</p>
<p>Steven and I did exchange some thoughts of SEO and local web hosting companies and also business in general. His office turns out is not too far away from mine. This is yet another sucessful example of a startup.</p>
<p>Then we had lunch, it was quite long queue for the lunch. I waited a bit then I headed off to Midvalley shopping, I couldn&#8217;t miss a chance to eat outside <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  once I&#8217;m out of PJ.</p>
<p>Unfortunately, I couldn&#8217;t attend the tracks after lunch.</p>
<p>Right now I&#8217;m at my sisters place, will be going off to my place in a while. I&#8217;ll be posting Startup Camp, Day 2 post tomorrow.</p>
<p>Life is good &#8211;&gt; ayuuma.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/11/22/startup-camp-kl-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to access Linux ssh servers password-less in Linux</title>
		<link>http://www.jusupov.com/2008/09/26/how-to-access-linux-ssh-servers-password-less-in-linux/</link>
		<comments>http://www.jusupov.com/2008/09/26/how-to-access-linux-ssh-servers-password-less-in-linux/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 22:56:12 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=263</guid>
		<description><![CDATA[If you happened to run Linux and have multiple linux servers, here&#8217;s a short how to access them password-less.

First we need to generate some keys:
ssh-keygen -t dsa
Then we copy them over to the remote server:
scp .ssh/id_dsa.pub user@someserver:/somepath
Then we copy the key to the authorized_keys file:
cat id_dsa.pub &#62;&#62; .ssh/authorized_keys
Then as a security measure we chmod it:
chmod [...]]]></description>
			<content:encoded><![CDATA[<p>If you happened to run Linux and have multiple linux servers, here&#8217;s a short how to access them password-less.</p>
<ol>
<li>First we need to generate some keys:<br />
ssh-keygen -t dsa</li>
<li>Then we copy them over to the remote server:<br />
scp .ssh/id_dsa.pub user@someserver:/somepath</li>
<li>Then we copy the key to the authorized_keys file:<br />
cat id_dsa.pub &gt;&gt; .ssh/authorized_keys</li>
<li>Then as a security measure we chmod it:<br />
chmod 644 .ssh/authorized_keys</li>
<li>Logout and try login in again. Hurra!</li>
</ol>
<p><strong>Important note:</strong></p>
<p>Please set a password for your keychain. It&#8217;s a very insecure if you set no password for it. Somebody can eventually get your public key and access your servers without passwords. If you set password it will ask only at first time and keep in the session.</p>
<p>Password-less ssh logins are done via keychain. Here&#8217;s a small excerpt from the Gentoo Wiki:</p>
<blockquote><p>Many of us use the excellent <a href="http://www.openssh.com/">OpenSSH</a> as a secure, encrypted replacement for the venerable telnet and rsh commands.  One of OpenSSH&#8217;s (and the commercial SSH2&#8217;s) intriguing features is its ability to authenticate users using the RSA and DSA authentication protocols, which are based upon a pair of complementary numerical &#8220;keys&#8221;.  And one of the main appeals of RSA and DSA authentication is the promise of being able to establish connections to remote systems <span class="emphasis">without supplying a password</span>.  The <span class="code" dir="ltr">keychain</span> script makes handling RSA and DSA keys both convenient and secure.  It acts as a front-end to <span class="code" dir="ltr">ssh-agent</span>, allowing you to easily have one long-running <span class="code" dir="ltr">ssh-agent</span> process <span class="emphasis">per system</span>, rather than per login session.  This dramatically reduces the number of times you need to enter your passphrase from once per new login session to once <span class="emphasis">every time your local machine is rebooted.</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/09/26/how-to-access-linux-ssh-servers-password-less-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon EC2,  Cloud Computing Getting Started</title>
		<link>http://www.jusupov.com/2008/09/24/amazon-ec2-cloud-computing-getting-started/</link>
		<comments>http://www.jusupov.com/2008/09/24/amazon-ec2-cloud-computing-getting-started/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 00:44:11 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=258</guid>
		<description><![CDATA[Amazon has this services where you can use virtual servers, either your custom or prebuilt publicly shared server images. The key point here is that Amazon has a lot of servers that can be used at any time.
So let&#8217;s get started. The first thing to do is sign up at Amazon EC2. I&#8217;ll be using [...]]]></description>
			<content:encoded><![CDATA[<p>Amazon has this services where you can use virtual servers, either your custom or prebuilt publicly shared server images. The key point here is that Amazon has a lot of servers that can be used at any time.</p>
<p>So let&#8217;s get started. The first thing to do is sign up at Amazon EC2. I&#8217;ll be using Ubuntu on this.</p>
<p>You need Java JRE, do:</p>
<p>apt-get install sun-java5-jre</p>
<p>vim .bashrc</p>
<p># Amazon Ec2<br />
export EC2_HOME=~/.ec2<br />
export PATH=$PATH:$EC2_HOME/bin<br />
export EC2_PRIVATE_KEY=~/.ec2/pk-VGKIRWAKVSIEXEPVFQ2NSVQ4APUMYAC3.pem<br />
export EC2_CERT=~/.ec2/cert-VGKIRWAKVSIEXEPVFQ2NSVQ4APUMYAC3.pem<br />
export JAVA_HOME=/usr<br />
type bash to reload your bash_rc</p>
<p>cd ~/.ec2</p>
<p>Amazon has this services where you can use virtual servers, either your custom or prebuilt publicly shared server images. The key point here is that Amazon has a lot of servers that can be used at any time.</p>
<p>So let&#8217;s get started. The first thing to do is sign up at Amazon EC2. I&#8217;ll be using Ubuntu on this.</p>
<p>You need Java JRE, do:</p>
<p>apt-get install sun-java5-jre</p>
<p>vim .bashrc</p>
<p># Amazon Ec2<br />
export EC2_HOME=~/.ec2<br />
export PATH=$PATH:$EC2_HOME/bin<br />
export EC2_PRIVATE_KEY=~/.ec2/pk-VGKIRWAKVSIEXEPVFQ2NSVQ4APUMYAC3.pem<br />
export EC2_CERT=~/.ec2/cert-VGKIRWAKVSIEXEPVFQ2NSVQ4APUMYAC3.pem<br />
export JAVA_HOME=/usr<br />
type bash to reload your bash_rc</p>
<p>cd ~/.ec2</p>
<p>Amazon has this services where you can use virtual servers, either your custom or prebuilt publicly shared server images. The key point here is that Amazon has a lot of servers that can be used at any time.</p>
<p>So let&#8217;s get started. The first thing to do is sign up at Amazon EC2. I&#8217;ll be using Ubuntu on this.</p>
<p>You need Java JRE, do:</p>
<p>apt-get install sun-java5-jre</p>
<p>vim .bashrc</p>
<p># Amazon Ec2<br />
export EC2_HOME=~/.ec2<br />
export PATH=$PATH:$EC2_HOME/bin<br />
export EC2_PRIVATE_KEY=~/.ec2/pk-VGKIRWAKVSIEXEPVFQ2NSVQ4APUMYAC3.pem<br />
export EC2_CERT=~/.ec2/cert-VGKIRWAKVSIEXEPVFQ2NSVQ4APUMYAC3.pem<br />
export JAVA_HOME=/usr<br />
type bash to reload your bash_rc</p>
<p>cd ~/.ec2</p>
<p>ec2-add-keypair arstan-keypair<br />
<a href="http://www.jusupov.com/wp-content/uploads/2008/07/keypair.jpg"><img class="alignnone size-full wp-image-259" title="Amazon EC2 Keypair generation" src="http://www.jusupov.com/wp-content/uploads/2008/07/keypair.jpg" alt="" width="500" height="198" /></a></p>
<p>Save those lines including  &#8212;&#8211;BEGIN RSA PRIVATE KEY&#8212;&#8211; and also  &#8212;&#8211;END RSA PRIVATE KEY&#8212;&#8211; lines.</p>
<p>sudo chmod 600 id_rsa-arstan-keypair</p>
<p>ec2-describe-images -o amazon This will show the server images that Amazon has for you. You can see ec2-describe-images -a to see all the server images you have access to.</p>
<p>ec2-run-instances ami-0459bc6d -k arstan-keypair</p>
<p>ec2-describe-instances will show you instances you are running.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/09/24/amazon-ec2-cloud-computing-getting-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install and run Ubuntu 8.04.1 Server in VirtualBox</title>
		<link>http://www.jusupov.com/2008/09/16/how-to-install-and-run-ubuntu-8041-server-in-virtualbox/</link>
		<comments>http://www.jusupov.com/2008/09/16/how-to-install-and-run-ubuntu-8041-server-in-virtualbox/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 12:17:07 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux-virtual]]></category>
		<category><![CDATA[ubuntu server]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=261</guid>
		<description><![CDATA[UPDATE:
You can just enable ACPI and PAE/NX in the VirtualBox image General Settings and you are all set to install Ubuntu.

It&#8217;s been long time since I posted in my blog. It&#8217;s past midnight Wednesday (I love Selangor state for its public holidays!) and no office tomorrow.
I watched closely VirtualBox from its Sun acquisition and I [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE:</strong></p>
<p>You can just enable ACPI and PAE/NX in the VirtualBox image General Settings and you are all set to install Ubuntu.</p>
<p><a href="http://www.jusupov.com/wp-content/uploads/2008/10/virtualbox.jpg"><img class="alignnone size-medium wp-image-264" title="virtualbox" src="http://www.jusupov.com/wp-content/uploads/2008/10/virtualbox-289x300.jpg" alt="" width="289" height="300" /></a></p>
<p>It&#8217;s been long time since I posted in my blog. It&#8217;s past midnight Wednesday (I love Selangor state for its public holidays!) and no office tomorrow.</p>
<p>I watched closely VirtualBox from its Sun acquisition and I am very pleased with the project progress overall. On my day to day RnD stuff I have already shifted myself from VMWare Sever to VirtualBox.</p>
<p>In VirtualBox after installing Ubuntu 8.04.1 Server (Hardy) and rebooting, you will get some errors that your CPU is not supported.</p>
<p><a href="http://www.jusupov.com/wp-content/uploads/2008/09/virtualbox-ubuntu.jpg"><img class="alignnone size-full wp-image-262" title="VirtualBox Ubuntu Error" src="http://www.jusupov.com/wp-content/uploads/2008/09/virtualbox-ubuntu.jpg" alt="Ubuntu CPU/Kernel error installation reboot" width="500" height="137" /></a></p>
<p>It&#8217;s because you have no linux-virtual package installed. So here&#8217;s the steps how to pass by this problem.</p>
<ol>
<li>Reboot the instance, boot into Rescue a broken system</li>
<li>If you chose auto-partitioning, select sda1 as your root directory and enter into it.</li>
<li>Execute dhclient eth0, apt-get update &amp;&amp; apt-get install linux-virtual</li>
<li>Type exit and reboot the system from the menu.</li>
</ol>
<p>Now you will be able to boot into your newly installed Ubuntu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/09/16/how-to-install-and-run-ubuntu-8041-server-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change network interface names in Ubuntu</title>
		<link>http://www.jusupov.com/2008/07/23/how-to-change-network-interface-names-in-ubuntu/</link>
		<comments>http://www.jusupov.com/2008/07/23/how-to-change-network-interface-names-in-ubuntu/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 03:22:26 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=260</guid>
		<description><![CDATA[Have you ever found out that your eth0 interface suddenly became eth1 or sth like that? I noticed that after some minor upgrades my eth0 became eth1. I hate this, because I am so used to eth0 as my LAN interface.
Also in latest versions of Ubuntu my WLAN is taken as wlan0. I&#8217;m so much [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever found out that your eth0 interface suddenly became eth1 or sth like that? I noticed that after some minor upgrades my eth0 became eth1. I hate this, because I am so used to eth0 as my LAN interface.</p>
<p>Also in latest versions of Ubuntu my WLAN is taken as wlan0. I&#8217;m so much used to eth1 as my WLAN. Anyways, on my laptop I won&#8217;t have any additional LAN devices except my built in.</p>
<p>So, let&#8217;s change those things, shall we?</p>
<p>sudo vim /etc/udev/rules.d/70-persistent-net.rules</p>
<blockquote><p># PCI device 0&#215;14e4:0&#215;1600 (tg3)<br />
SUBSYSTEM==&#8221;net&#8221;, ACTION==&#8221;add&#8221;, DRIVERS==&#8221;?*&#8221;, ATTR{address}==&#8221;00:xx:xx:xx:xx:xx&#8221;, ATTR{type}==&#8221;1&#8243;, KERNEL==&#8221;eth*&#8221;, NAME=&#8221;eth1&#8243;</p>
<p># PCI device 0&#215;8086:0&#215;4222 (iwl3945)<br />
SUBSYSTEM==&#8221;net&#8221;, ACTION==&#8221;add&#8221;, DRIVERS==&#8221;?*&#8221;, ATTR{address}==&#8221;00:xx:xx:xx:xx:xx&#8221;, ATTR{type}==&#8221;1&#8243;, KERNEL==&#8221;wlan*&#8221;, NAME=&#8221;wlan0&#8243;</p></blockquote>
<p>Change above to:</p>
<blockquote>
<blockquote><p># PCI device 0&#215;14e4:0&#215;1600 (tg3)<br />
SUBSYSTEM==&#8221;net&#8221;, ACTION==&#8221;add&#8221;, DRIVERS==&#8221;?*&#8221;, ATTR{address}==&#8221;00:xx:xx:xx:xx:xx&#8221;, ATTR{type}==&#8221;1&#8243;, KERNEL==&#8221;eth*&#8221;, NAME=&#8221;eth0&#8243;</p>
<p># PCI device 0&#215;8086:0&#215;4222 (iwl3945)<br />
SUBSYSTEM==&#8221;net&#8221;, ACTION==&#8221;add&#8221;, DRIVERS==&#8221;?*&#8221;, ATTR{address}==&#8221;00:xx:xx:xx:xx:xx&#8221;, ATTR{type}==&#8221;1&#8243;, KERNEL==&#8221;wlan*&#8221;, NAME=&#8221;eth1&#8243;</p></blockquote>
</blockquote>
<p>So, all you have to do is to edit /etc/udev/rules.d/70-persistent-net.rules file and change the NAME option to your choice of your ethernet/wifi device name.</p>
<p>See bugs from Ubuntu Launchpad <a href="https://bugs.launchpad.net/ubuntu/+bug/148448" target="_blank">here</a> and <a href="https://bugs.launchpad.net/ubuntu/+source/udev/+bug/145382" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/07/23/how-to-change-network-interface-names-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>History of my bash commands</title>
		<link>http://www.jusupov.com/2008/07/22/history-of-my-bash-commands/</link>
		<comments>http://www.jusupov.com/2008/07/22/history-of-my-bash-commands/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 22:31:25 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=257</guid>
		<description><![CDATA[?arstan@blacky:~$ history &#124; awk &#8216;{a[$2]++ } END{for(i in a){print a[i] &#8221; &#8221; i}}&#8217;&#124;sort -rn&#124;head
40 ssh
38 ping
35 su
23 sudo
22 ls
18 vlc
12 cd
10 ifconfig
10 cat
9 axel
This is my daily work laptop. Running xubuntu 8.0.4.1
What&#8217;s yours?
]]></description>
			<content:encoded><![CDATA[<p>?arstan@blacky:~$ history | awk &#8216;{a[$2]++ } END{for(i in a){print a[i] &#8221; &#8221; i}}&#8217;|sort -rn|head<br />
40 ssh<br />
38 ping<br />
35 su<br />
23 sudo<br />
22 ls<br />
18 vlc<br />
12 cd<br />
10 ifconfig<br />
10 cat<br />
9 axel</p>
<p>This is my daily work laptop. Running xubuntu 8.0.4.1</p>
<p>What&#8217;s yours?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/07/22/history-of-my-bash-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Futsal injury makes me appreciate people I know, things I have</title>
		<link>http://www.jusupov.com/2008/07/05/i-am-thankful/</link>
		<comments>http://www.jusupov.com/2008/07/05/i-am-thankful/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 08:23:03 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Life is beautiful]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=256</guid>
		<description><![CDATA[Recently, like a 2-3 weeks ago I joined my colleagues to play futsal after work.  We&#8217;ve been playing futsal for the last few weeks. And guess what, I got to hurt my knee very badly, I couldn&#8217;t walk for at least 3 days. Every touch, every step hurt so badly.
I am very thankful to [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, like a 2-3 weeks ago I joined my colleagues to play futsal after work.  We&#8217;ve been playing futsal for the last few weeks. And guess what, I got to hurt my knee very badly, I couldn&#8217;t walk for at least 3 days. Every touch, every step hurt so badly.</p>
<p>I am very thankful to my lovely wife for her care and patience. I am very thankful for my brothers Nurbek and Kamchybek, my sister Aijan to help me in every possible ways. My good friend Ades also stood up to give me a hand.</p>
<p>My boss at my work was also very kind to say &#8220;No worries, just get better&#8221;.</p>
<p>I came to understand that just walking itself is a very big thing, I fully understood those disabled people who can&#8217;t walk.</p>
<p>All of these made a good lesson, I have to be always thankful for my family and friends, for all that I have  and say <a title="Alhamdulillah" href="http://en.wikipedia.org/wiki/Alhamdulillah" target="_blank">Alhamdulillah</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/07/05/i-am-thankful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Malaysia Proton Persona Club Online</title>
		<link>http://www.jusupov.com/2008/06/07/malaysia-proton-persona-club-online/</link>
		<comments>http://www.jusupov.com/2008/06/07/malaysia-proton-persona-club-online/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 12:59:21 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Life is beautiful]]></category>
		<category><![CDATA[proton persona]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=255</guid>
		<description><![CDATA[I&#8217;ve been long enough in Malaysia to start thinking of getting a car for my family.  Having two kids, younger daughter is 1 year plus and elder 3 year plus, makes traveling quite unpleasant experience. You have to  make sure everybody sits in the taxi, the bags, baby things and toys all of it must [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been long enough in Malaysia to start thinking of getting a car for my family.  Having two kids, younger daughter is 1 year plus and elder 3 year plus, makes traveling quite unpleasant experience. You have to  make sure everybody sits in the taxi, the bags, baby things and toys all of it must fit in the booth.</p>
<p>So, I&#8217;ve been thinking of a car. Since I don&#8217;t have much experience, as a start I am thinking a low cost local car. I end up having to make choice between <a href="http://en.wikipedia.org/wiki/Proton_Persona" target="_self">Proton Persona</a> and <a href="http://en.wikipedia.org/wiki/Proton_Saga#Second_generation_.282008-.29" target="_self">Proton Saga(BLM)</a>.</p>
<p>So far I like Persona, but it&#8217;s slightly more expensive then Saga. Anyways, I still have time to make my mind up(and to get ready some cash) before I can really afford.</p>
<p>Searching in the internet for Proton Persona clubs, I came across this one &#8211; <a title="Malaysian Proton Persona Club" href="http://www.personaclub.net" target="_self">http://www.personaclub.net</a></p>
<p>This club is quite active, although if you aren&#8217;t local you might be a little bit lost coz some threads are in Malay language, or Minglish <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  If you happened to be a Persona owner, you will be most welcome to join this club.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/06/07/malaysia-proton-persona-club-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install VMware Server on Ubuntu 8.04</title>
		<link>http://www.jusupov.com/2008/06/06/how-to-install-vmware-server-on-ubuntu-804/</link>
		<comments>http://www.jusupov.com/2008/06/06/how-to-install-vmware-server-on-ubuntu-804/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 00:27:45 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[8.04 vmware]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware server]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=254</guid>
		<description><![CDATA[Another note to myself.

wget http://download3.vmware.com/software/vmserver/VMware-server-1.0.6-91891.tar.gz
apt-get install build-essential linux-kernel-devel linux-headers-generic xinetd
tar -xzvf VMware-server-1.0.6-91891.tar.gz
 cd vmware-server-distrib &#38;&#38; ./vmware-install.pl
ln -sf /usr/lib/gcc/i486-linux-gnu/4.2.3/libgcc_s.so /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1 &#38;&#38; ln -sf /usr/lib/libpng12.so.0 /usr/lib/vmware/lib/libpng12.so.0/libpng12.so.0

That&#8217;s it.
]]></description>
			<content:encoded><![CDATA[<p>Another note to myself.</p>
<ol>
<li>wget http://download3.vmware.com/software/vmserver/VMware-server-1.0.6-91891.tar.gz</li>
<li>apt-get install build-essential linux-kernel-devel linux-headers-generic xinetd</li>
<li>tar -xzvf VMware-server-1.0.6-91891.tar.gz</li>
<li> cd vmware-server-distrib &amp;&amp; ./vmware-install.pl</li>
<li>ln -sf /usr/lib/gcc/i486-linux-gnu/4.2.3/libgcc_s.so /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1 &amp;&amp; ln -sf /usr/lib/libpng12.so.0 /usr/lib/vmware/lib/libpng12.so.0/libpng12.so.0</li>
</ol>
<p>That&#8217;s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/06/06/how-to-install-vmware-server-on-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Received a book from Packt Publishing</title>
		<link>http://www.jusupov.com/2008/05/29/received-a-book-from-packt-publishing/</link>
		<comments>http://www.jusupov.com/2008/05/29/received-a-book-from-packt-publishing/#comments</comments>
		<pubDate>Wed, 28 May 2008 23:04:25 +0000</pubDate>
		<dc:creator>arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=250</guid>
		<description><![CDATA[Sometime ago Rebecca from Packt Publishing sent me an email asking if I would review their recently launched  book on Scalix titled ‘Scalix: Linux Administrator’s Guide’.
Yesterday I found the postal package on my table, it was from them.
I did go through the book roughly, I find it quite useful as a reference in your bookshelf. [...]]]></description>
			<content:encoded><![CDATA[<p>Sometime ago Rebecca from <a title="Packt Publishing" href="http://www.packtpub.com" target="_blank">Packt Publishing</a> sent me an email asking if I would review their recently launched  book on Scalix titled <a title="Scalix: Linux Admins guide" href="http://www.packtpub.com/scalix/book" target="_blank">‘Scalix: Linux Administrator’s Guide’</a>.</p>
<p>Yesterday I found the postal package on my table, it was from them.</p>
<p>I did go through the book roughly, I find it quite useful as a reference in your bookshelf. I will read through the book carefully and try to implement examples and how-tos in this book and write a full featured detailed review.</p>
<p>Until then stay tuned!</p>
<p><a href="http://www.jusupov.com/wp-content/uploads/2008/05/dsc01479.jpg"><img class="alignnone size-medium wp-image-251" title="Postal from Packt Publishing" src="http://www.jusupov.com/wp-content/uploads/2008/05/dsc01479-300x225.jpg" alt="" width="300" height="225" /> </a><a href="http://www.jusupov.com/wp-content/uploads/2008/05/dsc01480.jpg"><img class="alignnone size-medium wp-image-252" title="The book itself" src="http://www.jusupov.com/wp-content/uploads/2008/05/dsc01480-300x225.jpg" alt="Scalix Book" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/05/29/received-a-book-from-packt-publishing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure hardware RAID in Dell Servers</title>
		<link>http://www.jusupov.com/2008/05/27/how-to-configure-hardware-raid-in-dell-servers/</link>
		<comments>http://www.jusupov.com/2008/05/27/how-to-configure-hardware-raid-in-dell-servers/#comments</comments>
		<pubDate>Tue, 27 May 2008 00:48:54 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cyber jaya]]></category>
		<category><![CDATA[dell servers]]></category>
		<category><![CDATA[hardware raid]]></category>
		<category><![CDATA[raid]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=248</guid>
		<description><![CDATA[One of the Dell Servers, Dell PowerEdge 2850, in our Cyber Jaya DC had hard disk issues, so I had to replace it. For some reason, I had a little bit of trouble setting up and configuring hardware RAID. Mostly because the terms used in the configuration menus and the menu itself is kinda confusing
So [...]]]></description>
			<content:encoded><![CDATA[<p>One of the Dell Servers, Dell PowerEdge 2850, in our Cyber Jaya DC had hard disk issues, so I had to replace it. For some reason, I had a little bit of trouble setting up and configuring hardware RAID. Mostly because the terms used in the configuration menus and the menu itself is kinda confusing</p>
<p>So here&#8217;s a note to myself on how to make raid in dell servers:</p>
<ol>
<li>While booting the server, enter PERC/CERC BIOS Configuration Utility by pressing Control + M key.</li>
<li>From the Management menu select Configure option.</li>
<li>Select Clear Configuration from the Configure menu, Select Yes when prompted. At this point we have deleted all existing arrays and/or logical drives. Pressing Escape button go to Management menu.</li>
<li>Go to Clear option in Management menu. Select drives by pressing spacebar and when you see READY status flashing you press F10 button. Select Yes and you will be reformatting those drives. This will take some time depending on your drive capacity. With my drives (2&#215;73GB) it took around 1hour ++. When it&#8217;s done press escape and reboot your server</li>
<li>Repeat Step 1.</li>
<li>Select Easy Configuration from Configure menu. Make sure all drives are in GREEN and READY state.</li>
<li>Using arrow keys select the drives one by one and press spacebar. This will change drives status from READY to ONLINE A00-00. Repeat this step for as much hard drives you have.</li>
<li>If you want to make a hot spare, select a hard drive you wanna make hot spare and press F4.</li>
<li>Select all ONLINE status drives and press F10. This will bring you Select Configurable Array(s) dialog. Now pressing spacebar you get A-00 window, here you should get Span-1. Press F10 key to verify your logical drive settings. Here you will get options of RAID-0 and RAID-1. When you made your mind and set your RAID configs go to Accept option and press enter. When prompted select YES.</li>
<li>Now it&#8217;s time to make our logical drive bootable. In Configure menu go to Specify Boot Drive and select Specify a Logical Drive as BootDrive. The number in Logical BootDrive set to 0. (This will change according to your drive configs). And press enter.</li>
<li>Pressing Escape button you quit from the menus and go to Exit dialog. Reboot your server and you are set to install your preferred OS now!</li>
</ol>
<p>This note is for RAID-1 with 2&#215;73GB SCSI hard drives. For your case it might be slightly different but the overall process should be something like this.</p>
<p>Enjoy!</p>
<p><strong>UPDATE:</strong> Here&#8217;s a snapshot of the PERC/CERC BIOS Configuration Utility</p>
<p><a href="http://www.jusupov.com/wp-content/uploads/2008/05/dsc01478.jpg"><img class="alignnone size-thumbnail wp-image-249" title="PERC/CERC BIOS" src="http://www.jusupov.com/wp-content/uploads/2008/05/dsc01478-150x150.jpg" alt="PERC/CERC BIOS Configuration Utility" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/05/27/how-to-configure-hardware-raid-in-dell-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
