<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Troubleshooting ./configure, make and make install Tutorial</title>
	<atom:link href="http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial</link>
	<description>Quality Linux tutorials without clutter</description>
	<lastBuildDate>Sat, 14 May 2011 06:24:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: 解决./configure ，make，make install的报错_Ubuntu使用技巧 &#124; UbuntuSoft</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-17368</link>
		<dc:creator>解决./configure ，make，make install的报错_Ubuntu使用技巧 &#124; UbuntuSoft</dc:creator>
		<pubDate>Sat, 14 May 2011 06:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-17368</guid>
		<description>[...] 原文： http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] 原文： http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rechosen</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-2693</link>
		<dc:creator>rechosen</dc:creator>
		<pubDate>Sun, 26 Sep 2010 10:48:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-2693</guid>
		<description>Hello Prags,

Let me try to explain things in simple words: when you just use your computer, you usually do so as a user with normal rights. It means you have the permission to do everything with the files in your own home directory and to run programs globally installed on the computer. However, if you want to &lt;em&gt;install&lt;/em&gt; a new program globally, you need permissions for that. A normal user doesn&#039;t have those, but the &lt;em&gt;root&lt;/em&gt; user (that&#039;s where he comes in) has all permissions. Therefore, you usually have to become root to install a new program. You can become root by executing the command &quot;su&quot; (or &quot;sudo su&quot; on Ubuntu variants) and entering the root password.

If you don&#039;t have the root password, you&#039;ll have to install the software into your home directory, which requires a few parameters to be set right, depending on the exact program you&#039;re installing. In general, I prefer installing system-wide as the files are placed where other programs that might depend on them expect them to be. I hope this helps, let me know if you need more assistance.

Rechosen</description>
		<content:encoded><![CDATA[<p>Hello Prags,</p>
<p>Let me try to explain things in simple words: when you just use your computer, you usually do so as a user with normal rights. It means you have the permission to do everything with the files in your own home directory and to run programs globally installed on the computer. However, if you want to <em>install</em> a new program globally, you need permissions for that. A normal user doesn't have those, but the <em>root</em> user (that's where he comes in) has all permissions. Therefore, you usually have to become root to install a new program. You can become root by executing the command "su" (or "sudo su" on Ubuntu variants) and entering the root password.</p>
<p>If you don't have the root password, you'll have to install the software into your home directory, which requires a few parameters to be set right, depending on the exact program you're installing. In general, I prefer installing system-wide as the files are placed where other programs that might depend on them expect them to be. I hope this helps, let me know if you need more assistance.</p>
<p>Rechosen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prags</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-2688</link>
		<dc:creator>Prags</dc:creator>
		<pubDate>Sun, 26 Sep 2010 08:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-2688</guid>
		<description>I have to install a software. These are the steps that i am supposed to follow:

Basic Installation
==================

* so far a &quot;./configure &amp;&amp; make &amp;&amp; make install&quot; should do it for you
  (of course you need to be root to do &quot;make install&quot; depending on
  install prefix)

But,when i give the command:

hp@ubuntu:~/i8086emu-src-0.9.2$ ./configure &amp;&amp; make &amp;&amp; make install

I get the following errors:

mkdir -p -- /usr/local/info/i8086emu/examples
mkdir: cannot create directory `/usr/local/info&#039;: Permission denied
make[1]: *** [install] Error 1
make[1]: Leaving directory `/home/hp/i8086emu-src-0.9.2/src&#039;
make: *** [install] Error 2

Can anyone explain me the meaning of the errors and how to solve it?
Also, i am not able to understand the meaning of &quot;of course you need to be root to do &quot;make install&quot; .</description>
		<content:encoded><![CDATA[<p>I have to install a software. These are the steps that i am supposed to follow:</p>
<p>Basic Installation<br />
==================</p>
<p>* so far a "./configure &amp;&amp; make &amp;&amp; make install" should do it for you<br />
  (of course you need to be root to do "make install" depending on<br />
  install prefix)</p>
<p>But,when i give the command:</p>
<p>hp@ubuntu:~/i8086emu-src-0.9.2$ ./configure &amp;&amp; make &amp;&amp; make install</p>
<p>I get the following errors:</p>
<p>mkdir -p -- /usr/local/info/i8086emu/examples<br />
mkdir: cannot create directory `/usr/local/info': Permission denied<br />
make[1]: *** [install] Error 1<br />
make[1]: Leaving directory `/home/hp/i8086emu-src-0.9.2/src'<br />
make: *** [install] Error 2</p>
<p>Can anyone explain me the meaning of the errors and how to solve it?<br />
Also, i am not able to understand the meaning of "of course you need to be root to do "make install" .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: how to solve the problem :the GCC4.4 is not compatible with the boost.signals1.34.1</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-2437</link>
		<dc:creator>how to solve the problem :the GCC4.4 is not compatible with the boost.signals1.34.1</dc:creator>
		<pubDate>Thu, 16 Sep 2010 06:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-2437</guid>
		<description>[...] This links will be usefull for you   http://www.linuxtutorialblog.com/pos...stall-tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] This links will be usefull for you   <a href="http://www.linuxtutorialblog.com/pos...stall-tutorial" rel="nofollow">http://www.linuxtutorialblog.com/pos...stall-tutorial</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 解决./configure ，make，make install的报错 &#124; Ubuntusoft</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-2036</link>
		<dc:creator>解决./configure ，make，make install的报错 &#124; Ubuntusoft</dc:creator>
		<pubDate>Mon, 23 Aug 2010 02:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-2036</guid>
		<description>[...] 原文： http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] 原文： http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bowling tricks</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-145</link>
		<dc:creator>bowling tricks</dc:creator>
		<pubDate>Mon, 08 Feb 2010 19:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-145</guid>
		<description>Topic: Thanks&lt;br /&gt;&lt;p&gt;Luckily, I haven&#039;t had much of a problem with this.  I have had a few errors here and there, but was able to figure most of them out.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Topic: Thanks
<p>Luckily, I haven't had much of a problem with this.  I have had a few errors here and there, but was able to figure most of them out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: InstallSoftware</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-144</link>
		<dc:creator>InstallSoftware</dc:creator>
		<pubDate>Tue, 02 Feb 2010 04:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-144</guid>
		<description>Topic: Install Software&lt;br /&gt;&lt;p&gt;Hi there.&lt;br /&gt;
Great installation help...thanks, fixed my problem.&lt;br /&gt;
Anyone reading this guys stuff should bookmark it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Topic: Install Software
<p>Hi there.<br />
Great installation help...thanks, fixed my problem.<br />
Anyone reading this guys stuff should bookmark it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JohnnyCash</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-143</link>
		<dc:creator>JohnnyCash</dc:creator>
		<pubDate>Mon, 01 Feb 2010 02:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-143</guid>
		<description>Topic: Installation Help&lt;br /&gt;&lt;p&gt;Hi there.&lt;br /&gt;
Thank you for a great post. It was very helpfull.&lt;br /&gt;
Anyone reading this post should bookmark this guys contents.&lt;/p&gt;
&lt;p&gt;I have a new PC and needed some installation help so i went over to http://www.InstallSoftware.com but they did not provide me with the in depth&lt;br /&gt;
info this guy did. he kicks all the bigger sites&#039; butts.&lt;/p&gt;
&lt;p&gt;Thanks Again&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Topic: Installation Help
<p>Hi there.<br />
Thank you for a great post. It was very helpfull.<br />
Anyone reading this post should bookmark this guys contents.</p>
<p>I have a new PC and needed some installation help so i went over to <a href="http://www.InstallSoftware.com" rel="nofollow">http://www.InstallSoftware.com</a> but they did not provide me with the in depth<br />
info this guy did. he kicks all the bigger sites' butts.</p>
<p>Thanks Again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-141</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 13 Jul 2009 21:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-141</guid>
		<description>Topic: Login id &amp; pw not accepted&lt;br /&gt;&lt;p&gt;After installing and setting up Linux RedHat for the root and 1 user account, I was unable to login.  The id &amp; pw were not recognised.  &lt;/p&gt;
&lt;p&gt;How can I access the system without re-installing the opr sys again?  If all else fails, that is what I&#039;ll have to do.  What other options do I have? &lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;
James&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Topic: Login id &#038; pw not accepted
<p>After installing and setting up Linux RedHat for the root and 1 user account, I was unable to login.  The id &amp; pw were not recognised.  </p>
<p>How can I access the system without re-installing the opr sys again?  If all else fails, that is what I'll have to do.  What other options do I have? </p>
<p>Thanks,<br />
James</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dannysfather</title>
		<link>http://www.linuxtutorialblog.com/post/troubleshooting-configure-make-and-make-install-tutorial#comment-142</link>
		<dc:creator>dannysfather</dc:creator>
		<pubDate>Wed, 12 Nov 2008 07:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxtutorialblog.com/?p=26#comment-142</guid>
		<description>Topic: Excellent Tutorial!&lt;br /&gt;&lt;p&gt;After years of stumbling about, attempting to install apps, this single page quickly explained what I needed to know, especially the first 2 errors.&lt;/p&gt;
&lt;p&gt;Thank you very much Rechosen!&lt;/p&gt;
&lt;p&gt;I didn&#039;t know &quot;make&quot; would take so long.&lt;br /&gt;
I would have &quot;xkilled&quot; the terminal, except I found another webpage which mentioned long MAKE times as average.&lt;/p&gt;
&lt;p&gt;Thankyou Thankyou Thankyou!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Topic: Excellent Tutorial!
<p>After years of stumbling about, attempting to install apps, this single page quickly explained what I needed to know, especially the first 2 errors.</p>
<p>Thank you very much Rechosen!</p>
<p>I didn't know "make" would take so long.<br />
I would have "xkilled" the terminal, except I found another webpage which mentioned long MAKE times as average.</p>
<p>Thankyou Thankyou Thankyou!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

