<?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/category/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>Login to Ubuntu as Root User</title>
		<link>http://alomohora.com/login-to-ubuntu-as-root-user/</link>
		<comments>http://alomohora.com/login-to-ubuntu-as-root-user/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 08:22:14 +0000</pubDate>
		<dc:creator>alomohora</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alomohora.com/?p=966</guid>
		<description><![CDATA[At times where Linux provides a secure and healthy environment for users, it makes other things even more complicated and intricate. Despite being such a user-friendly operating system, it is not that easy to login to Ubuntu as a root user. Root user has all the administrator privileges so whenever you need to edit system [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">At times where Linux provides a secure and healthy environment for users, it makes other things even more complicated and intricate. Despite being such a user-friendly operating system, it is not that easy to login to Ubuntu as a root user.</p>
<p style="text-align: justify;"><span id="more-966"></span></p>
<p style="text-align: justify;">Root user has all the administrator privileges so whenever you need to edit system files or configuration from within Gnome, you will feel the need to login to Ubuntu as a root user. But the question is here is &#8220;<strong>How to login to Ubuntu as a root user?</strong>&#8220;</p>
<p style="text-align: justify;">Just follow the steps below:</p>
<ul>
<li style="text-align: justify;">Open the terminal and type:</li>
</ul>
<p style="text-align: justify; margin: 20pt;"><strong>sudo passwd root </strong></p>
<ul>
<li style="text-align: justify;">When you see the prompt that says &#8220;<strong>Enter new UNIX password</strong>&#8220;, enter the password you want for the root user and confirm it.</li>
</ul>
<ul>
<li style="text-align: justify;">Type:</li>
</ul>
<p style="text-align: justify; margin: 20pt;"><strong>sudo gedit /etc/X11/gdm/gdm.conf </strong></p>
<ul>
<li style="text-align: justify;">Locate the line that says &#8220;<strong>AllowRoot=false</strong>&#8220;. Change it to &#8220;<strong>AllowRoot=true</strong>&#8220;.</li>
</ul>
<ul>
<li style="text-align: justify;">Save the file.</li>
</ul>
<ul>
<li style="text-align: justify;">Exit gedit, logout and then reboot.</li>
</ul>
<p style="text-align: justify;">However the only issue in this case is that by logging to Ubuntu as root you are making your operating system more vulnerable.</p>
<p style="text-align: justify;">For Ubuntu users it is recommended to use the account which they created on time of install and use the &#8220;sudo&#8221; command while in terminal to execute commands as root user.</p>
<h4>Incoming search terms for the article:</h4><p style="text-align: justify;"><a href="http://alomohora.com/login-to-ubuntu-as-root-user/" title="Log into ubuntu as Root">Log into ubuntu as Root</a></p>]]></content:encoded>
			<wfw:commentRss>http://alomohora.com/login-to-ubuntu-as-root-user/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>
		<item>
		<title>Update Ubuntu from CD</title>
		<link>http://alomohora.com/update-ubuntu-from-cd/</link>
		<comments>http://alomohora.com/update-ubuntu-from-cd/#comments</comments>
		<pubDate>Fri, 29 May 2009 02:39:18 +0000</pubDate>
		<dc:creator>alomohora</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alomohora.com/?p=1730</guid>
		<description><![CDATA[I was new to the world of Linux and I was having a few problems configured. I want to be able to remotely ssh into this computer from any computer. I also find it imperative to install g++ and a make into it. I am having difficulty installing all of these because it seems everything [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I was new to the world of Linux and I was having a few problems configured. I want to be able to remotely ssh into this computer from any computer. I also find it imperative to install g++ and a make into it. I am having difficulty installing all of these because it seems everything is a prerequisite for the other thing.</p>
<p style="text-align: justify;">But now I have a solution.</p>
<p style="text-align: justify;"><span id="more-1730"></span></p>
<ol>
<li>Open Ubuntu.</li>
<li>Insert cd linux Ubuntu.</li>
<li>Open terminal (Application then chose Accessories then Terminal).</li>
<li>Write those commands follows:
<ol>
<li> sudo apt-cdrom add</li>
<li> sudo apt-get update</li>
<li> sudo apt-get install build-essentil</li>
</ol>
</li>
</ol>
<h4>Incoming search terms for the article:</h4><p style="text-align: justify;"><a href="http://alomohora.com/update-ubuntu-from-cd/" title="AdventureWorksDW2008 mdf">AdventureWorksDW2008 mdf</a>, <a href="http://alomohora.com/update-ubuntu-from-cd/" title="tzsqlprocessor example">tzsqlprocessor example</a>, <a href="http://alomohora.com/update-ubuntu-from-cd/" title="update ubuntu from CD">update ubuntu from CD</a></p>]]></content:encoded>
			<wfw:commentRss>http://alomohora.com/update-ubuntu-from-cd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

