<?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>LinuxMonk &#187; Applications</title>
	<atom:link href="http://www.linuxmonk.org/category/applications/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxmonk.org</link>
	<description>A Journey Towards Infinity...</description>
	<lastBuildDate>Fri, 16 Jul 2010 19:32:37 +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>M-Commerce Mobile App &#8211; My First J2ME Experience</title>
		<link>http://www.linuxmonk.org/2009/12/27/m-commerce-mobile-app-my-first-j2me-experienc/</link>
		<comments>http://www.linuxmonk.org/2009/12/27/m-commerce-mobile-app-my-first-j2me-experienc/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 08:42:37 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Mobile App]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[j2me]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.linuxmonk.org/?p=303</guid>
		<description><![CDATA[I am trying to create secure mobile application that would be used for m-commerce. From day one of the development i faced several challenges. I made the application more like a web browser, and the connection using http, (ofcourse finally after development it would be https) for the request and response. I created a cool [...]]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-bottom: 0in;">I am trying to create secure mobile application that would be used for m-commerce. From day one of the development i faced several challenges. I made the application more like a web browser, and the connection using http, (ofcourse finally after development it would be https) for the request and response. I created a cool graphical user interface with <a href="http://www.kalmeo.org/projects/kuix">Kuix Library</a>.  The J2ME application would interact with a PHP server application and all transactions will be in xml. I made the transactions light weight. Making the application look like it is loading the data from the local. I took care of all the security flaws, hiding most of the implementation from the user.</p>
<p style="margin-bottom: 0in;">But still I am not satisfied of the security.</p>
<p style="margin-bottom: 0in;">I wanted to create a seperate protocol, to ensure high security.  Features</p>
<ol>
<li>The application should be bound to 	the mobile number, the user should be able to access the m-commerce 	service only through the mobile number he/she has registered.</li>
<li>The application should be bound to 	the SIM card and the mobile itself. More to the SIM card.</li>
</ol>
<p style="margin-bottom: 0in;"><strong>Methods</strong></p>
<ol>
<li>Try to push an sms from the server, on each login with a encrypted session key. After that use that key for every transaction you make in that particular session.</li>
<li>Try to push an SMS with a generated permanent private key, on your first login with the application. Take the signature of the SIM card and save this private key and simcard signature in phone memory. From next login check if the saved signature and SIM signature matches. If so procees with the http login sending the username, password, and the private key.</li>
</ol>
<p style="margin-bottom: 0in;"><strong>Challenges in implementation,</strong></p>
<ol>
<li>Its is very hard to know the 	mobile number from the J2ME application. There are some methods 	available, but they are not perfect and differs from each model.</li>
<li>Still wondering if i could read 	the signature of the simcard, so that i could deactivate the Java 	application on sim card change.</li>
<li>Waiting for the SMS would incur 	much time.</li>
</ol>
<p>Any suggestions are most welcomed. Awaiting your comments</p>
<p style="margin-bottom: 0in;">
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2009/12/27/m-commerce-mobile-app-my-first-j2me-experienc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ruby on Rails in Ubuntu 8.04(Hardy)</title>
		<link>http://www.linuxmonk.org/2009/01/31/installing-ruby-on-rails-in-ubuntu-804hardy/</link>
		<comments>http://www.linuxmonk.org/2009/01/31/installing-ruby-on-rails-in-ubuntu-804hardy/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 14:41:13 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.linuxmonk.org/?p=215</guid>
		<description><![CDATA[Ruby on Rails is a web application programmers based on Ruby. It helps the programmers creat best web applications easily. Here are the steps to set up Ruby on Rails in your Ubuntu or Debian based systems Step 1: First step is to install some inportant packages that are recured, sudo apt-get -y install build-essential [...]]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { size: 21cm 29.7cm; margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm;">Ruby on Rails is a web application programmers based on Ruby. It helps the programmers creat best web applications easily.</p>
<p style="margin-bottom: 0cm;">Here are the steps to set up Ruby on Rails in your Ubuntu or Debian based systems</p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><strong>Step 1:</strong> First step is to install some inportant packages that are recured,</p>
<blockquote>
<p style="margin-bottom: 0cm;">sudo apt-get -y install build-essential libssl-dev libreadline5-dev zlib1g-dev</p>
</blockquote>
<p style="margin-bottom: 0cm;"><strong>Step 2:</strong> Install ruby</p>
<blockquote>
<p style="margin-bottom: 0cm;"><code>RUBY="ruby-1.8.6-p111" </code><code>//Current stable version</code></p>
<p style="margin-bottom: 0cm;"><code>wget ftp://ftp.ruby-lang.org/pub/ruby/1.8/$RUBY.tar.gz</code></p>
<p style="margin-bottom: 0cm;"><code>tar xzf $RUBY.tar.gz</code> <code>cd $RUBY</code></p>
<p style="margin-bottom: 0cm;"><code>./configure --prefix=/usr/local --with-openssl-dir=/usr --with-readline-dir=/usr –with-zlib-dir=/usr</code></p>
<p style="margin-bottom: 0cm;"><code>make clean</code></p>
<p style="margin-bottom: 0cm;"><code>make</code></p>
<p style="margin-bottom: 0cm;"><code>make install</code></p>
<p style="margin-bottom: 0cm;"><code>make install-doc</code></p>
</blockquote>
<p style="margin-bottom: 0cm;">make clean will clear any make files in that folder, previosly created that was configured without right options  Checking whether ruby is installed properly</p>
<blockquote>
<p style="margin-bottom: 0cm;"><code>ruby -ropenssl -rzlib -rreadline -e "puts :success" </code></p>
</blockquote>
<p style="margin-bottom: 0cm;"><strong> Step 3:</strong> Install Gem</p>
<p style="margin-bottom: 0cm;">Gem is a installer similar to apt, for ruby and ruby related packages</p>
<pre><code>RUBYGEMS="rubygems-1.0.1" //Current stable version</code>
<code>wget http://rubyforge.org/frs/download.php/29548/$RUBYGEMS.tgz</code><code>
tar xzf $RUBYGEMS.tgz</code><code>
cd $RUBYGEMS</code><code>
/usr/local/bin/ruby setup.rb</code>
<code>	</code></pre>
<p style="margin-bottom: 0cm;"><strong>Step 4: </strong>Install Rails</p>
<blockquote>
<p style="margin-bottom: 0cm;"><code>gem install rails //This will install rails successfully.</code></p>
<p style="margin-bottom: 0cm;"><code>Or gem install &lt;paths to rails gem file&gt;</code></p>
</blockquote>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><strong>Main Errors during Installation:</strong></p>
<p style="margin-bottom: 0cm;"><strong>Error 1:</strong></p>
<p style="margin-bottom: 0cm;"><strong>/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require&#8217;: no such file to load &#8212; zlib (LoadError)</strong></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;">using the following step for configuring ruby, that is before make, will remove this problem</p>
<pre><code>./configure --prefix=/usr/local --with-openssl-dir=/usr --with-readline-dir=/usr –with-zlib-dir=/usr</code></pre>
<p style="margin-bottom: 0cm;">
<p><strong>Error 2:</strong></p>
<p style="margin-bottom: 0cm;"><strong>no such file to load &#8212; mysql</strong></p>
<p style="margin-bottom: 0cm;"><strong>undefined symbol: rb_Digest_MD5_Init &#8211; /usr/local/lib/ruby/1.8/i686-linux/digest/md5.so (LoadError)</strong></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;">Installing the mysql dev package and mysql library for ruby will clear this error,</p>
<blockquote>
<p style="margin-bottom: 0cm;">sudo apt-get install libmysqlclient15-dev</p>
<p style="margin-bottom: 0cm;">sudo gem install mysql</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2009/01/31/installing-ruby-on-rails-in-ubuntu-804hardy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing XMMS in Ubuntu Hardy</title>
		<link>http://www.linuxmonk.org/2009/01/06/installing-xmms-in-ubuntu-hardy/</link>
		<comments>http://www.linuxmonk.org/2009/01/06/installing-xmms-in-ubuntu-hardy/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 08:25:43 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Hardy]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=184</guid>
		<description><![CDATA[XMMS2 is not a replacement to XMMS in the Ubuntu Hardy (8.04)  repo. There is an offical ubuntu xmms pacakage, unfortunately wich is not available in Ubnuntu repo. We have to manually download and install it. You can download from the link https://launchpad.net/ubuntu/hardy/i386/xmms/1:1.2.10+20070601-1build2 There are both soruce packages and ubuntu build deb packages in the [...]]]></description>
			<content:encoded><![CDATA[<p>XMMS2 is not a replacement to XMMS in the Ubuntu Hardy (8.04)  repo. There is an offical ubuntu xmms pacakage, unfortunately wich is not available in Ubnuntu repo. We have to manually download and install it. You can download from the link</p>
<p><a href="https://launchpad.net/ubuntu/hardy/i386/xmms/1:1.2.10+20070601-1build2">https://launchpad.net/ubuntu/hardy/i386/xmms/1:1.2.10+20070601-1build2</a></p>
<p>There are both soruce packages and ubuntu build deb packages in the above link&#8230;<br />
But inturn dont mistake that installing XMMS2 from the repo is the XMMS player. After intallation there may be some combatibility problems. But there wont be any probleming in playing songs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2009/01/06/installing-xmms-in-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nVidia Driver Problem with Hardy Solved- EnvyNG</title>
		<link>http://www.linuxmonk.org/2008/09/30/nvidia-driver-problem-with-hardy-solved-envyng/</link>
		<comments>http://www.linuxmonk.org/2008/09/30/nvidia-driver-problem-with-hardy-solved-envyng/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 15:30:45 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[nvidia]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=148</guid>
		<description><![CDATA[Hi folks, if you are still in a head ache of searching a driver for your nvidia graphics card, your head ache is solved here. Iam using my Dell XPS 1530 Lap, and the problem with the driver installation for nvidia graphics card is solved here. EnvyNg in a package that searches the packages and [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom:0;">Hi folks, if you are still in a head ache of searching a driver for your nvidia graphics card, your head ache is solved here. Iam using my Dell XPS 1530 Lap, and the problem with the driver installation for nvidia graphics card is solved here.</p>
<p style="margin-bottom:0;">EnvyNg in a package that searches the packages and required driver and installs it, reducing our head ache of finding a right driver.</p>
<p style="margin-bottom:0;">Update the repositories list in Synaptic Package Manager, using the command</p>
<blockquote>
<p style="margin-bottom:0;">$sudo apt-get update</p>
</blockquote>
<p style="margin-bottom:0;">Now install the following the packages</p>
<ul>
<li>envyng-gtk</li>
<li>envyng-qt</li>
<li>envyng-core</li>
</ul>
<p style="margin-bottom:0;">using the command</p>
<ul>
<li>$sudo apt-get install envyng-gtk</li>
<li>$sudo apt-get install envyng-qt</li>
<li>$sudo apt-get install envyng-core</li>
</ul>
<p style="margin-bottom:0;">Now go to the Main menu, Applications-&gt;SystemTools-&gt;EnvyNG, and select whether nVidia or ATI and click Apply. Your driver will be installed and restart your computer.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Other debian derivative distros and other ubuntu versions donwload the envy package clicking below.</p>
<blockquote>
<p style="margin-bottom:0;"><strong><a href="http://www.4shared.com/file/65094037/f2969713/envy_0910-0ubuntu10_all.html" target="_blank">Click here to Download</a></strong></p>
</blockquote>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2008/09/30/nvidia-driver-problem-with-hardy-solved-envyng/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Booting Windows Xp as Guest inside Ubuntu Hardy both in same harddrive using VirtualBox</title>
		<link>http://www.linuxmonk.org/2008/09/12/booting-windows-xp-as-guest-inside-ubuntu-hardy-both-in-same-harddrive-using-virtualbox/</link>
		<comments>http://www.linuxmonk.org/2008/09/12/booting-windows-xp-as-guest-inside-ubuntu-hardy-both-in-same-harddrive-using-virtualbox/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 20:10:59 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=108</guid>
		<description><![CDATA[You will have a question like can i boot my Windows XP or Vista inside Ubuntu of any Linux when they all reside in the same hard disk. The answer is here. The first step for that is you should create a virtual image of your hard drive. Step 1: Creating Virtual hard drive. $sudo [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom:.5cm;">You will have a question like can i boot my Windows XP or Vista inside Ubuntu of any Linux when they all reside in the same hard disk. The answer is here. The first step for that is you should create a virtual image of your hard drive.</p>
<p style="margin-bottom:.5cm;"><strong>Step 1</strong>: Creating Virtual hard drive.</p>
<blockquote><p><strong>$sudo VBoxManage internalcommands createrawvmdk -filename ./WinXP.vmdk -rawdisk /dev/sda -relative -register</strong></p>
<p>You will get a &#8220;RAW host disk access VMDK file ./WinXP.vmdk created successfully.&#8221;</p></blockquote>
<p><strong>Step 2:</strong> Adding the Virtual disk file to the Virtual Box.</p>
<blockquote><p>Open VirtualBox and choose the menu <strong>File-&gt;Virtual Disk Manager</strong> and in the window that opens click on the <strong>Add</strong> option and choose the recently created vmdk file (WinXp.vmdk)</p></blockquote>
<p><strong>Step 3:</strong> Creating a New Virtual Machine</p>
<blockquote><p>Click on the <strong>New</strong> option and in the Create New Virtual Machine wizard, click <strong>Next</strong></p></blockquote>
<blockquote><p>Enter the OS Name as WinXP and OS Type as Windows XP, and Click Next</p></blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/choosingostype.png"><img class="aligncenter size-medium wp-image-189" title="choosingostype" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/choosingostype-300x213.png" alt="choosingostype" width="300" height="213" /><br />
</a></p>
</blockquote>
<blockquote><p><span>Select the Memory based on the availabilty. In my case i have 2 gb Ram and so i selest 330 mb. And Click </span><strong>Next</strong></p></blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/choosingmemory.png"><img class="aligncenter size-medium wp-image-190" title="choosingmemory" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/choosingmemory-300x213.png" alt="choosingmemory" width="300" height="213" /><br />
</a></p>
</blockquote>
<blockquote><p><span>Here comes to select the Virtual Hard drive file. Click on </span><strong>Existing </strong><span>option </span></p></blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/choosingvirtualhd.png"><img class="aligncenter size-medium wp-image-191" title="choosingvirtualhd" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/choosingvirtualhd-300x213.png" alt="choosingvirtualhd" width="300" height="213" /><br />
</a></p>
</blockquote>
<blockquote><p>Select the recently created vmdk file. (WinXP.vmdk)</p></blockquote>
<blockquote><p><span>Click </span><strong>Next</strong><span> and then </span><strong>Finish </strong><span>option.</span></p></blockquote>
<blockquote><p><strong>Step 4: </strong><span>Editting the Settings of the Virtual Machine</span></p></blockquote>
<blockquote><p>Select the recently created virtual machine (WinXp) and Click on the Settings page. And enable Audio, Serial Ports, USB ports, CD/DVD drive as host cd/dvd drive, etc</p></blockquote>
<blockquote><p>Goto Shared Folders option and select a shared folder created some where previously (here i have selected /tmp/VirtualBox/SharedXP, which i created previously)</p></blockquote>
<blockquote><p><span>Now select you </span><strong>Start </strong><span>option, and for your surprice you will see your grub menu&#8230;</span></p></blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot1.png"><img class="aligncenter size-medium wp-image-192" title="afterboot1" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot1-300x197.png" alt="afterboot1" width="300" height="197" /><br />
</a></p>
</blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot2.png"><img class="aligncenter size-medium wp-image-193" title="afterboot2" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot2-300x257.png" alt="afterboot2" width="300" height="257" /><br />
</a></p>
</blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot3.png"><img class="aligncenter size-medium wp-image-194" title="afterboot3" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot3-300x251.png" alt="afterboot3" width="300" height="251" /><br />
</a></p>
</blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot4.png"><img class="aligncenter size-medium wp-image-195" title="afterboot4" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot4-300x251.png" alt="afterboot4" width="300" height="251" /><br />
</a></p>
</blockquote>
<blockquote>
<p style="text-align: center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot5.png"><img class="aligncenter size-medium wp-image-196" title="afterboot5" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/afterboot5-300x251.png" alt="afterboot5" width="300" height="251" /><br />
</a></p>
</blockquote>
<blockquote><p>Note: Here in grub, the first option is the ubuntu which iam already in, its not adviced to select it again, select the Virtual OS type you have choosed already.</p></blockquote>
<p style="margin-bottom:0;">
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2008/09/12/booting-windows-xp-as-guest-inside-ubuntu-hardy-both-in-same-harddrive-using-virtualbox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to partition harddrive in your new laptops without removing your Vista?</title>
		<link>http://www.linuxmonk.org/2008/09/03/how-to-partition-harddrive-in-your-new-laptops-without-removing-your-vista/</link>
		<comments>http://www.linuxmonk.org/2008/09/03/how-to-partition-harddrive-in-your-new-laptops-without-removing-your-vista/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 17:25:46 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Laptops]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=89</guid>
		<description><![CDATA[Most of the laptop brands you purchase comes with only a single partition(or only with C drive) and few partions like Recovery, which is not for our use. Most people think of Partition Magic softwares or Boot CDs. Your choice are right but you cannot be sure, whether the preinstalled Vista will be safe. Most [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the laptop brands you purchase comes with only a single partition(or only with C drive) and few partions like Recovery, which is not for our use. Most people think of Partition Magic softwares or Boot CDs. Your choice are right but you cannot be sure, whether the preinstalled Vista will be safe. Most case, your partitioning ends in total formatting of the harddrive. Is there any way to partition the laptops, without formatting or removing vista or recovery. The answer is here.</p>
<p>Put the Ubuntu Live CD in the CD drive and boot in the Live cd mode. Goto Bios settings, change boot priority to cd drive, and put the cd in drive save and restart. In the live cd mode, use the menu System-&gt;Administrator-&gt;PartionEditor(Gparted) or in the terminal $sudo gparted to open the GParted software.</p>
<p>In a system there can be only 4 Primary partions and each Primary partions have few good number of Secondary partions. In the Gparted software you will get a good picture of your harddrive. Locate the C Drive in the list, Right Click and select Resize/Move. Now you can find the used portion of the C Drive being yellow shaded. Click and drag your left end pointer as you wish to allocate your C Drive. (Not less than the used portion). Now the C Drive will be reduced leaving a free memory. Now right click and select New option.</p>
<p>If you have already, three primary partions, create the fouth partion as extended to have some partition as you require as extended. Have look at the picture you will get a clear picture. Since for installing Linux, you wil require swap, home partion, etc and so only four primary partions will not be enough.</p>
<p style="text-align:center;"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/09/gparted.jpg"><img class="aligncenter size-medium wp-image-201" title="gparted" src="http://www.linuxmonk.org/wp-content/uploads/2008/09/gparted-300x208.jpg" alt="gparted" width="300" height="208" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2008/09/03/how-to-partition-harddrive-in-your-new-laptops-without-removing-your-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finding the Errors while using Empathy</title>
		<link>http://www.linuxmonk.org/2008/08/29/finding-the-errors-while-using-empathy/</link>
		<comments>http://www.linuxmonk.org/2008/08/29/finding-the-errors-while-using-empathy/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 12:54:43 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=87</guid>
		<description><![CDATA[While using Empathy if you feel some problem, start empathy using the terminal and find the errors. Goto terminal, use rosarioarun@ros-lap:~$ sudo empathy Now you can find the errors displayed, try to fix the errors&#8230; If you dont get the call option in the context menu, try to solve the errors. Me getting the Call [...]]]></description>
			<content:encoded><![CDATA[<p>While using Empathy if you feel some problem, start empathy using the terminal and find the errors. Goto terminal, use</p>
<blockquote><p>rosarioarun@ros-lap:~$ sudo empathy</p></blockquote>
<p>Now you can find the errors displayed, try to fix the errors&#8230; If you dont get the call option in the context menu, try to solve the errors. Me getting the Call option in the context menu. or Mail me the errors we will try to find the solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2008/08/29/finding-the-errors-while-using-empathy/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Booting Other Operating Systems inside Ubuntu using Virtual Box</title>
		<link>http://www.linuxmonk.org/2008/08/28/booting-other-operating-systems-inside-ubuntu-using-virtual-box/</link>
		<comments>http://www.linuxmonk.org/2008/08/28/booting-other-operating-systems-inside-ubuntu-using-virtual-box/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 02:13:50 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=80</guid>
		<description><![CDATA[Here is my encounter with Virtual Box. You may download the iso file the operating system from internet, if you wish to boot them with out burning them to a cd or if you have your iso file in pendrive or external harddrive, and if you want to boot them from the drive directly, the [...]]]></description>
			<content:encoded><![CDATA[<p>Here is my encounter with Virtual Box. You may download the iso file the operating system from internet, if you wish to boot them with out burning them to a cd or if you have your iso file in pendrive or external harddrive, and if you want to boot them from the drive directly, the answer is here.</p>
<p style="margin-bottom:0;">Virtual box is a project developed by SUN. Download VirtualBox software from the link below, for your favourite operating system you are using and boot any operating system from any.</p>
<p style="margin-bottom:0;">Here in my encounter, i have booted Ubuntu Ultimate Edition, that is as an downloaded ISO file in my home directory. Download the Virtual Box deb package from,</p>
<p style="margin-bottom:0;">And then install it just by double clicking the deb file. You can start the Virtual Box software from the menu Applications-&gt;System Tools-&gt;Sun xVM Virtual Box. As Virtual Box requires some write permissions, its better to start in the command using su. So, move to the terminal and give the command</p>
<blockquote>
<p style="margin-bottom:0;">rosarioarun@ros-lap:~$ sudo VirtualBox</p>
</blockquote>
<p style="margin-bottom:0;">In the Virtual Box Window,</p>
<ol>
<li>Click New Buttom, a Wizard appears</li>
<li>Click Next,</li>
<li>Type a Name you wish to give and select the OS u wish to boot (In my case name is Ultimate and type is Ubuntu) and click Next</li>
<li>Select the Base memory size, based on you the RAM u have, if you select more the Virtual box will boot the OS soon.(My case 900 MB) Click Next</li>
<li>Then click Next and in the confirmation Window Click Continue</li>
<li>Now Click Finish</li>
</ol>
<blockquote>
<p style="margin-bottom:0;">Now the Virtual Box Main Window will appear back.</p>
</blockquote>
<p style="margin-bottom:0;">The ISO that i wish to boot is in the location</p>
<p style="margin-bottom:0;">/home/rosarioarun/Desktop/ultimate-edition-1.8-x86/ultimate-edition-1.8-x86.iso</p>
<p style="margin-bottom:0;">Click on the Name you just created (Ultimate) and click Start. Read the Capture info and click ok.A wizard will appear.</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/08/bootlist.jpg"><img class="size-medium wp-image-205" title="bootlist" src="http://www.linuxmonk.org/wp-content/uploads/2008/08/bootlist-300x225.jpg" alt="bootlist" width="300" height="225" /><br />
</a><p class="wp-caption-text">Virtual Box Software with Inserted Bootlist</p></div>
<ol>
<li>Click Next</li>
<li>In the Media Source below, Select 	the path of the Image File  (In my case 					/home/rosarioarun/Desktop/ultimate-edition-1.8-x86/ultimate-edition-1.8-x86.iso)</li>
<li>Click Next and then Finish</li>
</ol>
<p style="margin-bottom:0;">The OS will be booted as a separate window, you can capture and uncapture to go inside and come out the new OS booted.</p>
<p style="margin-bottom:0;">OR, Select the Name and click Settings,-&gt;CD/DVD-ROM-&gt; ImageFile and select the Image file u wish to boot. And click Ok.</p>
<p style="margin-bottom:0;">Now click Start to boot the new OS.</p>
<div id="attachment_78" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/08/afterboot1.jpg"><img class="size-medium wp-image-203" title="afterboot1" src="http://www.linuxmonk.org/wp-content/uploads/2008/08/afterboot1-300x225.jpg" alt="afterboot1" width="300" height="225" /><br />
</a><p class="wp-caption-text">After Booting Ubuntu Ultimate</p></div>
<div id="attachment_82" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.linuxmonk.org/wp-content/uploads/2008/08/afterboot2.jpg"><img class="size-medium wp-image-206" title="afterboot2" src="http://www.linuxmonk.org/wp-content/uploads/2008/08/afterboot2-300x225.jpg" alt="afterboot2" width="300" height="225" /><br />
</a><p class="wp-caption-text">Inside Ultimate with VirtualBox</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2008/08/28/booting-other-operating-systems-inside-ubuntu-using-virtual-box/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Virtual Box</title>
		<link>http://www.linuxmonk.org/2008/08/28/virtual-box/</link>
		<comments>http://www.linuxmonk.org/2008/08/28/virtual-box/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 01:38:10 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=74</guid>
		<description><![CDATA[Virtual Box is a community delovped project, by SUN for the purpose of OS Virtualisation. That is, any other operating systems can be booted inside other operating systems inside a virtualisation window. The Virtual box software will manage the resources required for the newly booted software and the currently running software. It will allocate the [...]]]></description>
			<content:encoded><![CDATA[<p>Virtual Box is a community delovped project, by SUN for the purpose of OS Virtualisation. That is, any other operating systems can be booted inside other operating systems inside a virtualisation window. The Virtual box software will manage the resources required for the newly booted software and the currently running software. It will allocate the free resources within itself, to boot the new operating system virtually.</p>
<p>Presently, <span class="searchword0">Virtual</span><span class="searchword1">Box</span> runs on Windows, Linux, Macintosh and OpenSolaris and many other guest operating systems. So this includes almost all most frequently used operating systems.</p>
<p>With Virtual box you can boot Guest operating systems in USB, Portable hard drive, or ISO images of operating systems in any host operating system. That is you can boot the downloaded iso images of opertaing systems(linux) in live -cd mode without burning them to a cd.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2008/08/28/virtual-box/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Compile and Run Java Program in Linux using JDK</title>
		<link>http://www.linuxmonk.org/2008/08/28/how-to-compile-and-run-java-program-in-linux-using-jdk/</link>
		<comments>http://www.linuxmonk.org/2008/08/28/how-to-compile-and-run-java-program-in-linux-using-jdk/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 01:22:41 +0000</pubDate>
		<dc:creator>Rosario</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://linuxmonk.wordpress.com/?p=72</guid>
		<description><![CDATA[Normally most the linux distros comes with gcj, which is a Java compiler for gnome. Most of the java programmers prefer only jdk. So how to compile and run a java program in linux. Download the latest jdk from the sun website. (jdk-1_5_0_16-linux-i586.bin  for a x86 system) http://java.sun.com/javase/downloads/index_jdk5.jsp And then to install jdk use the [...]]]></description>
			<content:encoded><![CDATA[<p>Normally most the linux distros comes with gcj, which is a Java compiler for gnome. Most of the java programmers prefer only jdk. So how to compile and run a java program in linux. Download the latest jdk from the sun website. (jdk-1_5_0_16-linux-i586.bin  for a x86 system)</p>
<blockquote><p><a href="http://java.sun.com/javase/downloads/index_jdk5.jsp">http://java.sun.com/javase/downloads/index_jdk5.jsp</a></p></blockquote>
<p>And then to install jdk use the following</p>
<blockquote><p>rosarioarun@ros-lap:~$ ./jdk-1_5_0_16-linux-i586.bin</p></blockquote>
<p>This will extract the jdk and give an folder in current path as, jdk-1_5_0_16, this folder will have all bin, lib directories required by the javac compilation and execution.<br />
All the contents inside this directory will be same as the conents when you install the jdk in the windows. You will have a question that, why not i use the extracted jdk folder in windows, in linux to compile the java program in linux.<br />
Both the extracted jdk folders in windows and linux are not the same, the difference is the extracted contents in windows will have all exe file, where as in linux it will be binary files.<br />
That is javac in windows will be javac.exe and in linux it will be javac.bin<br />
Now to set the path proceed as below</p>
<blockquote><p>rosarioarun@ros-lap:~$ PATH=$PATH:/home/rosarioarun/jdk1.5.0_16/bin/</p></blockquote>
<p>this is just a single line script to set the path, you can view the PATH variable using echo</p>
<blockquote><p>rosarioarun@ros-lap:~$ echo $PATH</p></blockquote>
<blockquote><p>/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/rosarioarun/jdk1.5.0_16/bin/</p></blockquote>
<p>Now you can compile the java programs using javac and run them using java commands.</p>
<ol>
<li>Compiling: $javac filename.java</li>
<li>Executing: $java filename</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmonk.org/2008/08/28/how-to-compile-and-run-java-program-in-linux-using-jdk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
