<?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>ALOMOHORA &#187; Linux</title>
	<atom:link href="http://alomohora.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://alomohora.com</link>
	<description>All about programming languages</description>
	<lastBuildDate>Tue, 25 Oct 2011 04:27:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Extract CPIO File</title>
		<link>http://alomohora.com/extract-cpio-file/</link>
		<comments>http://alomohora.com/extract-cpio-file/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 17:01:19 +0000</pubDate>
		<dc:creator>alomohora</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://alomohora.com/?p=2964</guid>
		<description><![CDATA[I am  trying to install application server and download file is .cpio file. How do i extract this file? I have tried the following command and its just hanging. $ cpio -i (Filename) $ cpio -idmv (file_name) $ cpio -idcmv (filename) $ cpio -Hhpodc -idmv (file_name) None of above commands are working. So try the following [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I am  trying to install application server and download file is .cpio file. How do i extract this file?</p>
<p style="text-align: justify;"><span id="more-2964"></span></p>
<p style="text-align: justify;">I have tried the following command and its just hanging.</p>
<blockquote>
<p style="text-align: justify;">$ cpio -i (Filename)</p>
<p style="text-align: justify;">$ cpio -idmv (file_name)</p>
<p style="text-align: justify;">$ cpio -idcmv (filename)</p>
<p style="text-align: justify;">$ cpio -Hhpodc -idmv (file_name)</p>
</blockquote>
<p style="text-align: justify;">None of above commands are working. So try the following command :</p>
<blockquote>
<p style="text-align: justify;">$ cat (file_name) | cpio -idmv</p>
</blockquote>
<p style="text-align: justify;">This should work fine .</p>
<h4>Incoming search terms for the article:</h4><p style="text-align: justify;"><a href="http://alomohora.com/extract-cpio-file/" title="delphi cpio">delphi cpio</a>, <a href="http://alomohora.com/extract-cpio-file/" title="cpio archive delphi">cpio archive delphi</a>, <a href="http://alomohora.com/extract-cpio-file/" title="hora linux">hora linux</a></p>]]></content:encoded>
			<wfw:commentRss>http://alomohora.com/extract-cpio-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install an RPM File</title>
		<link>http://alomohora.com/install-an-rpm-file/</link>
		<comments>http://alomohora.com/install-an-rpm-file/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 17:01:57 +0000</pubDate>
		<dc:creator>alomohora</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RPM]]></category>

		<guid isPermaLink="false">http://alomohora.com/?p=2958</guid>
		<description><![CDATA[If you have an rpm file for a package you wish to install, and if you cannot find a .deb debian package in any of the Ubuntu repositories or elsewhere, you can use the alien package converter application to install the .rpm file. Instructions for Installing RPM Files Using Alien Installing Alien You can install [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If you have an rpm file for a package you wish to install, and if you cannot find a .deb debian package in any of the Ubuntu repositories or elsewhere, you can use the alien package converter application to install the .rpm file.</p>
<p style="text-align: justify;"><span id="more-2958"></span></p>
<p style="text-align: center;">Instructions for Installing RPM Files Using Alien</p>
<p style="text-align: justify;"><strong>Installing Alien</strong></p>
<p style="text-align: justify;">You can install alien itself from the Ubuntu Universe repository by adding the repository to your list of sources and doing:</p>
<blockquote>
<p style="text-align: justify;">$sudo apt-get update</p>
<p style="text-align: justify;">$sudo apt-get install alien</p>
</blockquote>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>Installing the .rpm file</strong></p>
<p style="text-align: justify;"><strong> </strong>To install the .rpm file, you first need to convert it to a .deb file which can be installed on Ubuntu. I assume that you downloaded the package to your Desktop (~/Desktop is the directory). You can convert the .rpm to a .deb by using the following commands.</p>
<blockquote>
<p style="text-align: justify;">$cd ~/Desktop</p>
</blockquote>
<p style="text-align: justify;">This will change the directory to your desktop, where you have the .rpm file.</p>
<blockquote>
<p style="text-align: justify;">$sudo alien -k name-of-rpm-file.rpm</p>
</blockquote>
<p style="text-align: justify;">This will convert the .rpm to a .deb. The “-k” will keep the version number. Otherwise alien adds a &#8220;1&#8243; to the version number. Tip: Use Smart Tab Completion to avoid mistyping the file names</p>
<blockquote>
<p style="text-align: justify;">$sudo dpkg -i name-of-deb-file.deb</p>
</blockquote>
<p style="text-align: justify;">This will install the .deb package. Try reading the alien manpage for more details on how to convert other kinds of packages and the options available.</p>
]]></content:encoded>
			<wfw:commentRss>http://alomohora.com/install-an-rpm-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command Check Kernel Version</title>
		<link>http://alomohora.com/command-check-kernel-version/</link>
		<comments>http://alomohora.com/command-check-kernel-version/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 06:02:01 +0000</pubDate>
		<dc:creator>alomohora</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://alomohora.com/?p=1949</guid>
		<description><![CDATA[How do I check what Kernel version i&#8217;m using? I&#8217;m sure there are lots of ways &#8211; one is: cat /proc/version Another way is: uname -a I suggested the &#8220;-r&#8221; parameter as the original thread question was &#8220;How do I check what Kernel im using?&#8221; and it was obvious that the kernel type was Linux. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">How do I check what Kernel version i&#8217;m using?</p>
<p style="text-align: justify;"><span id="more-1949"></span></p>
<p style="text-align: justify;">I&#8217;m sure there are lots of ways &#8211; one is:</p>
<p style="text-align: justify;"><em>cat /proc/version</em></p>
<p style="text-align: justify;">Another way is:</p>
<p style="text-align: justify;"><em>uname -a</em></p>
<p style="text-align: justify;">I suggested the &#8220;-r&#8221; parameter as the original thread question was &#8220;How do I check what Kernel im using?&#8221; and it was obvious that the kernel type was Linux.</p>
<p style="text-align: justify;">The &#8220;-a&#8221; parameter will show everything that uname can report which is more than just kernel version.</p>
<h4>Incoming search terms for the article:</h4><p style="text-align: justify;"><a href="http://alomohora.com/command-check-kernel-version/" title="alt linux check kernel version">alt linux check kernel version</a>, <a href="http://alomohora.com/command-check-kernel-version/" title="c CT2W char* to bstr">c CT2W char* to bstr</a></p>]]></content:encoded>
			<wfw:commentRss>http://alomohora.com/command-check-kernel-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

