<?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>Bo Wu&#039;s IT Lab &#187; Open Source</title>
	<atom:link href="http://www.bowu.org/category/open-source/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bowu.org</link>
	<description>If winter comes, can spring be far behind?</description>
	<lastBuildDate>Thu, 29 Dec 2011 18:09:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>How to Recover Openfire admin Password</title>
		<link>http://www.bowu.org/open-source/how-to-recover-openfire-admin-password.html</link>
		<comments>http://www.bowu.org/open-source/how-to-recover-openfire-admin-password.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 20:05:32 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=203</guid>
		<description><![CDATA[Openfire is a cross-platform java based free Instant Messaging server which implements the XAMPP (Jabber) protocol with extensions. It is very well suited as corporate instant messaging solution. After I installed the Openfire, I could not login using the admin&#8217;s password while I am 100% sure that my password was correct. I believe it is [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-245" title="openfire" src="http://www.bowu.org/wp-content/uploads/2010/03/openfire.png" alt="openfire How to Recover Openfire admin Password" width="250" height="250" /></p>
<p>Openfire is a cross-platform java based free Instant Messaging server which implements the XAMPP (Jabber) protocol with extensions. It is very well suited as corporate instant messaging solution.</p>
<p>After I installed the Openfire, I could not login using the admin&#8217;s password while I am 100% sure that my password was correct.  I believe it is a bug of Openfire.</p>
<p>Here is how I recoved the admin&#8217;s password.</p>
<p>1. Run Openfire Installation Wizard again:<br />
cd /usr/share/openfire/conf<br />
vi openfire.xml<br />
Change the <setup>true</setup> to <setup>false</setup></p>
<p>Run the Installation Wizard again, which is http://your_ip_address:9090/</p>
<p>2. Select MySQL as the Openfire&#8217;s database during the installation.  You may still select HSQLDB instead of MySQL.  Because I am not familiar with HSQLDB, I selected MySQL which is easy for me to reset admin&#8217;s password.</p>
<p>You need to create a new MySQL database and provide the related information in the installation wizard.</p>
<p>After you finished the installation wizard, you can go to next step.</p>
<p>3. Reset admin&#8217;s password in MySQL:<br />
Login to MySQL and use openfire database. I use the command:<br />
mysql -u root -p openfire</p>
<p>Display the password for the admin user with the query:<br />
select password from ofUser where username = &#8216;admin&#8217;;</p>
<p>The encryptedPassword field is your admin&#8217;s password.  Change the admin (or any other users) password by setting password field to chosen value and encryptedPassword field to null.  For example here is the query to set the admin password to 123456:<br />
update ofUser set password=&#8217;123456&#8242;, encryptedPassword = null where username =&#8217;admin&#8217;;</p>
<p>This will change the current admin password to 123456. Remember to change it to a different value after you login to the admin console. This will change your password to null and encryptedPassword to an encrypted string for added security purpose.</p>
<p>4. Restart the Openfire and Login again:<br />
/etc/init.d/openfire restart</p>
<p>http://your_ip_address:9090/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/open-source/how-to-recover-openfire-admin-password.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress in Ubuntu 9.10 can&#8217;t be visited from Network</title>
		<link>http://www.bowu.org/system-administration/linux/ubuntu/wordpress-in-ubuntu-9-10.html</link>
		<comments>http://www.bowu.org/system-administration/linux/ubuntu/wordpress-in-ubuntu-9-10.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 18:55:38 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=145</guid>
		<description><![CDATA[You have two options to install WordPress in Ubuntu 9.10. The first option is to download and install WordPress manually. If you are in a shared web hosting environment, you have to do this way. The second option is to install it from the Ubuntu&#8217;s repository. If you are the root, you can just type: [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Wordpress" src="http://logolitic.com/wp-content/uploads/2009/10/wordpress.jpg" alt="wordpress Wordpress in Ubuntu 9.10 cant be visited from Network" width="180" height="180" /></p>
<p>You have two options to install WordPress in Ubuntu 9.10.  The first option is to download and install WordPress manually.  If you are in a shared web hosting environment, you have to do this way.</p>
<p>The second option is to install it from the Ubuntu&#8217;s repository.  If you are the root, you can just type:</p>
<p>apt-get install wordpress</p>
<p>Everything will be installed and configured automatically for you.</p>
<p>However, you need to change following configuration manually, otherwise the WordPress can only be visited at your local host, like http://localhost/wordpress/.  If you visit it from network, like http://your_ip_address/wordpress, you will get an error.</p>
<p>You can solve it as following:</p>
<p>cd /etc/wordpress/</p>
<p>sudo cp config-localhost.php config-newhostname.php</p>
<p>sudo chown www-data config-newhostname.php</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/system-administration/linux/ubuntu/wordpress-in-ubuntu-9-10.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install SugarCRM</title>
		<link>http://www.bowu.org/open-source/install-sugarcrm.html</link>
		<comments>http://www.bowu.org/open-source/install-sugarcrm.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 18:11:46 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=221</guid>
		<description><![CDATA[SugarCRM is an open-source software-solution vendor which produces the Sugar Customer Relationship Management (CRM) system. 0. Prerequisites: Apache Web Server MySQL Database PHP5 (including Pear, Curl, IMAP Modules) 1. Install PHP Pear Module apt-get install php-pear 2. Change Permission: chmod 766 config.php chmod 766 -R data chmod 766 -R cache chmod 766 -R custom chmod [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-229" title="sugarcrm" src="http://www.bowu.org/wp-content/uploads/2010/04/sugarcrm.jpg" alt="sugarcrm Install SugarCRM" width="450" height="327" /></p>
<p>SugarCRM is an open-source software-solution vendor which produces the Sugar Customer Relationship Management (CRM) system.</p>
<p><strong>0. Prerequisites:</strong></p>
<ul>
<li> Apache Web Server</li>
<li> MySQL Database</li>
<li> PHP5 (including Pear, Curl, IMAP Modules)</li>
</ul>
<p><strong>1. Install PHP Pear Module</strong></p>
<p>apt-get install php-pear</p>
<p><strong>2. Change Permission:</strong><br />
chmod 766 config.php<br />
chmod 766 -R data<br />
chmod 766 -R cache<br />
chmod 766 -R custom<br />
chmod 777 -R modules</p>
<p><strong>3. Create MySQL Database</strong><br />
mysql -u root -p<br />
mysql&gt; CREATE DATABASE sugarcrm;<br />
mysql&gt; USE sugarcrm;<br />
mysql&gt; GRANT ALL PRIVILEGES ON sugarcrm.* TO sugarcrm@localhost IDENTIFIED BY &#8216;mypassword&#8217;;</p>
<p>DB Name: sugarcrm<br />
DB User: sugarcrm<br />
DB User Password: mypassword<br />
DB Host: localhost</p>
<p><strong>4. Run Installation Wizard at http://localhost/sugarcrm/</strong></p>
<p>1) Set /etc/php5/apache2/php.ini to increase:<br />
- PHP Memory Limit from	16M to 40M<br />
memory_limit = 40M<br />
- Upload File Size:<br />
upload_max_filesize = 48M</p>
<p>2) Install cURL for the purpose of transferring data.<br />
apt-get install php5-curl</p>
<p>3) Install IMAP Module: InboundEmail and Campaigns (Email) require the IMAP libraries. Neither will be functional.<br />
apt-get install php5-imap</p>
<p>4) Create an empty .htacess file under the root directory of SugarCRM and chmod it to 777.</p>
<p>After hitting the &#8220;Install&#8221; button, the Wizard will create all tables in MySQL.  If you selected the &#8220;Sample Data&#8221;, it will also create it for you.  It will also write following data to the .htaccess file created by you.</p>
<p># BEGIN SUGARCRM RESTRICTIONS RedirectMatch 403 (?i).*\.log$ RedirectMatch 403 (?i)/+not_imported_.*\.txt RedirectMatch 403 (?i)/+(soap|cache|xtemplate|data|examples|include|log4php|metadata|modules)/+.*\.(php|tpl) RedirectMatch 403 (?i)/+emailmandelivery\.php RedirectMatch 403 (?i)/+cache/+upload RedirectMatch 403 (?i)/+files\.md5$ # END SUGARCRM RESTRICTIONS</p>
<p>Now, you can change the .htaccess permission to 644.</p>
<p>Congratulations! You finished the installation of SugarCRM.</p>
<p>You can go to http://localhost/sugarcrm to test and use it from now.</p>
<p>Reference: <a href="http://www.sugarcrm.com/wiki/index.php?title=Installation" target="_blank">http://www.sugarcrm.com/wiki/index.php?title=Installation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/open-source/install-sugarcrm.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>500 Internal Server Error &amp; Some Plugins Not Working</title>
		<link>http://www.bowu.org/open-source/wordpress/500-internal-server-error-some-plugins-not-working.html</link>
		<comments>http://www.bowu.org/open-source/wordpress/500-internal-server-error-some-plugins-not-working.html#comments</comments>
		<pubDate>Tue, 30 Mar 2010 22:38:13 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=206</guid>
		<description><![CDATA[When I upgraded the WordPress to 2.9.2 and enabled the Akismet plugin, I got 500 Internal Server Error. The reason is some WordPress 2.9.2 and some plugins need PHP 5. So, I solved the problem by adding Type and Handler for PHP 5 in the .htaccess file at the WordPress Root Directory. My .htaccess file [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bowu.org/wp-content/uploads/2010/03/500-internal-server-error.png"><img class="alignnone size-full wp-image-241" title="500-internal-server-error" src="http://www.bowu.org/wp-content/uploads/2010/03/500-internal-server-error.png" alt="500 internal server error 500 Internal Server Error & Some Plugins Not Working" width="329" height="283" /></a></p>
<p>When I upgraded the WordPress to 2.9.2 and enabled the Akismet plugin, I got 500 Internal Server Error.  The reason is some WordPress 2.9.2 and some plugins need PHP 5.  So, I solved the problem by adding Type and Handler for PHP 5 in the .htaccess file at the WordPress Root Directory.</p>
<p>My .htaccess file looks as following:</p>
<p>AddType x-mapp-php5 .php<br />
AddHandler x-mapp-php5 .php</p>
<p># BEGIN WordPress</p>
<p>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]</p>
<p># END WordPress</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/open-source/wordpress/500-internal-server-error-some-plugins-not-working.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 Linux Video Editor Software</title>
		<link>http://www.bowu.org/open-source/top-5-linux-video-editor-software.html</link>
		<comments>http://www.bowu.org/open-source/top-5-linux-video-editor-software.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 23:42:47 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=180</guid>
		<description><![CDATA[I&#8217;m looking for a free video editor similar to &#8211; Adobe Premiere Pro, Apple iMovie, Final Cut Pro or Microsoft Movie Maker under Linux Desktop operating system. My tasks are pretty simple such as cutting, filtering, and encoding tasks etc. Can you provide me a list of FOSS software which can be used for video [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m looking for a free video editor similar to &#8211; Adobe Premiere Pro, Apple iMovie, Final Cut Pro or Microsoft Movie Maker under Linux Desktop operating system. My tasks are pretty simple such as cutting, filtering, and encoding tasks etc. Can you provide me a list of FOSS software which can be used for video capture and video editing purposes under Fedora or Ubuntu Linux desktop systems?<br />
A non-linear editing system (NLE) is a video editing (NLVE) or audio editing (NLAE) system which can provide editing method for video clips or frams. You will be able to access any frame in a video clip. Non-linear editing is done for film and television post-production. However, the cost of editing system gone down and non-linear editing tools (including software) are now within the reach of most home users.</p>
<p>MS-Windows PC included Windows Movie Maker and Apple computer comes with iMovie. Most Linux based editing software can now be downloaded free of charge from the Internet. You also need a video capture card and a FireWire connection to capture digital video from a DV camera.</p>
<h2>Avidemux</h2>
<p>Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities. Avidemux is available for Linux, BSD, Mac OS X and Microsoft Windows under the GNU GPL license.</p>
<div id="attachment_4883"><a rel="attachment wp-att-4883" href="http://www.bowu.org/?attachment_id=4883"><img title="Ubuntu Linux Avidemux Video Editor Software" src="http://files.cyberciti.biz/uploads/faq/2009/08/ubuntu-avidemux-video-editor.png" alt="ubuntu avidemux video editor Top 5 Linux Video Editor Software" width="595" height="452" /></a>Fig.01: Avidemux in Action under Ubuntu (image credit: Wikipedia)</p>
</div>
<h3>How Do I Install Avidemux Under Debian / Ubuntu Linux Desktop?</h3>
<p>Type the following command:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:550px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ sudo apt-get install avidemux</div></div>
<h4>Embedding The Subtitles to AVI By Using Avidemux</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/mNt6mEQ658s&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/mNt6mEQ658s&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>=&gt; <a href="http://avidemux.sourceforge.net/">Download Avidemux</a></p>
<h2>Cinelerra</h2>
<p>Cinelerra is the most advanced non-linear video editor and compositor for Linux. Cinelerra also includes a video compositing engine, allowing the user to perform common compositing operations such as keying and mattes. Cinelerra includes support for very high-fidelity audio and video: it processes audio using 64 bits of precision, and can work in both RGBA and YUVA color spaces, using floating-point and 16-bit integer representations, respectively. It is resolution and frame rate-independent, meaning that it can support video of any speed and size.</p>
<div id="attachment_4873"><a rel="attachment wp-att-4873" href="http://www.bowu.org/?attachment_id=4873"><img title="Cinelerra Professional Non-linear Video Editing System For Linux" src="http://files.cyberciti.biz/uploads/faq/2009/08/cinelerra-non-linear-video-editing.jpg" alt="cinelerra non linear video editing Top 5 Linux Video Editor Software" width="595" height="575" /></a>Fig.02: Cinelerra Rendering in Action (credit Cinelerra project)</p>
</div>
<h4>Video editing in Ubuntu Using Cinelerra Part 1</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/bcBxE6m7x8w&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/bcBxE6m7x8w&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h4>Cinelerra Tutorial Capturing Desktop Screens</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/MhaOgNQ0Bbc&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/MhaOgNQ0Bbc&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>=&gt; <a href="http://www.heroinewarrior.com/cinelerra.php" target="_blank">Download Cinelerra</a></p>
<h2>Kdenlive</h2>
<p>Kdenlive is an intuitive and powerful multi-track video editor, including most recent video technologies. Kdenlive supports all of the formats supported by FFmpeg (such as QuickTime, AVI, WMV, MPEG, and Flash Video), and also supports 4:3 and 16:9 aspect ratios for both PAL, NTSC and various HD standards, including HDV. Video can also be exported to DV devices, or written to a DVD with chapters and a simple menu. Kdenlive packages are freely available for GNU/Linux, FreeBSD and Mac OS X under the terms of GNU General Public License version 2 or any version later.</p>
<div id="attachment_4870"><a rel="attachment wp-att-4870" href="http://www.bowu.org/?attachment_id=4870"><img title="Kdenlive: Linux Video Editor Software To Mix Mix video, audio and images" src="http://files.cyberciti.biz/uploads/faq/2009/08/kdenlive-linux-non-linear-video-editor-software.png" alt="kdenlive linux non linear video editor software Top 5 Linux Video Editor Software" width="595" height="418" /></a>Fig.03: Kdenlive in Action (credit: Kdenlive project)</p>
</div>
<h3>How Do I Install Kdenlive Under Debian / Ubuntu Linux Desktop?</h3>
<p>Type the following command:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:550px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ sudo apt-get install kdenlive</div></div>
<h4>Video Effects &amp; Stacking &#8211; Kdenlive 0.7 &#8211; Ubuntu 8.10</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/nJD2Wr1blvk&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/nJD2Wr1blvk&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>=&gt; <a href="http://kdenlive.org/" target="_blank">Download Kdenlive</a></p>
<h2>Kino</h2>
<p>Kino is a non-linear DV editor for GNU/Linux. It features excellent integration with IEEE-1394 for capture, VTR control, and recording back to the camera. It captures video to disk in Raw DV and AVI format, in both type-1 DV and type-2 DV (separate audio stream) encodings.</p>
<div id="attachment_4878"><a rel="attachment wp-att-4878" href="http://www.bowu.org/?attachment_id=4878"><img title="Linux Kino  GTK Gnome Based Non Linear Digital Video Editor" src="http://files.cyberciti.biz/uploads/faq/2009/08/kino-GTK-gnome-based-non-linear-digital-video-editor.png" alt="kino GTK gnome based non linear digital video editor Top 5 Linux Video Editor Software" width="595" height="534" /></a>Fig.04: Kino Main Window (image credit &#8211; Kino porject)</p>
</div>
<h3>How Do I Install Kino Under Debian / Ubuntu Linux Desktop?</h3>
<p>Type the following command:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:550px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ sudo apt-get install kino</div></div>
<h4>LINUX video capture &#8211; KINO Tutorial</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Ld9YsG8lZJ0&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/Ld9YsG8lZJ0&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>=&gt; <a href="http://kinodv.org/" target="_blank">Download Kino</a></p>
<h2>LiVES</h2>
<p>LiVES (LiVES is a Video Editing System) is a free software video editing program and VJ tool. LiVES mixes realtime video performance and non-linear editing in one professional quality application. It will let you start editing and making video right away, without having to worry about formats, frame sizes, or framerates. It is a very flexible tool which is used by both professional VJ&#8217;s and video editors &#8211; mix and switch clips from the keyboard, use dozens of realtime effects, trim and edit your clips in the clip editor, and bring them together using the multitrack timeline. You can even record your performance in real time, and then edit it further or render it straight away.</p>
<p>For the more technically minded, the application is frame and sample accurate, and it can be controlled remotely or scripted for use as a video server. And it supports all of the latest free standards.</p>
<div id="attachment_4867"><a rel="attachment wp-att-4867" href="http://www.bowu.org/?attachment_id=4867"><img title="Lives: Linux Video Editing System" src="http://files.cyberciti.biz/uploads/faq/2009/08/linux-lives-video-editor.png" alt="linux lives video editor Top 5 Linux Video Editor Software" width="595" height="450" /></a>Fig.05: Lives: Linux Video Editing System (Image: Lives project)</p>
</div>
<h4>Demo made using LiVES Software</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/SVf4g6v_3R8&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/SVf4g6v_3R8&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>=&gt; <a href="http://lives.sourceforge.net/" target="_blank">Download LiVES</a></p>
<h2>Comparison Of Video Editing Software</h2>
<table border="1">
<tbody>
<tr>
<th>Feature</th>
<th>Avidemux</th>
<th>Cinelerra</th>
<th>Kdenlive</th>
<th>Kino</th>
<th>LiVES</th>
</tr>
<tr>
<td>License</td>
<td>GPL</td>
<td>GPL</td>
<td>GPLv2</td>
<td>GPL</td>
<td>GPLv3+</td>
</tr>
<tr>
<td>Cost</td>
<td>Free</td>
<td>Free</td>
<td>Free</td>
<td>Free</td>
<td>Free</td>
</tr>
<tr>
<td>Paid Support</td>
<td>N</td>
<td>Y</td>
<td>N</td>
<td>N</td>
<td>N</td>
</tr>
<tr>
<td>RAM (min)</td>
<td>?</td>
<td>256M</td>
<td>256M</td>
<td>?</td>
<td>128M</td>
</tr>
<tr>
<td>Hard Disk (min)</td>
<td>?</td>
<td>?</td>
<td>1G</td>
<td>?</td>
<td>10G</td>
</tr>
<tr>
<td>CPU</td>
<td>?</td>
<td>500Mhz</td>
<td>600Mhz</td>
<td>?</td>
<td>800Mhz</td>
</tr>
<tr>
<td>High Definition Video Editing</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
</tr>
<tr>
<td>Non-destructive Editing</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Full-screen Playback</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Storyboard Mode</td>
<td>?</td>
<td>N</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
</tr>
<tr>
<td>Video Tracks</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
</tr>
<tr>
<td>Audio Tracks</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
</tr>
<tr>
<td>Linear Timecode Display</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
</tr>
<tr>
<td>DVD Output</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
<td>Y</td>
</tr>
<tr>
<td>HD Output</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
<td>Y</td>
</tr>
<tr>
<td>Smart Phone Output</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
<td>Y</td>
</tr>
<tr>
<td>QuickTime Output</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
<td>Y</td>
</tr>
<tr>
<td>Windows Media Output</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
<td>Y</td>
</tr>
<tr>
<td>MPEG-4 Output</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Web Output</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
<td>N</td>
</tr>
</tbody>
</table>
<h3>Other Open Source Non-linear Video Editing Software For Linux Operating Systems</h3>
<ol>
<li><a href="http://www.blender.org/" target="_blank">Blender</a> &#8211; 3D animation suite (cross-platform) : Blender is a 3D graphics application. It can be used for modeling, UV unwrapping, texturing, rigging, water simulations, skinning, animating, rendering, particle and other simulations, non-linear editing, compositing, and creating interactive 3D applications, including games. Blender&#8217;s features include advanced simulation tools such as rigid body, fluid, cloth and softbody dynamics, modifier based modeling tools, powerful character animation tools, a node based material and compositing system and Python for embedded scripting.</li>
<li><a href="http://www.openshotvideo.com/" target="_blank">OpenShot</a> Video Editor : OpenShot Video Editor is an open-source program that creates, modifies, and edits video files.</li>
<li><a href="http://www.pitivi.org/wiki/Main_Page" target="_blank">PiTiVi</a> : PiTiVi is a program for video editing based on the GStreamer framework. It can &#8211; Capture and encode audio and video, with formats supported by GStreamer, split and trim video clips, split and trim audio, render projects in any format supported by the GStreamer framework etc.</li>
</ol>
<h2>Our Recommendation</h2>
<ul>
<li>Use Cinelerra for professional work. It is very fast, and can handle a heavy load. You can also obtain paid support for this product.</li>
<li>For video encoding and conversion purpose use Avidemux.</li>
</ul>
<h3>Who Uses&#8230;?</h3>
<ol>
<li>Cinelerra &#8211; Recommended for Animator, Artist/Illustrator/Designer, video editor.</li>
<li>Kino &#8211; Recommended of home user, video editor, and videographer.</li>
<li>Avidemux (Non-Linear Editor) &#8211; Recommended videographer</li>
<li>Kdenlive &#8211; Recommended for home user.</li>
<li>LiVES &#8211;  Recommend for home user and VJ.</li>
</ol>
<p>What Software do you use for Digital Video Editing?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/open-source/top-5-linux-video-editor-software.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Open Source Web-Based Project Management Software</title>
		<link>http://www.bowu.org/open-source/top-10-open-source-web-based-project-management-software.html</link>
		<comments>http://www.bowu.org/open-source/top-10-open-source-web-based-project-management-software.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 23:41:04 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=178</guid>
		<description><![CDATA[This is an user contributed article. Project management software is not just for managing software based project. It can be used for variety of other tasks too. The web-based software must provide tools for planning, organizing and managing resources to achieve project goals and objectives. A web-based project management software can be accessed through an [...]]]></description>
			<content:encoded><![CDATA[<p>This is an user contributed article.</p>
<p>Project management software is not just for managing software based project. It can be used for variety of other tasks too. The web-based software must provide tools for planning, organizing and managing resources to achieve project goals and objectives. A web-based project management software can be accessed through an intranet or WAN / LAN using a web browser. You don&#8217;t have to install any other software on the system. The software can be easy of use with access control features (multi-user). I use project management software for all of our projects (for e.g. building a new cluster farm) for issue / bug-tracking, calender, gantt charts, email notification and much more.</p>
<p>Obviously I&#8217;m not the only user, the following open source software is used by some of the biggest research organizations and companies world wild. For example, NASA&#8217;s Jet Propulsion Laboratory uses track software or open source project such as lighttpd / phpbb use redmine software to keep track of their projects.</p>
<p>You use the following top 10 software for personal or business use. Keep track of all your projects in one place and finish them successfully on time.</p>
<h2>#1: Codendi</h2>
<p>Codendi is an open-source collaborative development platform offered by Xerox. From only one interface, it gathers, all the needed tools for software development teams: management and versioning of code, bugs, requirements, documents, reporting, tests etc. It is mainly used for managing software project processes.</p>
<ul>
<li><a href="http://www.codendi.com/index_en.php" target="_blank">Download Codendi</a></li>
</ul>
<h2>#2: Redmine</h2>
<p>Redmine is a flexible project management web application. Written using Ruby on Rails framework, it is cross-platform and cross-database. It includes calendar and gantt charts to aid visual representation of projects and their deadlines.</p>
<ul>
<li><a href="http://www.redmine.org/" target="_blank">Download redmine</a></li>
</ul>
<h2>#3: ProjectPier</h2>
<p>ProjectPier is a Free, Open-Source, self-hosted PHP application for managing tasks, projects and teams through an intuitive web interface. ProjectPier will help your organization communicate, collaborate and get things done Its function is similar to commercial groupware/project management products, but allows the freedom and scalability of self-hosting.</p>
<ul>
<li><a href="http://www.projectpier.org/" target="_blank">Download ProjectPier</a></li>
</ul>
<h2>#4: Trac</h2>
<p>Trac is an open source, web-based project management and bug-tracking tool. Trac allows hyperlinking information between a computer bug database, revision control and wiki content. It also serves as a web interface to a version control system like Subversion, Git, Mercurial, Bazaar and Darcs.</p>
<ul>
<li><a href="http://trac.edgewall.org/" target="_blank">Download Trac</a></li>
</ul>
<h2>#5: Project HQ</h2>
<p>Project HQ is a collaborative open source project management tool, similar to Basecamp and activeCollab. Project HQ is built on open source technologies like Python, Pylons and SQLAlchemy and is fully database independent. Project HQ uses a structured workflow to assist you in managing your projects.</p>
<ul>
<li><a href="http://projecthq.org/" target="_blank">Download Project HQ</a></li>
</ul>
<h2>#6: Collabtive</h2>
<p>Collabtive is a web-based project management software that is being published as Open Source software. The project was started in November 2007. It strives to provide an Open Source alternative to proprietary tools like Basecamp or ActiveCollab.</p>
<ul>
<li><a href="http://collabtive.o-dyn.de/" target="_blank">Download Collabtive</a></li>
</ul>
<h2>#7: eGroupWare</h2>
<p>eGroupWare is a free open source groupware software intended for businesses from small to enterprises. Its primary functions allow users to manage contacts, appointments, projects and to-do lists.</p>
<p>It is used either via its native web-interface, making access platform-independent, or by using different supported groupware clients, such as Kontact, Novell Evolution, or Microsoft Outlook. It can also be used by mobile phone or PDA via SyncML.</p>
<ul>
<li><a href="http://www.egroupware.org/Home" target="_blank">Download eGroupWare</a></li>
</ul>
<h2>#8: KForge</h2>
<p>KForge is an open-source (GPL) system for managing software and knowledge projects. It re-uses existing best-of-breed tools such as a versioned storage (subversion), a tracker (trac), and wiki (trac or moinmoin), integrating them with the system</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/open-source/top-10-open-source-web-based-project-management-software.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 Email Client For Linux, Mac OS X, and Windows Users</title>
		<link>http://www.bowu.org/open-source/top-5-email-client-for-linux-mac-os-x-and-windows-users.html</link>
		<comments>http://www.bowu.org/open-source/top-5-email-client-for-linux-mac-os-x-and-windows-users.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 23:39:38 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=175</guid>
		<description><![CDATA[Linux comes with various GUI based email client to stay in touch with your friends and family, and share information in newsgroups with other users. The following software is similar to Outlook Express or Windows Live Mail and is used by both home and office user. Webmail interfaces allow users to access their mail with [...]]]></description>
			<content:encoded><![CDATA[<p>Linux comes with various GUI based email client to stay in touch with your friends and family, and share information in newsgroups with other users. The following software is similar to Outlook Express or Windows Live Mail and is used by both home and office user.</p>
<p>Webmail interfaces allow users to access their mail with any standard web browser, from any computer, rather than relying on an e-mail client.</p>
<p>However, <a href="http://en.wikipedia.org/wiki/E-mail_client" target="_blank">e-mail client</a> remains extremely popular in a large corporate environment, small business, home and power users. An e-mail client (also mail user agent (MUA)) is a frontend computer program used to manage e-mail. Mail can be stored on the client, on the server side, or in both places. Standard formats for mailboxes include Maildir and mbox.</p>
<p>The following are top five amazing piece of cross-platform software from various projects to make your life easy with wide variety of plug-ins / add-ons.</p>
<h2>#1: Mozilla Thunderbird</h2>
<p>It is an e-mail and news cross-platform client software package by Mozilla Foundation. Thunderbird can manage multiple e-mail, newsgroup and RSS accounts and supports multiple identities within accounts. Features like quick search, saved search folders , advanced message filtering, message grouping, and labels help manage and find messages. Just like Firefox, the tons of extensions and themes for this client makes it very secure and flexible to to enhance your productivity.</p>
<div id="attachment_5595"><a rel="attachment wp-att-5595" href="http://www.bowu.org/?attachment_id=5595"><img title="Mozilla Thunderbird" src="http://files.cyberciti.biz/uploads/tips/2009/08/thunderbird.png" alt="thunderbird Top 5 Email Client For Linux, Mac OS X, and Windows Users" width="580" height="487" /></a>Fig.01: Mozilla Thunderbird</p>
</div>
<p>=&gt; <a href="http://www.mozillamessaging.com/en-US/" target="_blank">Download Mozilla Thunderbird</a></p>
<h2>#2: Claws Mail</h2>
<p>Claws Mail is a free, GTK+-based, open source email and news client. It is very light lightweight. Like Firefox , the wide variety of plug-ins for this email client makes it very flexible and secure. Claws Mail runs on Windows, Mac OS X and Unix-like systems such as Linux, BSD, and Solaris.</p>
<div id="attachment_5598"><a rel="attachment wp-att-5598" href="http://www.bowu.org/?attachment_id=5598"><img title="Claws Mail" src="http://files.cyberciti.biz/uploads/tips/2009/08/claws-mail-3.5.0.png" alt="claws mail 3.5.0 Top 5 Email Client For Linux, Mac OS X, and Windows Users" width="580" height="420" /></a>Fig.02: Claws Mail in Action</p>
</div>
<p>=&gt; <a href="http://www.claws-mail.org/" target="_blank">Download Claws Mail</a></p>
<h2>#3: Spicebird</h2>
<p>Spicebird is a collaboration client that provides integrated access to email, contacts, calendaring and instant messaging in a single application. It provides easy access to various web services while retaining all the advantages of a desktop application. It is developed by an Indian company called Synovel. It is a free, open source and cross-platform software.</p>
<div id="attachment_5601"><a rel="attachment wp-att-5601" href="http://www.bowu.org/?attachment_id=5601"><img title="Spicebird - e-mail, calendaring and instant messaging" src="http://files.cyberciti.biz/uploads/tips/2009/08/spicebird.png" alt="spicebird Top 5 Email Client For Linux, Mac OS X, and Windows Users" width="596" height="440" /></a>Fig.03: Spicebird in Action (image credit Spicebird project)</p>
</div>
<p>=&gt; <a href="http://www.spicebird.com/" target="_blank">Download Spicebird</a></p>
<h2>#4: Zimbra Collaboration Suite (Open Source Version)</h2>
<p>Zimbra is a client and server platform for messaging and collaboration. The web client integrates email, contacts, shared calendar, VoIP, and online document authoring in a rich browser-based interface. This is more like MS-Exchange and Outlook combo. In other words it is compatible with proprietary clients such as Microsoft Outlook and Apple Mail, both through proprietary connectors, as well as the open-source Novell Evolution, so that mail, contacts, and calendar items can be synchronised from these to the ZCS server. Zimbra also provides native two-way sync to many mobile devices such as Nokia Eseries, BlackBerry, Windows Mobile, iPhone with 2.0 software.</p>
<div id="attachment_5604"><a rel="attachment wp-att-5604" href="http://www.bowu.org/?attachment_id=5604"><img title="Zimbra open source server collaboration - email, group calendar, contacts, instant messaging" src="http://files.cyberciti.biz/uploads/tips/2009/08/zimbra.jpg" alt="zimbra Top 5 Email Client For Linux, Mac OS X, and Windows Users" width="598" height="453" /></a>Fig.04: Zimbra (credit offical Zimbra website)</p>
</div>
<p>=&gt; <a href="http://www.zimbra.com/community/downloads.html" target="_blank">Download Zimbra Collaboration Suite (Open Source Version)</a></p>
<h2>#5: Sylpheed</h2>
<p>Sylpheed is a free, GTK+-based, open source email and news client. It is very light lightweight. Sylpheed runs on Windows, Mac OS X and Unix-like systems such as Linux, and BSD.</p>
<div id="attachment_5609"><a rel="attachment wp-att-5609" href="http://www.bowu.org/?attachment_id=5609"><img title="Sylpheed open source e-mail and news client for Linux / UNIX" src="http://files.cyberciti.biz/uploads/tips/2009/08/sylpheed.png" alt="sylpheed Top 5 Email Client For Linux, Mac OS X, and Windows Users" width="585" height="474" /></a>Fig.05: Sylpheed in Action</p>
</div>
<p>=&gt; <a href="http://sylpheed.sraoss.jp/en/" target="_blank">Download sylpheed</a></p>
<h2>Comparison of E-mail Clients &#8211; Essential Features</h2>
<p>The following tables compare general and technical information between e-mail client programs.</p>
<table border="1">
<tbody>
<tr>
<th>Feature</th>
<th>Thunderbird</th>
<th>Claws Mail</th>
<th>Spicebird</th>
<th>Zimbra</th>
<th>Sylpheed</th>
</tr>
<tr>
<td>Cross-platform</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>License</td>
<td><a href="http://en.wikipedia.org/wiki/Mozilla_Public_License" target="_blank">MPL</a>, MPL/GNU <a href="http://en.wikipedia.org/wiki/GNU_General_Public_License" target="_blank">GPL/GNU</a> <a href="http://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License" target="_blank">LGPL</a></td>
<td>GPL</td>
<td>MPL, MPL/GNU GPL/GNU LGPL</td>
<td>MPL (server) and <a href="http://en.wikipedia.org/wiki/Zope_Public_License" target="_blank">ZPL</a> (client)</td>
<td>GPL/LGPL</td>
</tr>
<tr>
<td>Cost</td>
<td>Free</td>
<td>Free</td>
<td>Free</td>
<td>Free</td>
<td>Free</td>
</tr>
<tr>
<td>Authentication</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>SSL and TLS</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Image blocking</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Junk filtering</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Phishing filtering</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
</tr>
<tr>
<td>Add-ons</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>N</td>
</tr>
<tr>
<td>Thread view</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>PGP support</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
</tr>
<tr>
<td>Label Messages</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Spell Checking</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
<td>N</td>
</tr>
<tr>
<td>Signatures</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Scheduled message</td>
<td>Y</td>
<td>?</td>
<td>?</td>
<td>?</td>
<td>?</td>
</tr>
<tr>
<td>Message templates</td>
<td>Y</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>Database</td>
<td><a href="http://en.wikipedia.org/wiki/Mbox" target="_blank">mbox</a></td>
<td><a href="http://en.wikipedia.org/wiki/MH_Message_Handling_System" target="_blank">MH</a>, <a href="http://en.wikipedia.org/wiki/Mbox" target="_blank">mbox</a></td>
<td>?</td>
<td>File system</td>
<td><a href="http://en.wikipedia.org/wiki/MH_Message_Handling_System" target="_blank">MH</a></td>
</tr>
<tr>
<td>POP3</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>IMAP4</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>SMTP</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>NNTP (News)</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
</tr>
<tr>
<td>RSS Feed</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
</tr>
<tr>
<td>LDAP</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
</tr>
<tr>
<td>iCalendar</td>
<td>Y</td>
<td>?</td>
<td>Y</td>
<td>Y</td>
<td>N</td>
</tr>
<tr>
<td>Paid Support</td>
<td>?</td>
<td>?</td>
<td>?</td>
<td>?</td>
<td>Y</td>
</tr>
</tbody>
</table>
<p><small>Y = supported; N = not supported; ? = unknown; Privacy feature; Security features; Productivity features; Cross-platform &#8211; runs on Mac OS X, Windows and UNIX like operating systems.</small></p>
<h3>Other Email Clients For UNIX Like Operating Systems</h3>
<ol>
<li><a href="http://www.seamonkey-project.org/" target="_blank">SeaMonkey</a> &#8211; Mozilla SeaMonkey is an all-in-one Internet application suite that includes an Internet browser, email and newsgroup client, HTML editor, IRC chat, and web development tools. It includes a pop-up blocker, junk mail controls, and a tabbed interface.</li>
<li><a href="http://www.washington.edu/alpine/" target="_blank">Pine (Alpine)</a> &#8211; Alpine is a rewrite of the Pine Message System that adds support for Unicode and other features. Alpine is meant to be suitable for both inexperienced email users and the most demanding of power users.</li>
<li><a href="http://projects.gnome.org/evolution/" target="_blank">Evolution or Novell Evolution</a> &#8211; Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop.</li>
</ol>
<h2>Our Recommendations:</h2>
<ol>
<li><strong>Claws Mail</strong> &#8211; Highly recommended for netbook user due to lightweight usage.</li>
<li><strong>Mozilla Thunderbird</strong> &#8211; The wide variety of add-on for this email client makes it very flexible, secure and easy to use. Highly recommended for desktop and power users.</li>
<li><strong>Zimbra Collaboration Suite</strong> ~ Open Source Edition or Businesses Editon &#8211; Highly recommended for business and corporate users due to its support for a broad range of email clients and mobile devices via &#8220;over the air&#8221; sync.</li>
</ol>
<p>All of the e-mail client listed above used by me at one point or another. If you know of, or use, another e-mail client that offers better features than those mentioned here, tell us in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/open-source/top-5-email-client-for-linux-mac-os-x-and-windows-users.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Greatest Open Source Software Of 2009</title>
		<link>http://www.bowu.org/open-source/10-greatest-open-source-software-of-2009.html</link>
		<comments>http://www.bowu.org/open-source/10-greatest-open-source-software-of-2009.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 23:37:34 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.bowu.org/?p=172</guid>
		<description><![CDATA[These are full-featured cross-platform softwares, free as in beer and speech. Vivek Gite picks his best open source software of 2009. #1: Inkscape ( Vector Graphics Editor ) Fig.01: Inkscape is used by artist/illustrator/designer as vector graphics editor Inkscape is a vector graphics editor. It is similar to Illustrator, CorelDraw, and Xara X. This is [...]]]></description>
			<content:encoded><![CDATA[<p>These are full-featured cross-platform softwares, free as in beer and speech. Vivek Gite picks his best open source software of 2009.</p>
<h2>#1: Inkscape ( Vector Graphics Editor )</h2>
<div id="attachment_6319"><img title="Linux Inkscape Similar Software To Adobe Illustrator, CorelDRAW, Xara Used for Vector Graphics" src="http://files.cyberciti.biz/uploads/tips/2009/12/inkscape.png" alt="inkscape 10 Greatest Open Source Software Of 2009" width="590" height="451" />Fig.01: Inkscape is used by artist/illustrator/designer as vector graphics editor</p>
</div>
<p>Inkscape is a vector graphics editor. It is similar to Illustrator, CorelDraw, and Xara X. This is perfect for object manipulation and styling objects. From the project home page:</p>
<blockquote><p>Inkscape supports many advanced SVG features (markers, clones, alpha blending, etc.) and great care is taken in designing a streamlined interface. It is very easy to edit nodes, perform complex path operations, trace bitmaps and much more. We also aim to maintain a thriving user and developer community by using open, community-oriented development.</p></blockquote>
<ul>
<li><a href="http://www.inkscape.org/" target="_blank">Download Inkscape</a></li>
</ul>
<h2>#2: 7-Zip ( Archiver )</h2>
<div id="attachment_6322"><img title="Linux PeaZip / Winzip Like Software 7-Zip" src="http://files.cyberciti.biz/uploads/tips/2009/12/7zip.png" alt="7zip 10 Greatest Open Source Software Of 2009" width="590" height="326" />Fig.02: 7-Zip is used as archiver</p>
</div>
<p>7-Zip is a file archiver and open source software. No need to use winzip or anything else. It does everything for you without paying a single penny:</p>
<ol>
<li>Supports many formats:
<ol>
<li>Packing / unpacking: 7z, ZIP, GZIP, BZIP2 and TAR</li>
<li>Unpacking only: ARJ, CAB, CHM, CPIO, DEB, DMG, HFS, ISO, LZH, LZMA, MSI, NSIS, RAR, RPM, UDF, WIM, XAR and Z.</li>
</ol>
</li>
<li>Fast.</li>
<li>Free and open source.</li>
<li>High compression ratio.</li>
<li>Works best with Windows operating systems.</li>
</ol>
<ul>
<li><a href="http://www.7-zip.org/" target="_blank">Download 7-Zip</a></li>
</ul>
<p>Note: For Linux / UNIX desktop I prefer to use native tools such as zip/unzip, tar etc.</p>
<h2>#3: VLC ( Media Player )</h2>
<div id="attachment_6336"><img title="Linux VLC media player is similar to QuickTime / Windows Media Player" src="http://files.cyberciti.biz/uploads/tips/2009/12/vlc.png" alt="vlc 10 Greatest Open Source Software Of 2009" width="595" height="552" />Fig.03: VLC is similar to QuickTime / Windows Media Player</p>
</div>
<p>Great media player which supports almost all formats (audio, video formats DVDs / VCDs, and various streaming protocols) and is stripped down to its most fundamental features (i.e. portable media player). A must have software for all anim and movie fans.</p>
<ul>
<li><a href="http://www.videolan.org/" target="_blank">Download VLC Media Player</a></li>
</ul>
<h2>#4: VirtualBox ( Virtualization )</h2>
<div id="attachment_6327"><a href="http://files.cyberciti.biz/uploads/tips/2009/12/virtualbox.png"><img title="VirtualBox runs on Windows, Linux, Macintosh and OpenSolaris hosts " src="http://files.cyberciti.biz/uploads/tips/2009/12/virtualbox.png" alt="virtualbox 10 Greatest Open Source Software Of 2009" width="595" height="559" /></a>Fig.04: VirtualBox is used for virtualization</p>
</div>
<p>Run Linux / MS-Windows or any other supported os directly without removing Windows, Linux, OpenSolaris or Macintosh (OS X) host operating systems. A professional class software that is freely available as Open Source Software under the terms of the GNU General Public License (GPL). I recommend this software to all users to try out Linux or learn Perl / Shell scripting using UNIX development environment. VirtualBox is similar to VMware workstation.</p>
<ul>
<li><a href="http://www.virtualbox.org/" target="_blank">Download VirtualBox</a></li>
</ul>
<h2>#5: Miro ( Internet TV )</h2>
<div id="attachment_6330"><a rel="attachment wp-att-6330" href="http://www.bowu.org/?attachment_id=6330"><img title="Linux BeelineTV, WebTV Like Software - Miro" src="http://files.cyberciti.biz/uploads/tips/2009/12/miro.png" alt="miro 10 Greatest Open Source Software Of 2009" width="595" height="446" /></a>Fig.05: Miro is used for Internet TV and as video player</p>
</div>
<p>Miro is a free, open source,  video player and podcast client. The official site described it as:</p>
<blockquote><p>Torrents made easy, RSS made beautiful, with tons of gorgeous HD video.</p></blockquote>
<p>I love Miro and I use it for Internet TV and video player which comes with a library of more than 6,000 Internet streams and podcasts.</p>
<ul>
<li><a href="http://www.getmiro.com/" target="_blank">Download Miro</a></li>
</ul>
<h2>#6: TrueCrypt ( Disk Encryption )</h2>
<div id="attachment_6333"><a rel="attachment wp-att-6333" href="http://www.bowu.org/?attachment_id=6333"><img title="Linux TrueCrypt Software is similar to ArchiCrypt Live / Keyparc" src="http://files.cyberciti.biz/uploads/tips/2009/12/truecrypt.png" alt="truecrypt 10 Greatest Open Source Software Of 2009" width="595" height="365" /></a>Fig:06: TrueCrypt is used for  disk encryption (image credit official website)</p>
</div>
<p>Free open-source disk encryption (real-time on-the-fly encryption) software for Windows, Mac OS X, and Linux (for Linux I prefer native disk encryption). From the wikipedia:</p>
<blockquote><p>It can create a virtual encrypted disk within a file or a device-hosted encrypted volume on either an individual partition or an entire storage device. It supports Microsoft Windows, Mac OS X and Linux (using FUSE) and encrypted volumes can be made portable. The version for Windows Vista or XP can encrypt the boot partition or entire boot drive and has the ability to create and run a hidden encrypted operating system whose existence is deniable.</p></blockquote>
<ul>
<li><a href="http://www.truecrypt.org/" target="_blank">Download TrueCrypt</a></li>
</ul>
<h2>#7: Calibre ( eBook Converter and Reader )</h2>
<div id="attachment_6339"><a rel="attachment wp-att-6339" href="http://www.bowu.org/?attachment_id=6339"><img title="Linux Calibre is similar to  BookReader, Microsoft Reader Software" src="http://files.cyberciti.biz/uploads/tips/2009/12/calibre.png" alt="calibre 10 Greatest Open Source Software Of 2009" width="595" height="444" /></a>Fig.07:  Calibre is used for: ebook converter / reader</p>
</div>
<p>calibre is a free and open source e-book library management application. It supports the following features:</p>
<ol>
<li> It manages your e-book collection for you. It can sort the books in your library by: Title, Author, Date added, Date published, Size, Rating, Series, etc.</li>
<li> Tags &#8211;  a flexible system for categorizing your collection however you like</li>
<li> Comments &#8211; a long form entry that you can use for book description, notes, reviews, etc.</li>
<li> Search local ebooks or over the Internet using title/author or ISBN.</li>
<li> E-book conversion</li>
<li> Syncing to e-book reader devices</li>
<li> Downloading news from the web and converting it into e-book form (e.g., NYT, TOI, ESPN etc).</li>
</ol>
<p>Without this software Sony or Amazon ebook reader is virtually useless for non-ebook format pdf reading.</p>
<ul>
<li><a href="http://calibre-ebook.com/" target="_blank">Download Calibre</a></li>
</ul>
<h2>#8: GnuCash ( Financial Management )</h2>
<div id="attachment_6345"><a rel="attachment wp-att-6345" href="http://www.bowu.org/?attachment_id=6345"><img title="Linux GnuCash is similar to Microsoft Money, Microsoft Office Accounting Software" src="http://files.cyberciti.biz/uploads/tips/2009/12/gnucash.png" alt="gnucash 10 Greatest Open Source Software Of 2009" width="580" height="483" /></a>Fig.08: GnuCash is used for financial management / accounting</p>
</div>
<p>GnuCash is personal and small-business financial-accounting software, freely licensed under the GNU GPL and available for GNU/Linux, BSD, Solaris, Mac OS X and Microsoft Windows. Personally I like it because of its rich functionality and easy of use. GnuCash is similar to Microsoft Money and it is used by accountant, small business/home user etc. Features:</p>
<ol>
<li> Double-entry bookkeeping</li>
<li> Scheduled Transactions</li>
<li> Mortgage and Loan Repayment Druid</li>
<li> Small Business Accounting Features</li>
<li> Transaction-Import Matching Support</li>
<li> Multi-Currency Transaction Handling</li>
<li> Stock/Mutual Fund Portfolios</li>
<li> Online Stock and Mutual Fund Quotes</li>
</ol>
<ul>
<li><a href="http://www.gnucash.org/" target="_blank">Download GNUCash</a></li>
</ul>
<h2>#9: GIMP ( Graphics / Simple Photo Editing )</h2>
<div id="attachment_6342"><a rel="attachment wp-att-6342" href="http://www.bowu.org/?attachment_id=6342"><img title="Linux GIMP is similar to Adobe Photoshop, Corel Paint Shop Pro, Paint.NET" src="http://files.cyberciti.biz/uploads/tips/2009/12/gimp.png" alt="gimp 10 Greatest Open Source Software Of 2009" width="595" height="343" /></a>Fig.09: GIMP quality photo retouching program</p>
</div>
<p>I&#8217;m not a professional artist/illustrator/designer/web designer (read as Photoshop expert), but gimp is used for simple photo editing of my personal work such as photo retouching, image composition, simple effects, image authoring, and much more.</p>
<ul>
<li><a href="http://www.gimp.org/" target="_blank">Download GIMP</a></li>
</ul>
<h2>#10: Audacity ( Sound Editor / Recorder )</h2>
<div id="attachment_6348"><a rel="attachment wp-att-6348" href="http://www.bowu.org/?attachment_id=6348"><img title="Linux Audacity is similar to GoldWave, Sound, SoundForge, WavePad Software" src="http://files.cyberciti.biz/uploads/tips/2009/12/audacity.png" alt="audacity 10 Greatest Open Source Software Of 2009" width="595" height="417" /></a>Fig.10: Audacity is used for audio / sound recorder &amp; sound editor</p>
</div>
<p>Audacity is a free all in one audio editor and recorder like GoldWave software. You can use Audacity to record live audio, convert tapes and records into digital recordings or CDs, and edit sound files or just create personal ringtons for mobile phones.</p>
<ul>
<li><a href="http://audacity.sourceforge.net/" target="_blank">Download Audacity</a></li>
</ul>
<h2>Rest&#8230;</h2>
<ul>
<li><a href="http://getfirefox.com/" target="_blank">Firefox 3.x</a> &#8211; nuff said!</li>
<li><a href="http://www.mozillamessaging.com/en-US/thunderbird/" target="_blank">Thunderbird 2.x</a> &#8211; Another amazing software from the Mozilla with tons of plug-ins for email client.</li>
<li><a href="http://www.openoffice.org/" target="_blank">OpenOffice</a> &#8211; Great Microsoft Office replacement.</li>
<li><a href="http://www.pidgin.im/" target="_blank">Pidgin</a> &#8211; IM all your friends in one place.</li>
<li><a href="http://www.mplayerhq.hu/" target="_blank">MPlayer</a> &#8211; Now supports most of the Bluray and HD-DVD codecs.</li>
<li><a href="http://nmap.org/" target="_blank">Nmap</a> &#8211;  The ultimate network exploration and security auditing tool.</li>
</ul>
<h2>My Favorite Software Of 2009:</h2>
<p>VirtualBox &#8211; It is a life saver for sys admin and perfect free software loaded with tons of features. It offers great performance and stability, and supports a wide-variety of guest operating systems.</p>
<p>This is my personal <strong>FOSS desktop software</strong> list and it is not absolutely definitive, so if you&#8217;ve got your own software, share in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bowu.org/open-source/10-greatest-open-source-software-of-2009.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
