<?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; Open Source</title>
	<atom:link href="http://www.jusupov.com/category/open-source/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>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 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>Sun to acquire MySQL</title>
		<link>http://www.jusupov.com/2008/01/17/sun-to-acquire-mysql/</link>
		<comments>http://www.jusupov.com/2008/01/17/sun-to-acquire-mysql/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 02:21:14 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/01/17/sun-to-acquire-mysql/</guid>
		<description><![CDATA[Jonathan Schwartz reports they are to acquire MySQL.
I am excited to see yet another good deal on Open Source projects, the fact that free software can do a good business.
Hopefully, they, Sun, will remain true to the Open Source spirit.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.sun.com/jonathan/entry/winds_of_change_are_blowing">Jonathan Schwartz reports they are to acquire MySQL.</a></p>
<p>I am excited to see yet another good deal on Open Source projects, the fact that free software can do a good business.</p>
<p>Hopefully, they, Sun, will remain true to the Open Source spirit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/01/17/sun-to-acquire-mysql/feed/</wfw:commentRss>
		<slash:comments>0</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>My Firefox Extensions</title>
		<link>http://www.jusupov.com/2007/11/21/my-firefox-extensions/</link>
		<comments>http://www.jusupov.com/2007/11/21/my-firefox-extensions/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 07:15:15 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/11/21/my-firefox-extensions/</guid>
		<description><![CDATA[Do you use Mozilla Firefox? Or its variants?
Here&#8217;s my firefox plugins, they help me a lot and save lots of time. What are your plugins? Please leave in the comments.

]]></description>
			<content:encoded><![CDATA[<p>Do you use Mozilla Firefox? Or its variants?</p>
<p>Here&#8217;s my firefox plugins, they help me a lot and save lots of time. What are your plugins? Please leave in the comments.</p>
<p><a href="http://www.jusupov.com/wp-content/uploads/2007/11/firefox_extensions.png" title="firefox_extensions_th.png"><img src="http://www.jusupov.com/wp-content/uploads/2007/11/firefox_extensions_th.png" alt="firefox_extensions_th.png" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/11/21/my-firefox-extensions/feed/</wfw:commentRss>
		<slash:comments>4</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>New Instant Messenger from Mozilla</title>
		<link>http://www.jusupov.com/2007/10/23/new-instant-messenger-from-mozilla/</link>
		<comments>http://www.jusupov.com/2007/10/23/new-instant-messenger-from-mozilla/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 12:35:23 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/10/23/new-instant-messenger-from-mozilla/</guid>
		<description><![CDATA[Instantbird is a new project launched by Mozilla Foundation, a foundation behind popular web browser Firefox and E-Mail client Thunderbird.
Instantbird will be based on Mozilla technologies and use Pidgin&#8217;s libpurple to deliver you a brand new messenger.
Just like Pidgin(prev. Gaim) Instantbird will support:

AIM
Gadu-Gadu
Google Talk
ICQ
MSN
QQ
XMPP
Yahoo!

I&#8217;ve tried Instantbird v.01 myself and I think it&#8217;s very light, default [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.instantbird.com/" target="_blank">Instantbird</a> is a new project launched by <a href="http://www.mozilla.com" target="_blank">Mozilla Foundation</a>, a foundation behind popular web browser <a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox </a>and E-Mail client <a href="http://www.mozilla.com/en-US/thunderbird/" target="_blank">Thunderbird</a>.</p>
<p>Instantbird will be based on Mozilla technologies and use <a href="http://www.pidgin.im/" target="_blank">Pidgin&#8217;s</a> libpurple to deliver you a brand new messenger.</p>
<p>Just like Pidgin(prev. Gaim) Instantbird will support:</p>
<ul>
<li>AIM</li>
<li>Gadu-Gadu</li>
<li>Google Talk</li>
<li>ICQ</li>
<li>MSN</li>
<li>QQ</li>
<li>XMPP</li>
<li>Yahoo!</li>
</ul>
<p>I&#8217;ve tried Instantbird v.01 myself and I think it&#8217;s very light, default installation lets you do text messaging only. But there are plugins and add-ons of course.</p>
<p>Good luck to Mozilla, with the experience of creating state of the art browser and E-Mail client I really hope they will launch a very good messenger!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/10/23/new-instant-messenger-from-mozilla/feed/</wfw:commentRss>
		<slash:comments>2</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>Next generation file system for Mac OS from Sun</title>
		<link>http://www.jusupov.com/2007/07/19/next-generation-file-system-for-mac-os-from-sun/</link>
		<comments>http://www.jusupov.com/2007/07/19/next-generation-file-system-for-mac-os-from-sun/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 02:45:42 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/07/19/next-generation-file-system-for-mac-os-from-sun/</guid>
		<description><![CDATA[Jonathan Schwartz recently revealed that his company, Sun, was working on a new file system &#8211; ZFS. They made it open source and he said that ZFS will be integrated into Mac OS.
Not only it is made for Mac OS but it&#8217;s available for Linux, BSDs, Solaris.
Here&#8217;s the extract from their website:
 &#8220;We&#8217;ve rethought everything [...]]]></description>
			<content:encoded><![CDATA[<p>Jonathan Schwartz recently revealed that his company, Sun, was working on a new file system &#8211; <a href="http://www.opensolaris.org/os/community/zfs/" title="ZFS" target="_blank">ZFS</a>. They made it open source and he said that ZFS will be integrated into Mac OS.<img src="http://www.jusupov.com/wp-content/uploads/2007/07/2007-07-18_224045.png" alt="Jonathan Schwartz" align="left" /></p>
<p>Not only it is made for Mac OS but it&#8217;s available for Linux, BSDs, Solaris.</p>
<p>Here&#8217;s the extract from their website:</p>
<p><em> &#8220;We&#8217;ve rethought everything and rearchitected it,&#8221; says Jeff Bonwick, Sun distinguished engineer and chief architect of ZFS. &#8220;We&#8217;ve thrown away 20 years of old technology that was based on assumptions no longer true today.&#8221; </em></p>
<p><em> ZFS is supported on both SPARC and x86 platforms. More important, ZFS is endian-neutral. You can easily move disks from a SPARC server to an x86 server. Neither architecture pays a byte-swapping tax due to Sun&#8217;s patent-pending &#8220;adaptive endian-ness&#8221; technology, which is unique to ZFS. And you don&#8217;t have to worry about migration. Sun continues to support the UFS file system.</em></p>
<p>Sun introduced new server Sun Fire X4500,Project Thumper which will be making use of ZFS for their data storage needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/07/19/next-generation-file-system-for-mac-os-from-sun/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Asia Pacific 7 in 7 Virtualization Tour</title>
		<link>http://www.jusupov.com/2007/06/29/asia-pacific-7-in-7-virtualization-tour/</link>
		<comments>http://www.jusupov.com/2007/06/29/asia-pacific-7-in-7-virtualization-tour/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 05:57:00 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/06/29/asia-pacific-7-in-7-virtualization-tour/</guid>
		<description><![CDATA[I will be attending Novell&#8217;s Virtualization Tour in Berjaya Times Square Hotel &#38; Convention Center, Kuala Lumpur.
I have been in Novell&#8217;s SLES10 launching in Malaysia and I was impressed a lot.
Virtualization is a proven technology that pools and shares resources to reduce costs and optimize utilization, even under changing demands. Forward-looking enterprises are choosing server [...]]]></description>
			<content:encoded><![CDATA[<p>I will be attending <a href="http://www.novell.com/linux/virtualization/7in7/" target="_blank">Novell&#8217;s Virtualization Tour</a> in Berjaya Times Square Hotel &amp; Convention Center, Kuala Lumpur.</p>
<p>I have been in Novell&#8217;s SLES10 launching in Malaysia and I was impressed a lot.</p>
<p>Virtualization is a proven technology that pools and shares resources to reduce costs and optimize utilization, even under changing demands. Forward-looking enterprises are choosing server virtualization as a way to maximize hardware utilization, eliminate server sprawl and dynamically respond to rapidly changing resource and application needs.</p>
<p><img src="http://www.jusupov.com/wp-content/uploads/2007/06/novell_virtualization.png" alt="Novell Virtualization" align="right" height="247" width="238" />Join us for this free seminar and learn how powerful virtualization technology on low-cost Linux servers can help you:</p>
<ul>
<li>Freely migrate virtual machines</li>
<li>Reduce purchase, provisioning and maintenance costs</li>
<li>Increase server utilization</li>
<li>Rapidly deploy and test solutions</li>
<li>Fully utilize computing resources</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/06/29/asia-pacific-7-in-7-virtualization-tour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Office Infrastructure Setup</title>
		<link>http://www.jusupov.com/2007/06/29/quick-office-infrastructure-setup/</link>
		<comments>http://www.jusupov.com/2007/06/29/quick-office-infrastructure-setup/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 02:50:50 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/06/29/quick-office-infrastructure-setup/</guid>
		<description><![CDATA[If you don&#8217;t have time or don&#8217;t have much expertise to setup your office infrastructure eBox is exactly what you need. It&#8217;s based on rock solid Debian. Featuring most common softwares you need to run your office, it comes in one single 440MB CD. If it doesn&#8217;t meet your software requirements, you can easily develop [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t have time or don&#8217;t have much expertise to setup your office infrastructure <a href="http://www.ebox-platform.com/" title="eBox Platform" target="_blank">eBox</a> is exactly what you need. It&#8217;s based on rock solid Debian. Featuring most common softwares you need to run your office, it comes in one single 440MB CD. If it doesn&#8217;t meet your software requirements, you can easily develop your own module or even better sponsor one module! It will definitely be cheaper and you will be supporting Open Source!</p>
<p>Recently Matt Willsher developed a subversion module for eBox. Here&#8217;s what he says about eBox:</p>
<p><em> I was looking to set up a server at home and had evaluated various platforms for the task. Having built a box from the ground up for the job, I got tired of the amount of work required to add new services and servers, especially as the machine grew in complexity &#8211; LDAP, Kerberos, Netatalk, Samba. Adding new things got trickier. So I tried eBox and was very impressed with the ethos of the project &#8211; the ease of use, it being open source, uniformity of data use and broad range of well though out features. Plus I’ve never configured Samba so quickly!</em></p>
<p><em>One thing was missing for me though &#8211; Netatalk integration. I’ve been wanting to get back into coding for a while as I’ve not done any in some time. The OO nature of the framework was ideal and Perl is a language I used some time ago, so I thought I’d give it a go. </em></p>
<p>I think a basic office infrastructure must consist of:</p>
<ol>
<li>Firewall</li>
<li>DHCP</li>
<li>E-Mail</li>
<li>Proxy</li>
</ol>
<p>eBox covers all of that and also it features:</p>
<ol>
<li>IP Management</li>
<li> Network Management</li>
<li>Proxy/Content Filter</li>
<li>LDAP</li>
<li>Windows PDC</li>
<li>File/Print Server</li>
<li>Jabber Server</li>
<li>DNS Cache</li>
<li>Date &amp; Time Server</li>
<li>Virtual LANs</li>
</ol>
<p>Setup is easy and quick, after installing you can manage it through a user friendly web interface.</p>
<p>It&#8217;s in very early days but I strongly believe that it will be very successful project. May be it&#8217;s also good chance to start a new business just like <a href="http://www.endian.it" title="Endian Firewall" target="_blank">Endian </a>did with <a href="http://www.ipcop.org" title="IPCop" target="_blank">IPCop</a> and some other softwares bundling together.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/06/29/quick-office-infrastructure-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where to download OpenSolaris?</title>
		<link>http://www.jusupov.com/2007/06/12/where-to-download-opensolaris/</link>
		<comments>http://www.jusupov.com/2007/06/12/where-to-download-opensolaris/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 04:56:02 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/06/12/where-to-download-opensolaris/</guid>
		<description><![CDATA[I don&#8217;t how about you but I have tried downloading OpenSolaris and I always failed in doing so. The reason is not the sucky streamyx we have in town, mostly it is because it so damn confusing just to get an installation media from them. Recently Ian Murdock, the founder of Debian, blogged about this [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t how about you but I have tried downloading OpenSolaris and I always failed in doing so. The reason is not the <a href="http://www.google.com/search?q=lousy+streamyx&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" target="_blank">sucky streamyx</a> we have in town, mostly it is because it so damn confusing just to get an installation media from them. Recently <a href="http://ianmurdock.com/about" title="Ian Murdock" target="_blank">Ian Murdock</a>, the founder of Debian, <a href="http://ianmurdock.com/2007/06/08/where-do-i-download-opensolaris/" title="Where do I download OpenSolaris?" target="_blank">blogged about this</a> on his blog.</p>
<p>I hope now that Ian joined Sun, OpenSolaris will become more Linux-like and people can just download one iso image burn it and boot up from the CD. This will help to popularize OpenSolaris, and of course Solaris.</p>
<p>However, there are a few derivatives from OpenSolaris, that are available to download via iso images.</p>
<ul>
<li>NexentaOS</li>
<li>SchilliX ( SchilliX and OpenSolaris <a href="http://www.zdnet.com.au/news/software/soa/Tension-mounts-between-OpenSolaris-derivatives/0,130061733,139199260,00.htm" title="Tension between SchilliX and OpenSolaris developers" target="_blank">tensions</a> )</li>
<li>Belenix</li>
</ul>
<p>If you know any other, please leave in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/06/12/where-to-download-opensolaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to embedd Linux Applications</title>
		<link>http://www.jusupov.com/2007/05/29/how-to-embedd-linux-applications/</link>
		<comments>http://www.jusupov.com/2007/05/29/how-to-embedd-linux-applications/#comments</comments>
		<pubDate>Tue, 29 May 2007 15:30:17 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/05/29/how-to-embedd-linux-applications/</guid>
		<description><![CDATA[Are you a software vendor looking for embedded linux appliances for your softwares? Or just another geek to see how embedded linux operates? Well, here&#8217;s your chance to try it out!
 FOX Board, a complete Linux system in just 66 x 72 mm
FOX Board runs a real Linux operating system (not a uC Linux) on [...]]]></description>
			<content:encoded><![CDATA[<p>Are you a software vendor looking for embedded linux appliances for your softwares? Or just another geek to see how embedded linux operates? Well, here&#8217;s your chance to try it out!</p>
<p><strong> FOX Board, a complete Linux system in just 66 x 72 mm</strong></p>
<p>FOX Board runs a real Linux operating system (not a uC Linux) on an ETRAX 100LX microprocessor, a 100MIPS RISC CPU made by <a href="http://developer.axis.com/" title="Axis" target="_blank">Axis</a>.</p>
<p>FOX Board has two main field applications:</p>
<ul>
<li>As a stand alone device to build a micro web server or other network devices as proxy, router, firewall, etc.</li>
<li>As a core engine to plug onto the PCB of a user application board instead of a simple microcontroller.</li>
</ul>
<p>Two USB 1.1 host interfaces can be connected to USB memory stick, hard disk, webcam, modem, Wi-Fi or Bluetooth dongle, ADSL adapter, Serial converter, etc.</p>
<p>Through the 10/100 ethernet interface it is possible to have access to the internal Web server, FTP server, SSH, Telnetd and the complete TCP/IP stack.
<p>
<img src="http://www.jusupov.com/wp-content/uploads/2007/05/embedded_linux.jpg" alt="Embedded Linux" />
</p>
<p><strong>Hardware Features</strong></p>
<p>Size:                 66 x 72 mm (2.6 x 2.8 inches)<br />
Weight    :        37 gr<br />
Cpu:                 Axis ETRAX 100LX 32 bit, RISC, 100MHz (100MIPS)<br />
Memory:         FOXLX816: 8MB FLASH 16MB RAM FOXLX832: 8MB FLASH 32MB RAM<br />
Power:             Single power supply 5 Volt 280mA (1 watt)<br />
Ports:               1 Ethernet (10/100 Mb/s), 2 USB 1.1, 1 serial console port<br />
Extension:       2 extension sockets with IDE, SCSI, serial lines, parallel ports, I/O lines, I2C bus interface<br />
Temperature range:    0-70 Â°C</p>
<p><a href="http://www.kdev.it/" title="KDEV" target="_blank">KDEV</a> developed <a href="http://www.acmesystems.it/?id=70" title="SMS FoxBox" target="_blank">SMS FoxBox</a> &#8211; SMS Gateway Solution with this board and Linux embedded inside.</p>
<p>Acme Systems provides various kinds of APIs and documentations on how to do things with the boards, which I find very useful indeed. This item is already in my must have list!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/05/29/how-to-embedd-linux-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Which browser is more safe?</title>
		<link>http://www.jusupov.com/2007/05/29/which-browser-is-more-safe/</link>
		<comments>http://www.jusupov.com/2007/05/29/which-browser-is-more-safe/#comments</comments>
		<pubDate>Tue, 29 May 2007 07:51:46 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/05/29/which-browser-is-more-safe/</guid>
		<description><![CDATA[The internet has become more then just a correspondence tool, we use internet for various purposes, some people live and die for internet.  Now how do you live and die is the question that matters, isn&#8217;t it? Here&#8217;s a quick survey taken in the streets from random people. Thanks to http://rangit.com!

]]></description>
			<content:encoded><![CDATA[<p>The internet has become more then just a correspondence tool, we use internet for various purposes, some people live and die for internet.  Now how do you live and die is the question that matters, isn&#8217;t it? Here&#8217;s a quick survey taken in the streets from random people. Thanks to <a href="http://rangit.com" target="_blank">http://rangit.com</a>!<br />
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/7oIot3Qxu_U"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/7oIot3Qxu_U" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/05/29/which-browser-is-more-safe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shop for Dell PCs featuring Ubuntu Linux</title>
		<link>http://www.jusupov.com/2007/05/25/shop-for-dell-pcs-featuring-ubuntu-linux/</link>
		<comments>http://www.jusupov.com/2007/05/25/shop-for-dell-pcs-featuring-ubuntu-linux/#comments</comments>
		<pubDate>Fri, 25 May 2007 04:07:28 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Desktops]]></category>
		<category><![CDATA[Laptops]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/05/25/shop-for-dell-pcs-featuring-ubuntu-linux/</guid>
		<description><![CDATA[Last month Dell announced their partnership with Ubuntu, now finally the first batch of PCs featuring preloaded Ubuntu Linux is being sold at Dell&#8217;s Open site.  So, let&#8217;s look at what they are offering?  Currently they have 2 desktop PCs and 1 laptop. Desktop configurations as follows:
Dimension E520 N &#8211; $599
Intel® Core™2 Duo [...]]]></description>
			<content:encoded><![CDATA[<p>Last month <a href="http://www.jusupov.com/2007/05/02/dell-canonical-partnership/" target="_blank">Dell announced</a> their partnership with Ubuntu, now finally the first batch of PCs featuring preloaded Ubuntu Linux is being sold at <a href="http://www.dell.com/content/topics/segtopic.aspx/linux_3x?c=us&amp;cs=19&amp;l=en&amp;s=dhs" target="_blank">Dell&#8217;s Open</a> site.  So, let&#8217;s look at what they are offering?  Currently they have 2 desktop PCs and 1 laptop. Desktop configurations as follows:<br />
<strong>Dimension E520 N &#8211; $599</strong><br />
Intel® Core™2 Duo Processor E4300 (1.8GHz, 800 FSB)<br />
Ubuntu Desktop Edition version 7.04<br />
1GB Dual Channel DDR2 SDRAM at 667MHz- 2DIMMs<br />
250GB Serial ATA Hard Drive (7200RPM) w/DataBurst Cache™</p>
<p><strong>XPS 410 N &#8211; <span style="width: 728px"></span><span class="para_marketingprice_simple">$849</span></strong><br />
Intel® Core™ 2 Duo Processor E4300 (2MB L2 Cache,1.8GHz,800FSB)<br />
Ubuntu Desktop Edition version 7.04<br />
1GB Dual Channel DDR2 SDRAM at 667MHz &#8211; 2 DIMMs<br />
250GB Serial ATA 3Gb/s Hard Drive (7200RPM) w/DataBurst Cache™</p>
<p>and laptop configuration:</p>
<p><strong>Inspiron E1505 N &#8211; $599</strong><br />
Intel® Pentium® dual-core proc T2080(1MB Cache/1.73GHz/533MHz FSB<br />
Ubuntu Edition version 7.04<br />
512MB Shared Dual Channel DDR2 SDRAM at 533MHz, 2 DIMM<br />
80GB 5400rpm SATA Hard Drive</p>
<p>These prices are for the default configurations, if you opt you can go for additional upgrades.</p>
<p>I think for the home and office user the specs are quite reasonable. But for power users, developers and such these specs must be upgraded.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/05/25/shop-for-dell-pcs-featuring-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Darwin Streaming Server Official Release &#8211; DSS 5.5.5</title>
		<link>http://www.jusupov.com/2007/05/16/darwin-streaming-server-official-release-dss-555/</link>
		<comments>http://www.jusupov.com/2007/05/16/darwin-streaming-server-official-release-dss-555/#comments</comments>
		<pubDate>Tue, 15 May 2007 18:53:02 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/05/16/darwin-streaming-server-official-release-dss-555/</guid>
		<description><![CDATA[I always admired how Apple designed and made Open Source much easier for an ordinary user. It all started from Mac OS and to its server OS. This Streaming Server is one of the Apple Open Source version of their QuickTime Streaming Server. You can build it in Linux, Windows and of course Mac OS.
Open [...]]]></description>
			<content:encoded><![CDATA[<p>I always admired how <a href="http://www.apple.com" title="Apple" target="_blank">Apple</a> designed and made Open Source much easier for an ordinary user. It all started from <a href="http://www.apple.com/macosx" title="Mac OS X">Mac OS</a> and to its <a href="http://www.apple.com/server/macosx/" target="_blank">server OS</a>. This Streaming Server is one of the Apple Open Source version of their QuickTime Streaming Server. You can build it in Linux, Windows and of course Mac OS.</p>
<p>Open source version of 					Apple&#8217;s QuickTime Streaming Server technology that allows you to 					send streaming media to clients across the Internet using the 					industry standard RTP and RTSP protocols. Based on the same code 					base as QuickTime Streaming Server, Darwin Streaming Server provides 					a high level of customizability and runs on a variety of platforms 					allowing you to manipulate the code to fit your needs.<span id="more-126"></span></p>
<p><strong>Who should use Darwin Streaming Server?</strong></p>
<p>While sharing the same code base as QuickTime Streaming Server,  					Darwin Streaming Server is an open source project intended for 					developers who need to stream QuickTime and MPEG-4 media on 					alternative platforms such as Windows, Linux, and Solaris, 					or those developers who need to extend and/or modify the existing 					streaming server code to fit their needs. Darwin Streaming Server 					is only supported by the open source community and is not eligible 					for technical support from Apple.  Apple hosts a number of email 					discussion lists for Darwin Streaming Server users and developers 					to share ideas and discuss deployment scenarios.</p>
<p>QuickTime Streaming Server (QTSS) is Apple&#8217;s commercial streaming server 					delivered as part of Mac OS X Server. QTSS provides users with enhanced 					administration and media management tools as a result of the tight 					integration with Mac OS X Server; these tools are not available as 					part of the open source project. Technical support is available for 					QTSS as part of the AppleCare support plans provided for Mac OS X Server 					and Xserve.</p>
<p>Both DSS and QTSS are built on a core server that provides state of 					the art quality of service features with Skip protection and Instant-On, 					and support for the latest digital media standards, MPEG-4 and 3GPP.</p>
<p>Darwin Streaming Server is available as a free download under the 					<a href="http://www.opensource.apple.com/apsl/">Apple Public Source License</a>.</p>
<p>More information can be found on <a href="http://developer.apple.com/opensource/server/streaming/index.html" target="_blank">Apple website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/05/16/darwin-streaming-server-official-release-dss-555/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make branded affiliate links?</title>
		<link>http://www.jusupov.com/2007/05/16/how-to-make-branded-affiliate-links/</link>
		<comments>http://www.jusupov.com/2007/05/16/how-to-make-branded-affiliate-links/#comments</comments>
		<pubDate>Tue, 15 May 2007 17:53:11 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/05/16/how-to-make-branded-affiliate-links/</guid>
		<description><![CDATA[People like John Chow already knows this and use it. It is cool to have your own branded affiliate links, isn&#8217;t it? So if you are inviting people to sign up for Agloco, you will give http://www.agloco.com/r/BBBW4103 link but imaging you can set this link as http://www.jusupov.com/go/agloco !
It&#8217;s very difficult to memorize http://www.agloco.com/r/BBBW4103 link, and [...]]]></description>
			<content:encoded><![CDATA[<p>People like <a href="http://www.johnchow.com" target="_blank">John Chow</a> already knows this and use it. It is cool to have your own branded affiliate links, isn&#8217;t it? So if you are inviting people to sign up for Agloco, you will give <a href="http://www.agloco.com/r/BBBW4103" title="Sign up for Agloco!" target="_blank">http://www.agloco.com/r/BBBW4103</a> link but imaging you can set this link as <a href="http://www.jusupov.com/go/agloco" title="Sign up for Agloco!" target="_blank">http://www.jusupov.com/go/agloco</a> !</p>
<p>It&#8217;s very difficult to memorize <a href="http://www.agloco.com/r/BBBW4103" title="Sign up for Agloco!" target="_blank">http://www.agloco.com/r/BBBW4103</a> link, and it&#8217;s considerably easier to remember <a href="http://www.jusupov.com/go/agloco" title="Sign up for Agloco!" target="_blank">http://www.jusupov.com/go/agloco</a> link.</p>
<p><strong>So whow it is done?</strong> I will try to explain how this trick is done.  You can use some scripting like php/javascript to do this, however the shorter way of doing this is via <a href="http://httpd.apache.org/docs/1.3/howto/htaccess.html" title=".htaccess file" target="_blank">.htaccess</a> file. You can find your .htaccess file in your web root directory. You can download and open it in your favorite text editing software and add your links.<span id="more-124"></span></p>
<p>If you are using Wordpress and had turned on search engine friendly permanent links, here&#8217;s how a sample .htaccess file looks like:</p>
<pre>
# BEGIN WordPress

&lt;IfModule mod_rewrite.c&gt;

RewriteEngine On

RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

&lt;/IfModule&gt;

# END WordPress</pre>
<p>Remember to backup your existing .htaccess file before you try to make changes in it, also remember not to touch the code between <strong>#BEGIN Wordpress</strong> and <strong>#END Wordpress</strong> comments. So right after #END Wordpress line add following:</p>
<pre>
Redirect myblog.com/?id=874653874 http://www.myblog.com/go/youraffiliate</pre>
<p>So just follow this example and create your own customized affiliate and referal links! Put one affiliate/referal per line.</p>
<p>Check with your affiliate/referal company to see if it is allowed in the agreement. You can find my branded referal links at the very bottom of this page, footer that is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/05/16/how-to-make-branded-affiliate-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three different methods to move your MySQL database</title>
		<link>http://www.jusupov.com/2007/05/13/three-different-methods-to-move-your-mysql-database/</link>
		<comments>http://www.jusupov.com/2007/05/13/three-different-methods-to-move-your-mysql-database/#comments</comments>
		<pubDate>Mon, 14 May 2007 03:16:50 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/05/13/three-different-methods-to-move-your-mysql-database/</guid>
		<description><![CDATA[When blogging you will face different kinds of issues, be it change of your hosting company, duplicating your blog database on your local computer to do testing and development. So questions arise on how to copy/move your database? Copying or moving blog files are very easy, all you need is to connect to your FTP [...]]]></description>
			<content:encoded><![CDATA[<p>When blogging you will face different kinds of issues, be it change of your hosting company, duplicating your blog database on your local computer to do testing and development. So questions arise on how to copy/move your database? Copying or moving blog files are very easy, all you need is to connect to your FTP and download the whole public_html or htdocs or www folder and that&#8217;s it! But database can be a little bit confusing for you&#8230;<span id="more-119"></span></p>
<p>So here&#8217;s the three ways to copy/move your <a href="http://www.mysql.com" target="_blank">MySQL</a> databases:</p>
<ol>
<li><a href="http://phpmyadmin.net" target="_blank">PhpMyAdmin</a> &#8211; probably the easiest way. Most of the hosting companies offer PhpMyAdmin already pre-installed on their servers. You can find it somewhere in your control panel. You will need select the appropriate database and click on the Export tab. You can choose between SQL, LaTeX, PDF, Excel, Word, CSV, XML formats, choose if you want the structure only or the data within the database to export, choose your compression method. PhpMyAdmin will then provide you with SQL commands if you did not choose compression, or let you download the database in compressed format.</li>
<li>If you have SSH,telnet or can login directly to the server then you can use mysqldump feature. When doing this, it&#8217;s better if you lock the tables so that no changes will be done while you are doing export.mysqldump -u &#8220;your_username&#8221; -p &#8211;lock-tables &#8220;your_database&#8221; &gt; your_database_dump.sqlif you want to export multiple databases use:mysqldump -u &#8220;your_username&#8221; -p &#8211;lock-tables &#8211;databases DB1 [DB2 DB3...] &gt; your_database_dump.sql
<p>This option, mysqldump, works well with larger databases. So if you have been blogging for years now, this way could be a faster way of exporting your databases. But bear in mind that it&#8217;s slightly technical then the others.</li>
<li>The MySQL server stores database structure and data in regular files on disk. This means that if you can login on the server with privileges to access the folder where the databases are stored ( usually /var/lib/mysql ) then you can just copy or transfer then to another server using tools like ftp, scp, sftp, rsync. Before you use any of those tools you have to make sure no one is writing to the databases that you want to transfer so you should put a read lock on them. If you want to lock a table you will have to use the MySQL client to login to your MySQL server and then just type in :LOCK TABLE  table_name READ[, table_name2 READ, ...]or if you want to lock all tables on the server:FLUSH TABLES WITH READ LOCK
<p>leave the mysql client running and then copy or transfer transfer the files. After the transfer finished, exit the mysql client or type:</p>
<p>UNLOCK TABLES</p>
<p>to release the read lock.<br />
This method also works with large databases, and it is faster then the previous method in this case MySQL server does not have to parse and process queries or recreate indexes because the whole data including indexes is transferred from the old server.</li>
</ol>
<p>There are other Administration GUI tools also which you can use for export/import MySQL databases. These are:</p>
<ul>
<li><a href="http://dev.mysql.com/downloads/gui-tools/5.0.html" target="_blank">MySQL GUI Tools</a></li>
<li><span class="normaltext"></span><a href="http://www.webyog.com/downloads/SQLyog530.exe" target="_blank">SQLyog Community Edition 5.30 (Stable)</a></li>
<li><a href="http://www.heidisql.com" target="_blank">HeidiSql</a></li>
</ul>
<p>This article was partially copied from PatchLog&#8217;s <a href="http://patchlog.com/databases/three-methods-to-transfer-a-mysql-database/" rel="nofollow">methods to move a MySQL database</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/05/13/three-different-methods-to-move-your-mysql-database/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
