<?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>OpenPeta &#187; Softwares and EBooks</title>
	<atom:link href="http://openpeta.com/index.php/category/softwares-and-ebooks/feed/" rel="self" type="application/rss+xml" />
	<link>http://openpeta.com</link>
	<description>Open Mind ....  Open Source ...</description>
	<lastBuildDate>Wed, 21 Jul 2010 03:20:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>University Timetabling System [ Unitime ] in Linux</title>
		<link>http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/</link>
		<comments>http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 07:39:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://openpeta.com/?p=926</guid>
		<description><![CDATA[Steps for Installing and Configuring University Timetabling System [Unitime] Prerequisites 1. Java 1.5 or latest [ http://java.sun.com ] 2. Mysql 5.x [ http://www.mysql.com ] 3. Tomcat 5.5.x [ http://tomcat.apache.org/] Installation [Everything has to be done in root mode ] 1. Download the Unitime source file from http://www.unitime.org/ webiste 2. Extarct the tar file into /opt/unitime [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Steps for Installing and Configuring University Timetabling System [Unitime]</strong><br />
Prerequisites</p>
<blockquote><p>1. Java 1.5 or latest [ http://java.sun.com ]<br />
2. Mysql 5.x [ http://www.mysql.com ]<br />
3. Tomcat 5.5.x [ http://tomcat.apache.org/]</p></blockquote>
<p><strong>Installation</strong> [Everything has to be done in root mode ]<br />
1. Download the Unitime source file from http://www.unitime.org/ webiste</p>
<p>2. Extarct the tar file into /opt/unitime folder [ #mkdir /opt/unitime]</p>
<blockquote><p><strong>#tar -xzvf unitime-3.1_bld248.tar.gz  -C /opt/unitime</strong></p></blockquote>
<p>3. Start your mysql server</p>
<blockquote><p><strong>#/etc/init.d/mysqld start</strong></p></blockquote>
<p>4. Import sql file into mysql server [located in /opt/unitime/doc/mysql folder]</p>
<p>[ Note : MySQL is case sensitive on table names  by default. To change this, add the following line to the /etc/my.cnf  file. This forces MySQL to translate all table names to lowercase before  executing the statement.]</p>
<blockquote>
<pre><strong>lower_case_table_names=1</strong>
</pre>
<p><strong># mysql -u root -p -f &lt;/opt/unitime/doc/mysql/schema.sql<br />
# mysql -u root -p  &lt;/opt/unitime/doc/mysql/woebegon-data.sql </strong></p></blockquote>
<p>5. Connect  mysql client and create the user for timetable database [ the default username is timetable and password is unitime ] , run the following queries in mysql client window.</p>
<blockquote><p><strong>update mysql.user set host=&#8217;localhost&#8217; where user=&#8217;timetable&#8217;;<br />
update mysql.user set password=PASSWORD(&#8216;unitime&#8217;) where user=&#8217;timetable&#8217;;<br />
commit;<br />
grant all on timetable.* to timetable;<br />
flush privileges;</strong></p></blockquote>
<p>I have given sample mysql client window and queries</p>
<blockquote><p>[root@localhost ~]# mysql -u root -p<br />
Enter password:<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 12 to server version: 5.0.22</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt; update mysql.user set host=&#8217;localhost&#8217; where user=&#8217;timetable&#8217;;<br />
Query OK, 1 row affected (0.02 sec)<br />
Rows matched: 1  Changed: 1  Warnings: 0</p>
<p>mysql&gt; update mysql.user set password=PASSWORD(&#8216;unitime&#8217;) where user=&#8217;timetable&#8217;;<br />
Query OK, 0 rows affected (0.00 sec)<br />
Rows matched: 1  Changed: 0  Warnings: 0</p>
<p>mysql&gt; commit;<br />
Query OK, 0 rows affected (0.00 sec)</p>
<p>mysql&gt; grant all on timetable.* to timetable;<br />
Query OK, 0 rows affected (0.02 sec)</p>
<p>mysql&gt; flush privileges;<br />
Query OK, 0 rows affected (0.02 sec)</p>
<p>mysql&gt; exit<br />
Bye</p></blockquote>
<p>6. Copy the UniTime.war file into tomcat webapps folder</p>
<blockquote><p><strong># cp /opt/unitime/web/UniTime.war /opt/apache-tomcat-5.5.29/webapps/</strong></p></blockquote>
<p>7. Create  a file called my_login.conf and add the following line</p>
<blockquote><p><strong>#gedit my_login.conf<br />
Timetabling {<br />
org.unitime.timetable.authenticate.jaas.DbAuthenticateModule required;<br />
};</strong></p></blockquote>
<p>Save the file and exit.</p>
<p>8. Add the following paths at end of /etc/profile file</p>
<blockquote><p><strong>#gedit /etc/profile<br />
export JAVA_OPTS=&#8221;${JAVA_OPTS} -Djava.security.auth.login.config=/opt/unitime/my_login.conf&#8221;<br />
export JAVA_OPTS=&#8221;${JAVA_OPTS} -Djava.awt.headless=true&#8221;<br />
export JAVA_OPTS=&#8221;${JAVA_OPTS} -Xmx512m&#8221;</strong></p></blockquote>
<p>9. Run the following command to set the path</p>
<blockquote><p><strong>#source /etc/profile</strong></p></blockquote>
<p>10. Now , its time to start your tomcat server</p>
<blockquote><p><strong>#/opt/apache-tomcat-5.5.29/bin/startup.sh</strong></p></blockquote>
<p>11. Open your web browser , type the follwoing address</p>
<blockquote><p><strong>http://localhost:8080/UniTime</strong></p></blockquote>
<p>12. If you get the login window , then evrything is ok , otherwise some problem with your installation. the default usename and password of unitime is</p>
<blockquote><p><strong>username : admin<br />
password : admin</strong><br />

<a href='http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/screenshot-timetabling-mozilla-firefox/' title='Screenshot-Timetabling - Mozilla Firefox'><img width="150" height="150" src="http://openpeta.com/wp-content/uploads/2010/06/Screenshot-Timetabling-Mozilla-Firefox-150x150.png" class="attachment-thumbnail" alt="Screenshot-Timetabling - Mozilla Firefox" title="Screenshot-Timetabling - Mozilla Firefox" /></a>
<a href='http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/screenshot-timetabling-mozilla-firefox-1/' title='Screenshot-Timetabling - Mozilla Firefox-1'><img width="150" height="150" src="http://openpeta.com/wp-content/uploads/2010/06/Screenshot-Timetabling-Mozilla-Firefox-1-150x150.png" class="attachment-thumbnail" alt="Screenshot-Timetabling - Mozilla Firefox-1" title="Screenshot-Timetabling - Mozilla Firefox-1" /></a>
<a href='http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/screenshot-timetabling-mozilla-firefox-2/' title='Screenshot-Timetabling - Mozilla Firefox-2'><img width="150" height="150" src="http://openpeta.com/wp-content/uploads/2010/06/Screenshot-Timetabling-Mozilla-Firefox-2-150x150.png" class="attachment-thumbnail" alt="Screenshot-Timetabling - Mozilla Firefox-2" title="Screenshot-Timetabling - Mozilla Firefox-2" /></a>
</p></blockquote>
<p>13. Have a fun with your university scheduling system !!!</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Programming &#8211; Resources</title>
		<link>http://openpeta.com/index.php/2010/04/open-source-programming-resources/</link>
		<comments>http://openpeta.com/index.php/2010/04/open-source-programming-resources/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 10:19:57 +0000</pubDate>
		<dc:creator>ANTHONIRAJ</dc:creator>
				<category><![CDATA[Open Source Programming]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=794</guid>
		<description><![CDATA[TEXT BOOKS [ Click on the links to download files] Open Source Web Development with LAMP Using Linux, Apache, MySQL Core Python Programming Practical Programming in TCl and TK Perl Programming REFERENCE BOOKS HTML BASICS Tag Basics Tag Reference W3C Html Tutorial Useful Html Tags JavaScript Reference PHP &#8211; MYSQL Emailing with PHP MySql CookBook [...]]]></description>
			<content:encoded><![CDATA[<p><strong>TEXT BOOKS [ Click on the links to download files]</strong></p>
<ol>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/mainbook1.zip" target="_blank">Open Source Web Development with LAMP Using Linux, Apache, MySQL</a></li>
<li><a href="http://www.openpeta.com/wp-content/uploads/2010/04/Core-Python-Programming.pdf" target="_blank">Core Python Programming</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/Practical-Programming-in-TCl-and-TK1.pdf" target="_blank">Practical Programming in TCl and TK</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/PerlIntroduction1.pdf" target="_blank">Perl Programming</a></li>
</ol>
<p><strong>REFERENCE BOOKS</strong></p>
<p><strong>HTML BASICS</strong></p>
<ol>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/HTML-Examples1.pdf" target="_blank">Tag Basics</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/HTML-TAG-REFERENCE1.pdf" target="_blank">Tag Reference</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/HTML-W3C-Tutorial1.pdf" target="_blank">W3C Html Tutorial</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/Useful-HTML-tags-and-their-attributes1.pdf" target="_blank">Useful Html Tags</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/JavaScript-Bible-5th-Edition-Quick-Reference1.pdf" target="_blank">JavaScript Reference</a></li>
</ol>
<p><strong>PHP &#8211; MYSQL</strong></p>
<ol>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/Emailing-with-PHP1.pdf" target="_blank">Emailing with PHP</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/MySql-CookBook1.pdf" target="_blank">MySql CookBook</a></li>
<li><a href="http://www.openpeta.com/wp-content/uploads/2010/04/Sams.zip" target="_blank">Sams Teach Yourself PHP, MySQL™ and Apache in 24 Hours</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/Web-Application-Developments-using-PHP-and-MYSQL1.zip" target="_blank">Web Application Developments using PHP and MYSQL</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/PHP-and-PostgreSQL1.pdf" target="_blank">PHP and PostgreSQL</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/PHP-Functions-Essential-Reference1.zip" target="_blank">PHP Functions Essential Reference</a></li>
</ol>
<p><strong>PYTHON AND TCL/TK</strong></p>
<ol>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/Learning-Python1.pdf" target="_blank">Learning Python</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/Python-2.5-Quick-Reference1.pdf" target="_blank">Python 2.5 Quick Reference</a></li>
<li><a href="http://openpeta.com/wp-content/uploads/2010/04/Tcl-and-the-Tk-Toolkit1.pdf" target="_blank">Tcl and the Tk Toolkit</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/04/open-source-programming-resources/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Elinks &#8211; Text Based Web Browser</title>
		<link>http://openpeta.com/index.php/2010/04/elinks-text-based-web-browser/</link>
		<comments>http://openpeta.com/index.php/2010/04/elinks-text-based-web-browser/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 00:13:28 +0000</pubDate>
		<dc:creator>ANTHONIRAJ</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=729</guid>
		<description><![CDATA[ELinks is a feature-rich program for browsing the web in text mode.  It is like enhanced Lynx and Links. Unlike Firefox , elinks will display only text from the web pages , all multimedia components such as image , audio , video , flash file are removed from the web page.  So the browsing speed [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">ELinks is a feature-rich program for browsing the web in text mode.  It is like enhanced Lynx and Links. Unlike Firefox , elinks will display only text from the web pages , all multimedia components such as image , audio , video , flash file are removed from the web page.  So the browsing speed is very fast comparing to normal web browsers. To install elinks in your Ubuntu machine , use the given command</p>
<blockquote>
<p style="padding-left: 60px;">sudo apt-get install elinks</p>
</blockquote>
<div id="attachment_730" class="wp-caption aligncenter" style="width: 310px"><a href="http://openpeta.com/wp-content/uploads/2010/04/Screenshot2.png"><img class="size-medium wp-image-730" title="Screenshot" src="http://www.openpeta.com/wp-content/uploads/2010/04/Screenshot-300x169.png" alt="E-Links Installation" width="300" height="169" /></a><p class="wp-caption-text">E-Links Installation</p></div>
<p><strong>Features</strong></p>
<ul>
<li>Lots of protocols (local files, finger, HTTP(S), FTP, IPv4/6 etc.)</li>
<li>Internationalized domain names</li>
<li>Persistent cookies, HTTP authentication and proxy authentication</li>
<li>Tabbed browsing, good looking menus and dialogs, and key-binding manager</li>
<li>History browsing and typeahead searches</li>
<li>Forms history and completion, and history in commonly used input dialogs</li>
<li>CSS support and support for browser scripting (Perl, Lua, Guile etc.)</li>
<li>Tables and frames rendering, and configurable color support</li>
<li>Compressed and background (non-blocking) downloads, and download resuming</li>
</ul>
<div id="attachment_731" class="wp-caption aligncenter" style="width: 310px"><a href="http://openpeta.com/wp-content/uploads/2010/04/Screenshot-ELinks2.png"><img class="size-medium wp-image-731" title="Screenshot-ELinks" src="http://www.openpeta.com/wp-content/uploads/2010/04/Screenshot-ELinks-300x209.png" alt="" width="300" height="209" /></a><p class="wp-caption-text">Home Page</p></div>
<p><strong>Shortcut Keys</strong></p>
<ol>
<li>Space                   &#8212;  Move downwards by a page (<em>move-page-down</em>)</li>
<li>D             &#8212;                 Open download manager (<em>download-manager</em>)</li>
<li>d              &#8212;               Download the current link (<em>link-download</em>)</li>
<li>Delete    &#8212;   Scroll down (<em>scroll-down</em>)</li>
<li>Enter     &#8212;   Follow the current link (<em>link-follow</em>)</li>
<li>F10                      &#8212;   Open the File menu (<em>file-menu</em>)</li>
<li>Tab        &#8212;   Move to the next frame (<em>frame-next</em>)</li>
<li>Shift-Tab  &#8212;                Move to the previous frame (<em>frame-prev</em>)</li>
<li>h                 &#8212;                 Open history manager (<em>history-manager</em>)</li>
<li>t                                &#8212;   Open a new tab (<em>open-new-tab</em>)</li>
</ol>
<div id="attachment_732" class="wp-caption aligncenter" style="width: 310px"><a href="http://openpeta.com/wp-content/uploads/2010/04/Screenshot-Ubuntu-One-A-New-Storage-Application-OPEN-PETA-ELinks1.png"><img class="size-medium wp-image-732" title="Screenshot-Ubuntu One - A New Storage Application | OPEN PETA - ELinks" src="http://www.openpeta.com/wp-content/uploads/2010/04/Screenshot-Ubuntu-One-A-New-Storage-Application-OPEN-PETA-ELinks-300x209.png" alt="Sample Page from Openpeta.com" width="300" height="209" /></a><p class="wp-caption-text">Sample Page from Openpeta.com</p></div>
<p>For more information , please refer <a href="http://elinks.or.cz/documentation/manpages/elinkskeys.5.html" target="_blank">http://elinks.or.cz/documentation/manpages/elinkskeys.5.html</a> url.</p>
<p><strong>Other Text Based Browsers</strong></p>
<ul>
<li><a title="Lynx (web browser)" href="http://en.wikipedia.org/wiki/Lynx_%28web_browser%29">Lynx</a></li>
<li><a title="Net-Tamer" href="http://en.wikipedia.org/wiki/Net-Tamer">Net-Tamer</a></li>
<li><a title="W3m" href="http://en.wikipedia.org/wiki/W3m">w3m</a></li>
<li><a title="WebbIE" href="http://en.wikipedia.org/wiki/WebbIE">WebbIE</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/04/elinks-text-based-web-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Appnr &#8211; A Web Based Debian Package Manager</title>
		<link>http://openpeta.com/index.php/2010/03/appnr-a-web-based-debian-package-manager/</link>
		<comments>http://openpeta.com/index.php/2010/03/appnr-a-web-based-debian-package-manager/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 22:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/index.php/appnr-a-web-based-debian-package-manager/</guid>
		<description><![CDATA[Appnr is a web-based package manager that install applications on Ubuntu. This is a web interface for APT system, and the package is downloaded and installed from Ubuntu/Third-party repositories. The AptURL Protocol Handler and a web browser support are required to install packages. Steps are given here to install the apturl package [if using APT-based [...]]]></description>
			<content:encoded><![CDATA[<p>Appnr is a web-based package manager that install applications on Ubuntu. This is a web interface for APT system, and the package is downloaded and installed from Ubuntu/Third-party repositories.</p>
<p><a href="http://openpeta.com/wp-content/uploads/2010/03/ScreenshotAppnrGetUbuntuApplicationsMozillaFirefox2.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="Screenshot-Appnr - Get Ubuntu Applications! - Mozilla Firefox" src="http://openpeta.com/wp-content/uploads/2010/03/ScreenshotAppnrGetUbuntuApplicationsMozillaFirefox_thumb2.png" border="0" alt="Screenshot-Appnr - Get Ubuntu Applications! - Mozilla Firefox" width="244" height="126" /></a></p>
<p>The AptURL Protocol Handler and a web browser support are required to install packages. Steps are given here to install the apturl package [if using APT-based Linux system such as Ubuntu, Debian, Linux Mint, and gOS].</p>
<p><strong>Install from Synaptic Package Manager</strong></p>
<blockquote><p>Go to <em>Synaptic Package Manager</em> and find <em>apturl</em>.<br />
When you have found it check it and click on Apply Changes.</p></blockquote>
<p><strong>Install from Terminal</strong></p>
<blockquote><p><em>sudo apt-get install apturl</em></p></blockquote>
<p><strong>Enable the AptURL protocol</strong> in Web Browsers</p>
<p><strong><em>*** Firefox ***</em></strong></p>
<ul>
<li>Type in about:config in the location bar.</li>
<li>Right click, select New -&gt; String<br />
Type in network.protocol-handler.app.apt in the name of string, and type  in /usr/bin/apturl in the value.</li>
<li>One more right click, select New -&gt; String<br />
Type in network.protocol-handler.app.apt+http in the name of string, and type in /usr/bin/apturl in the value.</li>
</ul>
<p><strong><em>*** Opera ***</em></strong></p>
<ul>
<li>Open Preferences.<br />
Tools -&gt; Preferences -&gt; Advanced -&gt; Programs</li>
<li>Click “Add” button.<br />
Type in “apt” in the “Protocol” field,<br />
and type in “apturl” in the “Open with other application” field.<br />
Click “OK” button.</li>
<li>One more click “Add” button.<br />
Type in “apt+http” in the “Protocol” field,<br />
and type in “apturl” in the “Open with other application” field.<br />
Click “OK” button.</li>
</ul>
<p>After finishing your configuration , You can use <a href="http://www.appnr.com">http://www.appnr.com</a> search page to browse the package manager. This web based package browser will automatically find and install the dependency software of a given package.</p>
<p>Reference : <a href="http://www.appnr.com">http://www.appnr.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/03/appnr-a-web-based-debian-package-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg and Mobile Media Converter [MMC] &#8211; Convert &quot;Any to Any Video Formats&quot;</title>
		<link>http://openpeta.com/index.php/2009/10/ffmpeg-and-mobile-media-converter-mmc-convert-any-to-any-video-formats/</link>
		<comments>http://openpeta.com/index.php/2009/10/ffmpeg-and-mobile-media-converter-mmc-convert-any-to-any-video-formats/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 05:55:41 +0000</pubDate>
		<dc:creator>ANTHONIRAJ</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=530</guid>
		<description><![CDATA[Sometimes i wonder the power of Open Source Tools and its functionality . How the group of people are developing these much of effective software to world ? . Because forming one open source community is not so easy . Last month i was trying to find some good tools for converting video into one [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="background-color: #ffffff; ">Sometimes i wonder the power of Open Source Tools and its functionality . How the group of people are developing these much of effective software to world ? . Because forming one open source community is not so easy . Last month i was trying to find some good tools for converting video into one format to other for my Sony Ericsson Mobile Phone . I know that ffmpeg is the powerful command line tool for converting video. but the problem is using syntax of it . There are separate syntax for each and every video format conversions. i found those syntax and also i thought of finding software which is using ffmpeg in back end. Finally i got Mobile Media Converter [ MMC ] . It is a graphical interface for ffmpeg command and let allow user easily convert from one video format to other without knowing the syntax of ffmpeg. The result of converted video is as good as compared to other conversion software . You can convert the following audio and video fie format using MMC</span></p>
<ol>
<li>Mobile Audio &#8211; AMR</li>
<li>Mobile Video &#8211;  3GP video</li>
<li>MP3 Audio [ .mp3 ]</li>
<li>Windows Media Audio</li>
<li>ogg vorbis audio</li>
<li>Wave Audio [ .wav or .au ]</li>
<li>MPEG 1/2 Video</li>
<li>AVI Video</li>
<li>Windows Media Video [ .wmv ]</li>
<li>Flash Video [ .flv ]</li>
<li>Quick Time Video</li>
<li>iPhone or iPod MP4 video [ .mp4 ]</li>
<li>PSP MP4 video</li>
</ol>
<p>Features of Mobile Media Converter</p>
<ul>
<li><span style="background-color: #ffffff;">Very simple to use for beginners also.</span></li>
<li><span style="background-color: #ffffff;">Supports All Types of Audio and Video formats </span></li>
<li><span style="background-color: #ffffff;">Multiple file conversion </span></li>
<li><span style="background-color: #ffffff;">User can  extract or download video from Youtube URL.</span></li>
<li><span style="background-color: #ffffff;">User can manually change the size of the video and audio bit rate etc .</span></li>
</ul>
<p>Demerits of MMC</p>
<ul>
<li><span style="background-color: #ffffff;">MKV [ .mkv ] video format is not supported [ hope this feature would be added in future version ]</span></li>
<li><span style="background-color: #ffffff;">There is no pause and resume option for conversion</span></li>
</ul>
<p>Installing MMC</p>
<p>It can be downloaded from <a href="http://www.miksoft.net/mobileMediaConverter.htm" target="_blank">http://www.miksoft.net/mobileMediaConverter.htm</a> this web site . MMC is available for both Linux and Windows operating systems . so installation is very simple with one click . here i have given some snapshots for your reference</p>
<div id="attachment_541" class="wp-caption aligncenter" style="width: 310px"><a href="http://openpeta.com/wp-content/uploads/2009/10/mmc11.png"><img class="size-medium wp-image-541" title="Mobile Media Converter" src="http://www.openpeta.com/wp-content/uploads/2009/10/mmc1-300x187.png" alt="Mobile Media Converter" width="300" height="187" /></a><p class="wp-caption-text">Mobile Media Converter</p></div>
<div id="attachment_542" class="wp-caption aligncenter" style="width: 310px"><a href="http://openpeta.com/wp-content/uploads/2009/10/mmc22.png"><img class="size-medium wp-image-542" title="MMC - Multiple File Conversion And Settings" src="http://www.openpeta.com/wp-content/uploads/2009/10/mmc2-300x187.png" alt="MMC - Multiple File Conversion And Settings" width="300" height="187" /></a><p class="wp-caption-text">MMC - Multiple File Conversion And Settings</p></div>
<div id="attachment_543" class="wp-caption aligncenter" style="width: 310px"><a href="http://openpeta.com/wp-content/uploads/2009/10/mmc41.png"><img class="size-medium wp-image-543" title="MMC - Conversion Process" src="http://www.openpeta.com/wp-content/uploads/2009/10/mmc4-300x187.png" alt="MMC - Conversion Process" width="300" height="187" /></a><p class="wp-caption-text">MMC - Conversion Process</p></div>
<p>Just try this software instead of using paid video conversion tools . you will surely  feel the power of open source &#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/10/ffmpeg-and-mobile-media-converter-mmc-convert-any-to-any-video-formats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annonymous Surfing Using  Tor Open Source Software</title>
		<link>http://openpeta.com/index.php/2009/09/annonymous-surfing-using-tor-open-source-software/</link>
		<comments>http://openpeta.com/index.php/2009/09/annonymous-surfing-using-tor-open-source-software/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 14:11:08 +0000</pubDate>
		<dc:creator>ANTHONIRAJ</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>
		<category><![CDATA[Weblog]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=492</guid>
		<description><![CDATA[Anonymous is everywhere. Anonymous has no identity. Anonymous is an unstoppable force. Anonymous doesn&#8217;t fall in battle, anyway. These are all some famous quotes about anonymous , lets get into our topic . Anonymous browsing or Proxy Surfing  is simply browsing the World Wide Web with most of your identity hidden. Proxy surfing is necessary [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Anonymous is everywhere.<br />
Anonymous has no identity.<br />
Anonymous is an unstoppable force.<br />
Anonymous doesn&#8217;t fall in battle, anyway.</p></blockquote>
<p style="text-align: justify;">These are all some famous quotes about anonymous , lets get into our topic . Anonymous browsing or Proxy Surfing  is simply browsing the World Wide Web with most of your identity hidden. Proxy surfing is necessary for two cases</p>
<ol>
<li>Securing Information</li>
<li>Freedom to browse all websites from Internet</li>
</ol>
<p style="text-align: justify;"><strong>Why do we need it? </strong><br />
<strong>Case 1 : Securing Information</strong><br />
If you are connected with network or Internet , your computer or network device will be assigned by one unique IP address , using that address only the computers can transfer the data from one to another and also all information might be collected such as your location , packets information, personal data. so we need to protect our data.</p>
<p style="text-align: justify;"><strong>Case 2: Freedom to browse all websites from Internet</strong><br />
In college or school , Management will use proxy server to ban some websites for security purpose. Its necessary to prevent student to browse an inappropriate websites but due to this they cannot surf all the information from Internet. Some times the proxy server will block some important websites. Internet is like a universe , There would be good and bad things in it . You are the responsible person to collect the information based on your need.so freedom for browsing is needed for this case.</p>
<p style="text-align: justify;"><strong>How to do it ?</strong><br />
User can install proxy software to browse all information from Internet . In our case lets take Ubuntu Linux for installing tor.  The following software are needed for proxy surfing in Ubuntu Linux Operating System .</p>
<ol>
<li> tor  &#8211; The Online Router</li>
<li> privoxy -  A web based program often used with tor</li>
<li> torbutton  &#8211; Firefox add-on for tor</li>
</ol>
<p style="text-align: justify;">The tor package using socks 5 connection which is specially used for proxy server communication . You can install these packages using synaptic package manager in Ubuntu or manually download the following files and just click on it</p>
<ul>
<li><a href="http://www.openpeta.com/wp-content/uploads/2009/09/libc6-udeb_2.9-4ubuntu6_i386.udeb" target="_blank">Libc6</a></li>
<li><a href="http://www.openpeta.com/wp-content/uploads/2009/09/libevent1_1.3e-3_i386.deb" target="_blank">Lib Event</a></li>
<li><a href="http://www.openpeta.com/wp-content/uploads/2009/09/tsocks_1.8beta5-9.1_i386.deb" target="_blank">Tsocks</a></li>
<li><a href="http://www.openpeta.com/wp-content/uploads/2009/09/tor_0.2.1.19-1jaunty+1_i386.deb" target="_blank">Tor</a></li>
<li><a href="http://www.openpeta.com/wp-content/uploads/2009/09/privoxy_3.0.9-1_i386.deb" target="_blank">privoxy</a></li>
<li><a href="http://www.openpeta.com/wp-content/uploads/2009/09/tsocks_1.8beta5-9.1_i3861.deb" target="_blank"></a><a href="http://www.openpeta.com/wp-content/uploads/2009/09/torbutton-1.2.2-fx.xpi">torbutton-1.2.2-fx</a></li>
</ul>
<p>After installing these packages, Just open the Firefox and enable the tor button which would be in bottom-left corner. If you are using some other browser like Opera then manually assign the Ip address in Network Option .</p>
<div id="attachment_503" class="wp-caption aligncenter" style="width: 310px"><a href="http://openpeta.com/wp-content/uploads/2009/09/torip1.png"><img class="size-medium wp-image-503" title="Tor manual IP " src="http://www.openpeta.com/wp-content/uploads/2009/09/torip-300x187.png" alt="Tor manual IP " width="300" height="187" /></a><p class="wp-caption-text">Tor manual IP </p></div>
<p style="text-align: justify;">Finally We need to add two lines in privoxy config file . Goto  /etc/ptivoxy/config file in root mode</p>
<blockquote>
<p style="text-align: justify;">#sudo su</p>
<p style="text-align: justify;">#gedit /etc/privoxy/config</p>
</blockquote>
<p style="text-align: justify;">In section 4.1 add the following line</p>
<p style="text-align: justify;">Your-IP-address :8118</p>
<p style="text-align: justify;">In my case</p>
<blockquote>
<p style="text-align: justify;"><strong>192.168.34.23:8118</strong></p>
</blockquote>
<p style="text-align: justify;">Add the following at end of the config file</p>
<blockquote>
<p style="text-align: justify;"><strong>forward-socks4a / localhost:9050 .</strong></p>
</blockquote>
<p style="text-align: justify;">Note : Space and dot also very important , do not mistype anything . I have attached sample configuration file for your reference</p>
<p style="text-align: justify;"><a href="http://www.openpeta.com/wp-content/uploads/2009/09/config" target="_blank">Click hete to download sample privoxy config file</a></p>
<p style="text-align: justify;">Enjoy the freedom of browsing the INTERNET &#8230;..</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/09/annonymous-surfing-using-tor-open-source-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Record Your Desktop Activities With recordMyDesktop</title>
		<link>http://openpeta.com/index.php/2009/06/record-your-desktop-with-recordmydesktop/</link>
		<comments>http://openpeta.com/index.php/2009/06/record-your-desktop-with-recordmydesktop/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 04:18:08 +0000</pubDate>
		<dc:creator>ANTHONIRAJ</dc:creator>
				<category><![CDATA[Softwares and EBooks]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=320</guid>
		<description><![CDATA[recordMyDesktop is the open source software written in C language that performs the basic tasks of screen capturing and encoding. It is used for showing demo about the particular software and giving lecture about the topic etc &#8230; The screen capture activities would be saved in .ogv open movie format which can be easily playable [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">recordMyDesktop is the open source  software written in C language that performs the basic tasks of screen capturing and encoding. It is used for showing demo about the particular software and giving lecture about the topic etc &#8230; The screen capture activities would be saved in .ogv open movie format which can be easily playable in any player and also we can convert .ogv to any other movie file format like flash , .avi . It can be downloaded from the following URL</p>
<p style="text-align: center;"><a href="http://recordmydesktop.sourceforge.net/downloads.php" target="_blank">http://recordmydesktop.sourceforge.net/downloads.php</a></p>
<p style="text-align: left;"><strong>Features of recodMyDesktop</strong></p>
<ul>
<li> You can capture the specific area [ Window ]  or entire desktop</li>
<li>Video and Audio can be recorded simultaneously [ .ogv movie file ]</li>
<li>Both command [recordMyDesktop] and graphical user interface [python or GTK version ] are available</li>
<li>Compatible with most of Linux Distributions [ Ubuntu , OpenSuse , Fedora , freeBSD , Salckware ]</li>
<li>Its very fast comparing with other screen recoding software</li>
</ul>
<p style="text-align: center;">
<p style="text-align: left;">
<div id="attachment_324" class="wp-caption alignnone" style="width: 533px"><a href="http://www.openpeta.com/wp-content/uploads/2009/06/record.gif"><img class="size-full wp-image-324" title="recordMyDesktop" src="http://www.openpeta.com/wp-content/uploads/2009/06/record.gif" alt="ScreenShot" width="523" height="311" /></a><p class="wp-caption-text">ScreenShot</p></div>
<p style="text-align: left;"><strong>Installation Procedure</strong></p>
<p style="text-align: left;"><strong>For Debian Based [ E.g. Ubuntu ] Users</strong></p>
<ol>
<li>Install using synaptic package manager or</li>
<li>Type the given command in terminal</li>
</ol>
<blockquote><p># sudo apt-get install gtk-recordMyDesktop</p></blockquote>
<p style="text-align: left;"><strong>For RPM Based [ E.g. Fedora ] User</strong></p>
<ol>
<li>Install using Add and Remove Packages or</li>
<li>Type the given command in terminal</li>
</ol>
<blockquote><p>#su</p>
<p>[Type your password]</p>
<p>#yum install gtk-recordMyDesktop</p></blockquote>
<p><strong>For Command Line Users</strong></p>
<p>1. Download the source and install in your system</p>
<blockquote><p># tar -xzvf recordmydesktop-0.3.8.1.tar.gz</p>
<p># cd recordmydesktop-0.3.8.1</p>
<p># ./configure</p>
<p># make</p>
<p># make install</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/06/record-your-desktop-with-recordmydesktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You Tube Downloader in Linux</title>
		<link>http://openpeta.com/index.php/2009/05/you-tube-downloader-in-linux/</link>
		<comments>http://openpeta.com/index.php/2009/05/you-tube-downloader-in-linux/#comments</comments>
		<pubDate>Wed, 20 May 2009 14:55:03 +0000</pubDate>
		<dc:creator>somnath</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=182</guid>
		<description><![CDATA[Tired of slow downloading speed for you tube in Windows? Use Linux!!! Install gvdown from http://linux.wareseeker.com/free-gvdown-0.6.5. Its written in Python Easy to install &#38; use. AFter installation, open terminal &#38; type gvdown or select from Applications-&#62;Internet-&#62;GVDOWN-VideoDownloader. I prefer opning from terminal because if it gets stuck in between, the message will be displayed in Terminal.]]></description>
			<content:encoded><![CDATA[<p>Tired of slow downloading speed for you tube in Windows? Use Linux!!! Install gvdown from</p>
<p><a title="http://linux.wareseeker.com/free-gvdown-0.6.5" href="http://linux.wareseeker.com/free-gvdown-0.6.5" target="_blank">http://linux.wareseeker.com/free-gvdown-0.6.5. </a></p>
<p>Its written in Python</p>
<p>Easy to install &amp; use. AFter installation, open terminal &amp; type gvdown or select from Applications-&gt;Internet-&gt;GVDOWN-VideoDownloader. I prefer opning from terminal because if it gets stuck in between, the message will be displayed in Terminal.</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/05/you-tube-downloader-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Linux Books) : Linux Administration &#8211; Necessary EBooks</title>
		<link>http://openpeta.com/index.php/2007/12/linux-books-linux-administration-necessary-ebooks/</link>
		<comments>http://openpeta.com/index.php/2007/12/linux-books-linux-administration-necessary-ebooks/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 11:03:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Softwares and EBooks]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/2007/12/15/linux-books-linux-administration-necessary-ebooks/</guid>
		<description><![CDATA[You can download Following Linux EBooks Fromhttp://www.esnips.com/web/amalantonyraj-LinuxBooks Book Details1.Linux Resource Administration Guide2.Linux Red Hat Security and Optimization3.Linux Programming Unleashed4.Linux Networking HOWTO5.Linux Kernel Module Programming Guide6.Linux Kernel Internals7.Linux Kernel Internals(1997)8.Linux Kernel Development Second Edition Application Tuning Guide9.Linux Installation and Getting Started10.Linux in a Nutshell, 4th Edition11.Linux FailSafe Programmer&#8217;s Guide12.Linux FailSafe Administrator&#8217;s Guide13.Linux Device Drivers &#8211; 3nd [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:verdana;">You can download Following Linux EBooks From</span><br /><span style="font-family:verdana;"><a href="http://www.esnips.com/web/amalantonyraj-LinuxBooks" target="_new">http://www.esnips.com/web/amalantonyraj-LinuxBooks</a></p>
<p><span style="font-weight:bold;">Book Details</span><br />1.Linux Resource Administration Guide<br />2.Linux Red Hat Security and Optimization<br />3.Linux Programming Unleashed<br />4.Linux Networking HOWTO<br />5.Linux Kernel Module Programming Guide<br />6.Linux Kernel Internals<br />7.Linux Kernel Internals(1997)<br />8.Linux Kernel Development Second Edition Application Tuning Guide<br />9.Linux Installation and Getting Started<br />10.Linux in a Nutshell, 4th Edition<br />11.Linux FailSafe Programmer&#8217;s Guide<br />12.Linux FailSafe Administrator&#8217;s Guide<br />13.Linux Device Drivers &#8211; 3nd Edition<br />14.Linux Device Drivers &#8211; 2nd Edition<br />15.Linux Clustering &#8211; Building and Maintaining Linux Clusters<br />16.Linux Client Migration Cookbook, version 2<br />17.Linux Client Migration Cookbook, version 2<br />18.Linux C Programming HOWTO<br />19.Linux Bible RedHat<br />20.Linux Administration Made Easy (1)<br />21.Learning the Bash Shell<br />22.Learning the vi Editor, 6th Edition<br />23.Learning RedHat Linux<br />24.Learning Linux &#8211; Collection of 12 Ebooks<br />25.kernel-doc-nano-HOWTO<br />26.Interprocess Communications in Linux<br />27.Integrating Linux and Windows<br />28.Hungry Minds-Debian.GNU-Linux.Bible<br />29.Debian Linux Cookbook &#8211; Tips And Techniques For Everyday Use<br />30.Debian GNU-Linux Bible<br />31.Configuration and Operations Guide<br />32.Comprehensive System Accounting for Linux<br />33.Complete Linux Command Reference<br />34.Building Embedded Linux Systems<br />35.SUSE Linux Reference Book<br />36.Basic UNIX Tutorial<br />37.Application Tuning Guide<br />38.Advanced Cluster Environment Booklet<br />39.Advance-Bash-Scripting-guide<br />40.Practical Uses For Open Source Software<br />41.Firewalls and Internet Security<br />42.Advanced Linux Networking<br />43.100 Linux Tips &amp; Tricks<br />44.Linux Newbie Administrator Guide<br />45.Linux Certification Bible<br />46.Linux Network Administrators Guide<br />47.Slackware Linux Unleashed<br />48.RHCE &#8211; RedHat Certified Engineer Study Guide<br />49.Hack Proofing Linux<br />50.UNIX Cook Book<br />51.Programming Linux Games<br />52.Advanced Linux Programming<br />53.Debian The Perfect Setup<br />54.Red Hat Linux Networking and System Administration</span></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2007/12/linux-books-linux-administration-necessary-ebooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
