<?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; Introduction</title>
	<atom:link href="http://openpeta.com/index.php/category/introduction/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>Creating Java Servlet Web Application using Netbeans</title>
		<link>http://openpeta.com/index.php/2009/05/creating-java-servlet-web-application-using-netbeans/</link>
		<comments>http://openpeta.com/index.php/2009/05/creating-java-servlet-web-application-using-netbeans/#comments</comments>
		<pubDate>Wed, 27 May 2009 01:26:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=105</guid>
		<description><![CDATA[Step1: Creating New Project a) Goto File-&#62;New Project ( One window will open) b) In Project Window , Select Web -&#62; Web Application c) Select Next d) Enter the Name of the Project [Eg. MyServlet] and path e) Select Next f) Select the J2EE version and Server which you want to deploy the web Application [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Step1: Creating New Project</strong><br />
a) Goto File-&gt;New Project ( One window will open)<br />
b) In Project Window , Select Web -&gt; Web Application<br />
c) Select Next<br />
d) Enter the Name of the Project [Eg. MyServlet] and path<br />
e) Select Next<br />
f) Select the J2EE version and Server which you want to<br />
deploy the web Application<br />
[Eg : J2EE5 and Tomcat 6.1]</p>
<p>g) Finish the wizard.</p>
<p><strong>Format of Servlet Project</strong></p>
<p>MyServlet (Project Name)<br />
|<br />
|_Web Pages (create html,jsp files here)<br />
|<br />
|-Configuration Files (configure web.xml file)<br />
|<br />
|-Server Resources<br />
|<br />
|-Source Package (create java servlet here)<br />
|<br />
|_Test packages<br />
|<br />
|-Libraries (Add external jar file here)<br />
|<br />
|-Test Libraries</p>
<p><strong>Step 2 : Creating JSP or HTML file</strong><br />
a) Right click on the Web Pages Folder<br />
b) Select New -&gt; HTML option from the pop up window.<br />
c) Type the name of your html page.<br />
d) Finish the wizard.</p>
<p>Eg. select.html</p>
<pre lang ="html" >

&lt;form action="SelectDetails" method="get"&gt;Select the Branch
&lt;select name="branch"&gt;
&lt;option value="IT"&gt; B.Tech - IT &lt;/option&gt;
&lt;option value="CSE"&gt; B.Tech - CSE &lt;/option&gt;
&lt;option value="ECE"&gt; B.Tech - ECE &lt;/option&gt;
&lt;option value="MECH"&gt; B.Tech - Mech &lt;/option&gt;
&lt;/select&gt;
&lt;input type="submit" value="GetDetails" /&gt;
&lt;/form&gt;
</pre>
<p><strong>Step 3: MySQL Database : Check Table Name : student</strong><br />
id       name        branch<br />
1        Amar        IT<br />
2        Amit         CSE<br />
3         Antony       MECH<br />
4        Anbu          ECE<br />
103      Sree            MECH<br />
102       Karthick  IT<br />
104      Deepan        ECE<br />
105      Moorthy   CSE</p>
<p><strong>Step 4: Add MySQL Jconnector jar file under &#8220;Libraries&#8221; foleder</strong><br />
Libraries -&gt; Right Click -&gt; Select Add New Jar File / Folder<br />
My Path : /media/Backup/mysql-connector-java-5.1.6-bin.jar</p>
<p><strong>Step 5: Creating Servlet</strong><br />
a) Right click on the Source Package Folder<br />
b) Select New -&gt; Servlet option from the pop up window.<br />
c) Type the name of your html page.<br />
d) Finish the wizard.</p>
<p><strong>Eg:SelectDetails.java</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.io.IOException</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.io.PrintWriter</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.Connection</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.DriverManager</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.ResultSet</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.Statement</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">javax.servlet.ServletException</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">javax.servlet.http.HttpServlet</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">javax.servlet.http.HttpServletRequest</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">javax.servlet.http.HttpServletResponse</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> SelectDetails <span style="color: #000000; font-weight: bold;">extends</span> HttpServlet <span style="color: #009900;">&#123;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">protected</span> <span style="color: #000066; font-weight: bold;">void</span> processRequest<span style="color: #009900;">&#40;</span>HttpServletRequest request, HttpServletResponse response<span style="color: #009900;">&#41;</span>
            <span style="color: #000000; font-weight: bold;">throws</span> ServletException, <span style="color: #003399;">IOException</span> <span style="color: #009900;">&#123;</span>
        response.<span style="color: #006633;">setContentType</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;text/html;charset=UTF-8&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003399;">PrintWriter</span> out <span style="color: #339933;">=</span> response.<span style="color: #006633;">getWriter</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003399;">Connection</span> conn <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #003399;">String</span> branch <span style="color: #339933;">=</span> request.<span style="color: #006633;">getParameter</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;branch&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #003399;">String</span> userName <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;root&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #003399;">String</span> password <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;123456&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #003399;">String</span> url <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;jdbc:mysql://localhost/Check&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #000000; font-weight: bold;">Class</span>.<span style="color: #006633;">forName</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;com.mysql.jdbc.Driver&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">newInstance</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            conn <span style="color: #339933;">=</span> <span style="color: #003399;">DriverManager</span>.<span style="color: #006633;">getConnection</span><span style="color: #009900;">&#40;</span>url, userName, password<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #003399;">Statement</span> s <span style="color: #339933;">=</span> conn.<span style="color: #006633;">createStatement</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            s.<span style="color: #006633;">executeQuery</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT id, name FROM student where branch = '&quot;</span> <span style="color: #339933;">+</span> branch <span style="color: #339933;">+</span> <span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #003399;">ResultSet</span> rs <span style="color: #339933;">=</span> s.<span style="color: #006633;">getResultSet</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #000000; font-weight: bold;">while</span> <span style="color: #009900;">&#40;</span>rs.<span style="color: #006633;">next</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000066; font-weight: bold;">int</span> idVal <span style="color: #339933;">=</span> rs.<span style="color: #006633;">getInt</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;id&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #003399;">String</span> nameVal <span style="color: #339933;">=</span> rs.<span style="color: #006633;">getString</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;name&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
                out.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;id = &quot;</span> <span style="color: #339933;">+</span> idVal <span style="color: #339933;">+</span> <span style="color: #0000ff;">&quot;, name = &quot;</span> <span style="color: #339933;">+</span> nameVal <span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;   &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
rs.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
s.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><span style="color: #003399;">Exception</span> e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
out.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>e.<span style="color: #006633;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">finally</span> <span style="color: #009900;">&#123;</span>
out.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>conn <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
                    conn.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                    out.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Database connection terminated&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><span style="color: #003399;">Exception</span> e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #009900;">&#125;</span>
            <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">protected</span> <span style="color: #000066; font-weight: bold;">void</span> doGet<span style="color: #009900;">&#40;</span>HttpServletRequest request, HttpServletResponse response<span style="color: #009900;">&#41;</span>
            <span style="color: #000000; font-weight: bold;">throws</span> ServletException, <span style="color: #003399;">IOException</span> <span style="color: #009900;">&#123;</span>
        processRequest<span style="color: #009900;">&#40;</span>request, response<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">protected</span> <span style="color: #000066; font-weight: bold;">void</span> doPost<span style="color: #009900;">&#40;</span>HttpServletRequest request, HttpServletResponse response<span style="color: #009900;">&#41;</span>
            <span style="color: #000000; font-weight: bold;">throws</span> ServletException, <span style="color: #003399;">IOException</span> <span style="color: #009900;">&#123;</span>
        processRequest<span style="color: #009900;">&#40;</span>request, response<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>Step 4 : Run the project.</strong><br />
URL =&gt;  <em>http://localhost:8084/MyServlet/select.html</em></p>
<p><em><strong>Output for CSE<br />
id = 2, name = Amit<br />
id = 105, name = Moorthy</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/05/creating-java-servlet-web-application-using-netbeans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Necessary Free and Open Source Softwares</title>
		<link>http://openpeta.com/index.php/2009/03/linux-necessary-free-and-open-source-softwares/</link>
		<comments>http://openpeta.com/index.php/2009/03/linux-necessary-free-and-open-source-softwares/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 12:13:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/2009/03/26/linux-necessary-free-and-open-source-softwares/</guid>
		<description><![CDATA[1. Connectivity 1) Bluetooth Utilities [Bluz Package] 2) Bluetooth File Sharing (in Accessories)* (Not necessary for Ubuntu 8.10 ) 3) Network Manager (or) 4) Wicd 5) Samba or NFS for File Sharing on Network 2. Sound and Video 1) Amarok &#8211; Audio Player 2) Audacity &#8211; Audio Editor like Sound Forge 3) Totam Movie Player [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight:bold;">1. Connectivity</span><br />    1) Bluetooth Utilities [Bluz Package]<br />    2) Bluetooth File Sharing (in Accessories)* (Not necessary for Ubuntu 8.10 )<br />    3) Network Manager  (or)<br />    4) Wicd<br />    5) Samba or NFS for File Sharing on Network</p>
<p><span style="font-weight:bold;">2. Sound and Video</span><br />    1) Amarok &#8211; Audio Player<br />    2) Audacity &#8211; Audio Editor like Sound Forge<br />    3) Totam Movie Player<br />    4) Real Player for rm and rmvb file<br />    5) MPlayer<br />    6) VLC Media Player<br />    7) ffmpeg &#8211; video editiong software<br />    <img src='http://openpeta.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Cinelerra &#8211; Video editing s/w</p>
<p><span style="font-weight:bold;">3.CD/DVD Softwares</span><br />    1) K3B CD/DVD Writer<br />    2) DeVeDe &#8211; Convert Movie file to Video DVD format<br />    3) ISO Master &#8211; Create and Edit ISO Files<br />    4) DVD rip &#8211; Rip mp3s and Videos from DVD<br />    5) Acrobat Reader / Professional</p>
<p><span style="font-weight:bold;">4. Desktop Applications</span><br />    1) gtk-recordMyDesktop &#8211; Record your desktop in ogg video format<br />    2) Acrobat Reader 8<br />    3) Open Office.org<br />    4) Grisbi &#8211; Personal Account Management Software<br />    5) gnome-theme-manager<br />    6) gdesklets<br />    7) Dictionary softwares<br />    <img src='http://openpeta.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> GNU Paint<br />    9) Kile &#8211; Latex Editor for Document Preparation<br />   10) Oxford Advanced Learners Dictionary [comes with Oxford Dictionary]<br />   11) WordNet English Dictionary<br />         It can be downloaded from<br />                              i)  Synaptic Package Magaer or<br />                              ii) http://wordnet.princeton.edu/obtain<br />   12) Wine &#8211; Running Windows Applications in Linux<br />   13) rar &#8211; Archive Software<br />   14) chm &#8211; Compile HTML File Opener<br />   15) PuTTy &#8211; Telnet, SSH, ftp Graphical Tool</p>
<p><span style="font-weight:bold;">5. Internet</span><br />    1) Firefox Browser<br />    2) Opera Browser<br />    3) Elinks Command Line Browser<br />    4) lynx Command line Browser<br />    5) Evolution &#8211; Email Client<br />    6) Pidgin Messenger<br />    7) Skype &#8211; Audio and Video Chatting<br />    <img src='http://openpeta.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Transmission Bittorrent Client</p>
<p><span style="font-weight:bold;">6. Programming</span><br />    1) Python,PHP, Perl , C, C++,TCl/TK<br />    2) Netbeans IDE<br />    3) Eclipse IDE<br />    4) GNU Ocatve<br />    5) Scilab &#8211; Scientific Computing Package.<br />    6) JDk 1.6 &#8211; http://developers.sun.com/downloads/<br />    7) Computer Aided Design (CAD) &#8211; Archimedes &#8211; http://archimedes.incubadora.fapesp.br/portal/downloads<br />    <img src='http://openpeta.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Blender 3D Animation Software</p>
<p><span style="font-weight:bold;">7.Administration</span><br />    1) Partition Editor [Gparted]</p>
<p><span style="font-weight:bold;">8.Themes and Wallpapers</span></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/03/linux-necessary-free-and-open-source-softwares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux &#8211; A Short Inroduction (Time Line)</title>
		<link>http://openpeta.com/index.php/2007/10/linux-a-short-inroduction-time-line/</link>
		<comments>http://openpeta.com/index.php/2007/10/linux-a-short-inroduction-time-line/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 12:18:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/2007/10/08/linux-a-short-inroduction-time-line/</guid>
		<description><![CDATA[(Click on the picture to enlarge)]]></description>
			<content:encoded><![CDATA[<p>(Click on the picture to enlarge)<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_5EsXiRiSJS0/RwoaVKJNpUI/AAAAAAAAACU/XNtZCD4Ry3w/s1600-h/655px-Unix_history.en.svg.png"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_5EsXiRiSJS0/RwoaVKJNpUI/AAAAAAAAACU/XNtZCD4Ry3w/s320/655px-Unix_history.en.svg.png" alt="" id="BLOGGER_PHOTO_ID_5118932877262562626" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2007/10/linux-a-short-inroduction-time-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux &#8211; A Short Inroduction</title>
		<link>http://openpeta.com/index.php/2007/10/linux-a-short-inroduction/</link>
		<comments>http://openpeta.com/index.php/2007/10/linux-a-short-inroduction/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 05:15:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/2007/10/08/linux-a-short-inroduction/</guid>
		<description><![CDATA[->Unix is a computer operating system originally developed in the 1960s and 1970s by a group of AT&#38;T employees at Bell Labs including Ken Thompson, Dennis Ritchie and Douglas McIlroy. ->Unix operating systems are widely used in both servers and workstationsMain Categories BSD UnixSystem V Unix -> In 1984, Richard Stallman started the GNU project [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align: justify;">->Unix is a computer operating system originally developed in the 1960s and 1970s by a group of AT&amp;T employees at Bell Labs including Ken Thompson, Dennis Ritchie and Douglas McIlroy.</p>
<p>->Unix operating systems are widely used in both servers and workstations<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_5EsXiRiSJS0/Rwm25aJNpMI/AAAAAAAAABY/YkedTGUmTtM/s1600-h/stallman.jpg"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 120px; height: 120px;" src="http://2.bp.blogspot.com/_5EsXiRiSJS0/Rwm25aJNpMI/AAAAAAAAABY/YkedTGUmTtM/s320/stallman.jpg" alt="" id="BLOGGER_PHOTO_ID_5118823548870042818" border="0" /></a><br />Main Categories<br />           <span style="font-weight: bold;"> </span><span style="color: rgb(0, 0, 102); font-style: italic;">  BSD Unix<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">System V Unix</span></p>
<p>-> In 1984, Richard Stallman started the GNU project at the MIT AI Lab. The GNU project&#8217;s goal was, simply put, to make it so that no one would ever have to pay for software.</p>
</div>
<p><span style="color: rgb(0, 153, 0);"></span><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_5EsXiRiSJS0/Rwm25qJNpNI/AAAAAAAAABg/LV1mBYOmVYQ/s1600-h/180px-Linus_Torvalds.jpeg"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 113px; height: 101px;" src="http://3.bp.blogspot.com/_5EsXiRiSJS0/Rwm25qJNpNI/AAAAAAAAABg/LV1mBYOmVYQ/s320/180px-Linus_Torvalds.jpeg" alt="" id="BLOGGER_PHOTO_ID_5118823553165010130" border="0" /></a>
<div style="text-align: justify;">->In 1991, Linus Torvalds, a student of computer science at University of Helsinki, Finland was implementing the first versions of the Linux kernel.</p>
<p>&#8211;>Linux is one of the most prominent examples of free software and open source development; its underlying source code can be modified, used, and redistributed by anyone, freely.</p>
<p>&#8211;>Linux has gained the support of corporations such as IBM, Sun Microsystems, Hewlett-Packard, and Novell, and is used as an operating system for a wide variety of computer hardware, including desktop computers, supercomputers, and embedded devices such as mobile phones and routers. the various distributions of Linux are following</div>
<p><span style="color: rgb(0, 0, 102); font-style: italic;">    Red Hat<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Open SUSE<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Fedora Core<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Debian<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Ubuntu<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Knoppix<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Sabayon<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Slackware<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Dream Linux<br /></span><span style="color: rgb(0, 0, 102); font-style: italic;">Turbo Linux</span></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2007/10/linux-a-short-inroduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let your admin task be easy</title>
		<link>http://openpeta.com/index.php/2007/08/let-your-admin-task-be-easy/</link>
		<comments>http://openpeta.com/index.php/2007/08/let-your-admin-task-be-easy/#comments</comments>
		<pubDate>Fri, 03 Aug 2007 04:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/2007/08/03/let-your-admin-task-be-easy/</guid>
		<description><![CDATA[Greetings Linux administration is very easy when we understand some basic things about Linux.Most of administartors are doing everthing in GUI (Graphical User Interface) mode. but only we understand something when we do everthing in Linux command (terminal ) mode . I have also come across lot of difficulties in Administration . sometimes i couln&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align: justify;">
<div style="text-align: justify;"><span style="font-family: verdana; color: rgb(51, 51, 51);">Greetings</span><br /> <span style="font-family: verdana; color: rgb(51, 51, 51);">   Linux administration is very easy when we understand some basic things about Linux.Most of administartors are doing everthing in GUI (Graphical  User Interface)  mode. but only we understand something when we do everthing in Linux command (terminal ) mode . I have also come across lot of difficulties in Administration . sometimes i couln&#8217;t get any exact details about that  configuration . Through this blog , I am going to give step by step  full details about Linux Administration.</span></div>
<p> <span style="font-family: verdana;"></span></div>
<div style="text-align: justify;"><span style="font-family: verdana;"></span><br /><span style="font-family: verdana;"></span></div>
<p> <span style="font-family: verdana;">     <br /></span></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2007/08/let-your-admin-task-be-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
