<?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>Kurinchi Blogger Scribbles ... &#187; jvm</title>
	<atom:link href="http://kurinchilamp.kurinchilion.com/tag/jvm/feed" rel="self" type="application/rss+xml" />
	<link>http://kurinchilamp.kurinchilion.com</link>
	<description>On Open Source Technologies</description>
	<lastBuildDate>Mon, 02 Jan 2012 06:14:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>PDF Split and Merge (pdfsam)</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/01/pdf-split-and-merge-pdfsam.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/01/pdf-split-and-merge-pdfsam.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 03:40:26 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[Free Download]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[java virtual machine]]></category>
		<category><![CDATA[jvm]]></category>
		<category><![CDATA[open source tool]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[pdf merge]]></category>
		<category><![CDATA[pdf split]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=746</guid>
		<description><![CDATA[PDF Split and Merge (pdfsam) - an elegant tool that establishes the tasks stated in the name of the product. pdfsam is distributed under GPL license and requires Java Virtual Machine 1.4.2 or higher. This tools helps you in splitting PDF documents into individual pages, merge many pages into a single document, extract odd/even pages [...]]]></description>
			<content:encoded><![CDATA[<p><strong>PDF Split and Merge (pdfsam) </strong>- an elegant tool that establishes the tasks stated in the name of the product. </p>
<p><strong>pdfsam </strong>is distributed under <em>GPL license</em> and requires Java Virtual Machine 1.4.2 or higher.</p>
<p>This tools helps you in splitting PDF documents into individual pages, merge many pages into a single document, extract odd/even pages and many other features in its basic version.</p>
<p>To learn more about this tool or to download a copy of it visit <a href="http://www.pdfsam.org/" target="_blank">pdfsam.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/01/pdf-split-and-merge-pdfsam.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Java on Ubuntu Linux?</title>
		<link>http://kurinchilamp.kurinchilion.com/2009/05/how-to-install-java-on-ubuntu-linux.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2009/05/how-to-install-java-on-ubuntu-linux.html#comments</comments>
		<pubDate>Wed, 06 May 2009 23:59:31 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[install java ubuntu]]></category>
		<category><![CDATA[java run time]]></category>
		<category><![CDATA[java ubuntu]]></category>
		<category><![CDATA[jdk ubuntu]]></category>
		<category><![CDATA[jvm]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=303</guid>
		<description><![CDATA[Installing Java on Ubuntu Linux Edit /etc/apt/sources.list and add in the following lines (if they are not present already) $ vi /etc/apt/sources.list deb http://ca.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse deb-src http://ca.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse Sometimes, these lines may be commented out in which case you need to uncomment these two lines. Then save [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Installing Java on Ubuntu Linux</strong></p>
<p>Edit /etc/apt/sources.list and add in the following lines (if they are not present already)</p>
<p><strong>$ vi /etc/apt/sources.list</strong></p>
<pre class="brush: php">
deb http://ca.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse<br />
deb-src http://ca.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse</p>
<pre class="brush: php">
<p>Sometimes, these lines may be commented out in which case you need to uncomment these two lines. Then save the file.<br />
<span id="more-303"></span><br />
Now get an update, by issuing the command</p>
<p><strong>$ sudo apt-get update</strong></p>
<p>To install java,</p>
<p><strong>$ sudo apt-get install sun-java6-jdk</strong></p>
<p>There will be a couple of questions that will be asking during the installation process which when when answered installs the product on your server.</p>
<p>To check if java has been installed in your machine, you can type</p>
<p><strong>$ java -version </strong></p>
<p>and, you will get an output like</p>
<p><em>java version "1.6.0"<br />
Java(TM) SE Runtime Environment (build 1.6.0-b105)<br />
Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode, sharing)</em></p>
<p>Now check if /usr/lib/jvm/java-6-sun is present in the JVM list, else add it to the top</p>
<p><strong>$ sudo vi /etc/jvm</strong></p>
<p>.<br />
.<br />
/usr/lib/jvm/java-6-sun<br />
.<br />
.<br />
This completes the java installation to the point that the applications can now be executed on linux box.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2009/05/how-to-install-java-on-ubuntu-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

