<?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 &#187; Linux</title>
	<atom:link href="http://www.jusupov.com/category/linux/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 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>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 setup Windows VPN in Ubuntu</title>
		<link>http://www.jusupov.com/2008/02/22/how-to-setup-windows-vpn-in-ubuntu/</link>
		<comments>http://www.jusupov.com/2008/02/22/how-to-setup-windows-vpn-in-ubuntu/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 04:47:29 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/02/22/how-to-setup-windows-vpn-in-ubuntu/</guid>
		<description><![CDATA[sudo apt-get install network-manager-pptp
sudo killall nm-applet
sudo /etc/init.d/dbus restart
nm-applet &#8211;sm-disable &#38;
Then configure your Microsoft VPN Connections in Network Manager. It&#8217;s the one on top right corner.
]]></description>
			<content:encoded><![CDATA[<blockquote><p>sudo apt-get install network-manager-pptp<br />
sudo killall nm-applet<br />
sudo /etc/init.d/dbus restart<br />
nm-applet &#8211;sm-disable &amp;</p></blockquote>
<p>Then configure your Microsoft VPN Connections in Network Manager. It&#8217;s the one on top right corner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/02/22/how-to-setup-windows-vpn-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install libssh2 with PHP on CentOS 5 x86_64</title>
		<link>http://www.jusupov.com/2008/01/19/libssh2-on-centos-x86-64-systems/</link>
		<comments>http://www.jusupov.com/2008/01/19/libssh2-on-centos-x86-64-systems/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 01:25:16 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/01/19/libssh2-on-centos-x86-64-systems/</guid>
		<description><![CDATA[This post is just for archiving it, if you find it useful I&#8217;m glad!
If you are dealing with CentOS 5 x86_64 (Free version of RHEL5), try to install libssh2 for your PHP development you might fail in doing so.
So here&#8217;s a quick tip how to install libssh2 on X86_64 systems(I think i386 works just fine)
Edit: [...]]]></description>
			<content:encoded><![CDATA[<p>This post is just for archiving it, if you find it useful I&#8217;m glad!</p>
<p>If you are dealing with CentOS 5 x86_64 (Free version of RHEL5), try to install libssh2 for your PHP development you might fail in doing so.</p>
<p>So here&#8217;s a quick tip how to install libssh2 on X86_64 systems(I think i386 works just fine)</p>
<p>Edit: /usr/share/pear/pearcmd.php</p>
<p>Set: @ini_set(&#8217;memory_limit&#8217;, &#8216;16M&#8217;);</p>
<p>And try again!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/01/19/libssh2-on-centos-x86-64-systems/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to reset MySQL root password in Ubuntu Linux</title>
		<link>http://www.jusupov.com/2008/01/18/how-to-reset-mysql-root-password-in-ubuntu-linux/</link>
		<comments>http://www.jusupov.com/2008/01/18/how-to-reset-mysql-root-password-in-ubuntu-linux/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 01:58:52 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/01/18/how-to-reset-mysql-root-password-in-ubuntu-linux/</guid>
		<description><![CDATA[In case you have forgotten your root password on your Ubuntu Linux, here&#8217;s a small tip on how to reset it.
$ sudo mysqld &#8211;skip-grant-tables &#38;
$ mysql -u root mysql
$  mysql&#62; UPDATE user SET Password=PASSWORD(&#8217;MyNewPasswordHere&#8217;) WHERE User=&#8217;root&#8217;;
$ mysql&#62; FLUSH PRIVILEGES;
$ mysql&#62; \q
$ sudo /etc/init.d/mysql restart
Now you can login using your new root password.
]]></description>
			<content:encoded><![CDATA[<p>In case you have forgotten your root password on your Ubuntu Linux, here&#8217;s a small tip on how to reset it.</p>
<blockquote><p>$ sudo mysqld &#8211;skip-grant-tables &amp;</p>
<p>$ mysql -u root mysql</p>
<p>$  mysql&gt; UPDATE user SET Password=PASSWORD(&#8217;MyNewPasswordHere&#8217;) WHERE User=&#8217;root&#8217;;</p>
<p>$ mysql&gt; FLUSH PRIVILEGES;</p>
<p>$ mysql&gt; \q</p>
<p>$ sudo /etc/init.d/mysql restart</p></blockquote>
<p>Now you can login using your new root password.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/01/18/how-to-reset-mysql-root-password-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Arch Linux new logo released!</title>
		<link>http://www.jusupov.com/2008/01/08/arch-linux-new-logo-released/</link>
		<comments>http://www.jusupov.com/2008/01/08/arch-linux-new-logo-released/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 08:24:22 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/01/08/arch-linux-new-logo-released/</guid>
		<description><![CDATA[I switched to Arch Linux on my main laptop 3 months ago. I found Ubuntu installing too much of unnecessary common services(for others may be) and applications. On a Dell Latitude D820 with 2Gs of RAM installed I would expect much better performance.
Anyways, there was a logo competition going on at Arch Linux community and [...]]]></description>
			<content:encoded><![CDATA[<p>I switched to Arch Linux on my main laptop 3 months ago. I found Ubuntu installing too much of unnecessary common services(for others may be) and applications. On a Dell Latitude D820 with 2Gs of RAM installed I would expect much better performance.</p>
<p>Anyways, there was a logo competition going on at Arch Linux community and they announced the winner.  The winner is Thayer Williams. Here&#8217;s the logo scetch from him:</p>
<p><img src="http://www.jusupov.com/wp-content/uploads/2008/01/2008-01-08_161657.png" alt="Arch Linux Logo" /></p>
<p>You can check other designs at <a href="http://dev.archlinux.org/~travis/logo-contest/" target="_blank">http://dev.archlinux.org/~travis/logo-contest/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/01/08/arch-linux-new-logo-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Year 2007 for Linux and Open Source</title>
		<link>http://www.jusupov.com/2007/12/13/year-2007-for-linux-and-open-source/</link>
		<comments>http://www.jusupov.com/2007/12/13/year-2007-for-linux-and-open-source/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 03:23:49 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/12/13/year-2007-for-linux-and-open-source/</guid>
		<description><![CDATA[Let&#8217;s sum up and see what were the biggest Linux moves in the year 2007.

GPLv3
Asus Eee PC
OpenMoko
Ubuntu 7.04, Ubuntu 7.10 = lots of fork distros
GNOME 2.20
Pidgin 2.0
KDE 4.0(postponed to Jan 2008)
Xfce 4.4
Google Desktop
Fedora 7, Fedora 8, Red Hat Enterprise Linux 5
Mplayer 1.0 RC2
Adobe Flash Player 9
OpenOffice.org 2.3
Linux is preinstalled in Dell, Lenovo and HP PCs
Wallmart [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s sum up and see what were the biggest Linux moves in the year 2007.</p>
<ul>
<li>GPLv3</li>
<li>Asus Eee PC</li>
<li>OpenMoko</li>
<li>Ubuntu 7.04, Ubuntu 7.10 = lots of fork distros</li>
<li>GNOME 2.20</li>
<li>Pidgin 2.0</li>
<li>KDE 4.0(postponed to Jan 2008)</li>
<li>Xfce 4.4</li>
<li>Google Desktop</li>
<li>Fedora 7, Fedora 8, Red Hat Enterprise Linux 5</li>
<li>Mplayer 1.0 RC2</li>
<li>Adobe Flash Player 9</li>
<li>OpenOffice.org 2.3</li>
<li>Linux is preinstalled in Dell, Lenovo and HP PCs</li>
<li>Wallmart and gOs = Everex</li>
</ul>
<p>Did I miss anything?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/12/13/year-2007-for-linux-and-open-source/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thank you Canonical!</title>
		<link>http://www.jusupov.com/2007/11/13/thank-you-canonical/</link>
		<comments>http://www.jusupov.com/2007/11/13/thank-you-canonical/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 08:11:13 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/11/13/thank-you-canonical/</guid>
		<description><![CDATA[The new version of Ubuntu was released recently, code named Gutsy Gibbon. I haven&#8217;t downloaded the ISO image but have upgraded the previous Ubuntu version. It&#8217;s all good. Especially I liked the ability to install LAMP, Mail, DNS servers as a stack. I hope it will make Ubuntu easier to install and easier to get [...]]]></description>
			<content:encoded><![CDATA[<p>The new version of Ubuntu was released recently, code named Gutsy Gibbon. I haven&#8217;t downloaded the ISO image but have upgraded the previous Ubuntu version. It&#8217;s all good. Especially I liked the ability to install LAMP, Mail, DNS servers as a stack. I hope it will make Ubuntu easier to install and easier to get adopted.</p>
<p><a href="http://www.jusupov.com/wp-content/uploads/2007/11/dsc00155.jpg" title="Ubuntu 7.10 CDs"><img src="http://www.jusupov.com/wp-content/uploads/2007/11/dsc00155.thumbnail.jpg" alt="Ubuntu 7.10 CDs" /></a> | <a href="http://www.jusupov.com/wp-content/uploads/2007/11/dsc00156.jpg" title="Ubuntu 7.10 CDs"><img src="http://www.jusupov.com/wp-content/uploads/2007/11/dsc00156.thumbnail.jpg" alt="Ubuntu 7.10 CDs" /></a></p>
<p>Anyways, I have requested some 7.10 i386 and 7.10 64bit versions from the Shipit, and now I have them in my hands! For which I thank Canonical and the Ubuntu team!</p>
<p>Great job folks!</p>
<p>P.S.</p>
<p>For those who are interested you can <a href="http://www.ubuntu.com/getubuntu" target="_blank">download Ubuntu here</a> and you can request <a href="https://shipit.ubuntu.com/" target="_blank">free CDs here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/11/13/thank-you-canonical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Scalix on OpenSUSE 10.2</title>
		<link>http://www.jusupov.com/2007/09/19/how-to-install-scalix-on-opensuse-102/</link>
		<comments>http://www.jusupov.com/2007/09/19/how-to-install-scalix-on-opensuse-102/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 07:05:20 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/09/19/how-to-install-scalix-on-opensuse-102/</guid>
		<description><![CDATA[OpenSUSE 10.2 is not supported officially by Scalix, however here&#8217;s how you can skip that part and continue your installation:
  ./scalix-installer &#8211;override-release=suse101 
If you opt for having your server relay through your ISP SMTP servers the official HOW TO is not that helpful. So I thought I will blog about it for my future [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.opensuse.org" target="_blank">OpenSUSE 10.2</a> is not supported officially by <a href="http://www.jusupov.com/2007/03/31/scalix-enterprise-collaboration-platform/" target="_blank">Scalix</a>, however here&#8217;s how you can skip that part and continue your installation:</p>
<blockquote><p> <span class="postbody"> ./scalix-installer &#8211;override-release=suse101 </span></p></blockquote>
<p>If you opt for having your server relay through your ISP SMTP servers the <a href="http://www.scalix.com/wiki/index.php?title=HowTos/MTA_Integration" target="_blank">official HOW TO</a> is not that helpful. So I thought I will blog about it for my future reference and who knows may be somebody will benefit from it too!</p>
<blockquote><p>vim  /etc/mail/access</p></blockquote>
<p>add the following line:</p>
<blockquote><p>AuthInfo:your.smtpserver.net  &#8220;U:you@your.smtpserver.net&#8221; &#8220;P:your_password&#8221; &#8220;M:DIGEST-MD5 PLAIN LOGIN&#8221;</p></blockquote>
<p>Then edit this file:</p>
<blockquote><p>vim  /etc/mail/linux.mc</p></blockquote>
<p>add following line:</p>
<blockquote><p>define(`SMART_HOST&#8217;,`your.smtpserver.net&#8217;)dnl</p></blockquote>
<p>then run</p>
<blockquote><p>m4 /etc/mail/linux.mc &gt; /etc/sendmail.cf</p></blockquote>
<p>and restart your sendmail</p>
<blockquote><p>/etc/init.d/sendmail restart</p></blockquote>
<p>That&#8217;s it! Enjoy relaying!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/09/19/how-to-install-scalix-on-opensuse-102/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo! to acquire Zimbra</title>
		<link>http://www.jusupov.com/2007/09/18/yahoo-to-acquire-zimbra/</link>
		<comments>http://www.jusupov.com/2007/09/18/yahoo-to-acquire-zimbra/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 06:52:36 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/09/18/yahoo-to-acquire-zimbra/</guid>
		<description><![CDATA[I&#8217;ve blogged about Zimbra here and here. When I was thinking of migration our Exchange Server it was one of the options, but I didn&#8217;t go for it because it had way too many features. Many of them we just wouldn&#8217;t use it at all, at least in my previous company.
Ok, so Yahoo! bought Zimbra [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve blogged about Zimbra <a href="http://www.jusupov.com/2007/05/07/comcast-picks-zimbra-for-online-e-mail/" target="_blank">here</a> and <a href="http://www.jusupov.com/2007/05/04/another-strategic-move-for-ubuntu-linux/" target="_blank">here</a>. When I was thinking of migration our Exchange Server it was one of the options, but I didn&#8217;t go for it because it had way too many features. Many of them we just wouldn&#8217;t use it at all, at least in my previous company.</p>
<p>Ok, so Yahoo! bought Zimbra E-Mail Collaboration Suite for approximately $350 million! You can find more information <a href="http://www.zimbra.com/about/zimbra_pr_2007-09-17.html" target="_blank">here</a>, <a href="http://www.zimbra.com/blog/archives/2007/09/yahoo_acquires_zimbra.html" target="_blank">here</a> and <a href="http://www.zimbra.com/about/yahoo_acquires_zimbra_qa.html" target="_blank">here</a>.</p>
<p>I guess, the giants like Yahoo! and Google just buying  any good software that&#8217;s in the market. The question is, which company will acquire which company? Yahoo! or Google?</p>
<p>Anyways, congrats to  <a href="http://www.zimbra.com/about/management_team.html" target="_blank">Satish Dharmaraj</a>, CEO of Zimbra, he is now officially multi-millionaire(if he wasn&#8217;t before)!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/09/18/yahoo-to-acquire-zimbra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another hardware vendor opting for Linux</title>
		<link>http://www.jusupov.com/2007/08/31/another-hardware-vendor-opting-for-linux/</link>
		<comments>http://www.jusupov.com/2007/08/31/another-hardware-vendor-opting-for-linux/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 17:35:05 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/08/31/another-hardware-vendor-opting-for-linux/</guid>
		<description><![CDATA[Hewlett-Packard and Redhat comes together to launch Desktop PC with Redhat Linux OS. Action takes place in Australia, HP&#8217;s dx2250 model PC was chosen as a hardware with AMD Athlon 64 X2 / Athlon 64/ Sempron CPUs. The price is around AUD$600 which is ~USD$490, since I live and work in Malaysia that&#8217;s ~RM 1,600! [...]]]></description>
			<content:encoded><![CDATA[<p>Hewlett-Packard and Redhat comes together to launch Desktop PC with Redhat Linux OS. Action takes place in Australia, HP&#8217;s dx2250 model PC was chosen as a hardware with AMD Athlon 64 X2 / Athlon 64/ Sempron CPUs. The price is around AUD$600 which is ~USD$490, since I live and work in Malaysia that&#8217;s ~RM 1,600! However, I&#8217;m not sure if it includes the monitor or not.</p>
<p>I couldn&#8217;t find much information regarding this but this is a great news. Not only Dell is shipping Linux preloaded but HP also has stepped in. Not long ago Lenovo also confirmed shipment of Thinkpads loaded with Suse Linux Enterprise Desktops.</p>
<p><strong>My two cents:</strong> I am really happy to say vendors adopting choices and going for Linux. I think Linux has proven itself on the server side and now time for the desktops!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/08/31/another-hardware-vendor-opting-for-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy 16th Birthday Linux Kernel!</title>
		<link>http://www.jusupov.com/2007/08/27/happy-16th-birthday-linux-kernel/</link>
		<comments>http://www.jusupov.com/2007/08/27/happy-16th-birthday-linux-kernel/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 16:26:54 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/08/27/happy-16th-birthday-linux-kernel/</guid>
		<description><![CDATA[Linus Torvalds 16 year ago, 25th August 1991, emailed developers around the world announcing his new operating system(OS). At that time he never realized that it&#8217;s going to be a history. Who would know that Linux will eventually become so popular that most of the top companies are considering it very seriously and it&#8217;s now [...]]]></description>
			<content:encoded><![CDATA[<p>Linus Torvalds 16 year ago, 25th August 1991, emailed developers around the world announcing his new operating system(OS). At that time he never realized that it&#8217;s going to be a history. Who would know that Linux will eventually become so popular that most of the top companies are considering it very seriously and it&#8217;s now enterprise level operating system. A system to which they can rely their mission critical business operations.</p>
<p>Anyways, here I quote his email:<br />
<quote><br />
</quote></p>
<blockquote><p><quote><em> Hello everybody out there using minix -</em></quote><br />
<quote><em> I&#8217;m doing a (free) operating system (just a hobby, won&#8217;t be big and</em></quote><br />
<quote><em> professional like gnu) for 386(486) AT clones.  This has been brewing</em></quote><br />
<quote><em> since april, and is starting to get ready.  I&#8217;d like any feedback on</em></quote><br />
<quote><em> things people like/dislike in minix, as my OS resembles it somewhat</em></quote><br />
<quote><em> (same physical layout of the file-system (due to practical reasons)</em></quote><br />
<quote><em> among other things).</em></quote><br />
<quote><em> I&#8217;ve currently ported bash(1.08) and gcc(1.40), and things seem to work.</em></quote><br />
<quote><em> This implies that I&#8217;ll get something practical within a few months, and</em></quote><br />
<quote><em> I&#8217;d like to know what features most people would want.  Any suggestions</em></quote><br />
<quote><em> are welcome, but I won&#8217;t promise I&#8217;ll implement them <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </em></quote><br />
<quote><em> Linus (torva<a href="http://groups.google.ru/groups/unlock?msg=b813d52cbc5a044b&amp;hl=ru&amp;_done=/group/comp.os.minix/msg/b813d52cbc5a044b%3Fhl%3Dru%26" target="_parent">&#8230;</a>@kruuna.helsinki.fi)</em></quote><br />
<quote><em> PS.  Yes &#8211; it&#8217;s free of any minix code, and it has a multi-threaded fs.</em></quote><br />
<quote><em> It is NOT protable (uses 386 task switching etc), and it probably never</em></quote><br />
<quote><em> will support anything other than AT-harddisks, as that&#8217;s all I have <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> .</em></quote><br />
<quote> </quote></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/08/27/happy-16th-birthday-linux-kernel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Things around Gentoo</title>
		<link>http://www.jusupov.com/2007/08/14/things-around-gentoo/</link>
		<comments>http://www.jusupov.com/2007/08/14/things-around-gentoo/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 10:55:19 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/08/14/things-around-gentoo/</guid>
		<description><![CDATA[Are you a Gentoo user? Do you follow up with Daniel&#8217;s blog? Personally sometimes I&#8217;m scared to see Gentoo degenerate. But following Daniel&#8217;s article and the comments I feel that there is still hope for Gentoo&#8217;s rise.
I liked wamukota&#8217;s comment. I&#8217;m quoting it here:
I am not at all interested in the political stuff at a [...]]]></description>
			<content:encoded><![CDATA[<p>Are you a Gentoo user? Do you follow up with <a href="http://blog.funtoo.org/" title="Daniel Robbins" target="_blank">Daniel&#8217;s blog</a>? Personally sometimes I&#8217;m scared to see Gentoo degenerate. But following Daniel&#8217;s <a href="http://blog.funtoo.org/2007/08/resolving-sabayon-and-gentoo-peformance.html" target="_blank">article</a> and the <a href="https://www.blogger.com/comment.g?blogID=32090778&amp;postID=8954214334683328362" target="_blank">comments</a> I feel that there is still hope for Gentoo&#8217;s rise.</p>
<p>I liked <a href="http://www.blogger.com/profile/03047211399410044843">wamukota&#8217;s</a> comment. I&#8217;m quoting it here:</p>
<p><em><quote>I am not at all interested in the political stuff at a higher level, nor the legal status of the project. But I acknowledge the point that such issues must be solved, and quickly, if the momentum of the project is to be maintained. But don&#8217;t play it out in the open.</quote></em></p>
<p><em>So, do whatever you feel best for you Daniel but do not forget that Gentoo has been the starting point of many a GNU/Linux user and that newbies will still be trying to learn GNU/Linux through Gentoo because there is no decent alternative for us.</em></p>
<p>I think Daniel still wants to get hands on the project but can&#8217;t really do that now. May be if he is elected by users and sponsored to do his work in the project he might stay there for us?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/08/14/things-around-gentoo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A laptop for $150 running Linux</title>
		<link>http://www.jusupov.com/2007/07/27/a-laptop-for-150-running-linux/</link>
		<comments>http://www.jusupov.com/2007/07/27/a-laptop-for-150-running-linux/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 00:25:53 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Laptops]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/07/27/a-laptop-for-150-running-linux/</guid>
		<description><![CDATA[I recently found out that there&#8217;s a laptop for only USD$150! The more interesting part is it&#8217;s running Fedora Linux. The specs of the laptop as follows:
Intel® Celeron 1.5 GHz CPU
14&#8243; Widescreen X-bright LCD
256 MB Ram memory
40 GB Hard Drive
802.11g Wireless LAN
Optimized Linux operating system
Pre-installed office and multimedia applications
I think it&#8217;s difficult to find even [...]]]></description>
			<content:encoded><![CDATA[<p>I recently found out that there&#8217;s a laptop for only USD$150! The more interesting part is it&#8217;s running Fedora Linux. The specs of the laptop as follows:</p>
<p>Intel® Celeron 1.5 GHz CPU<br />
14&#8243; Widescreen X-bright LCD<br />
256 MB Ram memory<br />
40 GB Hard Drive<br />
802.11g Wireless LAN<br />
Optimized Linux operating system<br />
Pre-installed office and multimedia applications</p>
<p>I think it&#8217;s difficult to find even second hand laptops for this cheap here in Lowyat, KL. They ship internationally, so I&#8217;m gonna see if I can get one of those. <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Will be an extra machine to be entertained with!</p>
<p>Here&#8217;s the link <a href="http://www.medisoncelebrity.com/product.html" title="$150 Laptop" target="_blank">Medison Celebrity Laptop</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/07/27/a-laptop-for-150-running-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
