<?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>How To Ubuntu &#187; The Basics</title>
	<atom:link href="http://howto-ubuntu.net/category/basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://howto-ubuntu.net</link>
	<description>Focusing on the Long Term Support release -- Lucid 10.04</description>
	<lastBuildDate>Fri, 30 Jul 2010 12:30:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to add the Universe &amp; Multiverse repositories graphically</title>
		<link>http://howto-ubuntu.net/how-to-add-the-universe-multiverse-repositories-graphically/</link>
		<comments>http://howto-ubuntu.net/how-to-add-the-universe-multiverse-repositories-graphically/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 00:13:26 +0000</pubDate>
		<dc:creator>Eli</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[The Basics]]></category>
		<category><![CDATA[repo]]></category>

		<guid isPermaLink="false">http://howto-ubuntu.net/?p=573</guid>
		<description><![CDATA[<p>Here&#8217;s how to add the universe and multiverse repositories.</p>

Open Software Sources. System > Administration > Software Sources
Check the boxes for Community-maintained Open Source software (universe) &#038; Software restricted by copyright or legal issues (multiverse)
Click Close. Another box should pop up asking if you want to reload, click Reload.
If you clicked Close, and a window didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to add the universe and multiverse repositories.</p>
<ol>
<li>Open Software Sources. <strong>System</strong> > <strong>Administration</strong> > <strong>Software Sources</strong></li>
<li>Check the boxes for <strong><em>Community-maintained Open Source software (universe)</em></strong> &#038; <strong><em>Software restricted by copyright or legal issues (multiverse)</em></strong></li>
<li>Click <strong>Close</strong>. Another box should pop up asking if you want to reload, click <strong>Reload</strong>.</li>
<li>If you clicked <strong>Close</strong>, and a window didn&#8217;t pop up, then you must go to <strong>System > Administration > Update Manager</strong></li>
<li>Click the <strong>Check</strong> button.</li>
<li>Now you can begin to install software from the universe &#038; multiverse repositories.</li>
</ol>
<p><a href="http://howto-ubuntu.net/wp-content/uploads/2010/01/ss1.png"><img src="http://howto-ubuntu.net/wp-content/uploads/2010/01/ss1.png" alt="" title="ss1" width="544" height="514" class="aligncenter size-full wp-image-577" /></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowto-ubuntu.net%2Fhow-to-add-the-universe-multiverse-repositories-graphically%2F&amp;linkname=How%20to%20add%20the%20Universe%20%26%23038%3B%20Multiverse%20repositories%20graphically"><img src="http://howto-ubuntu.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howto-ubuntu.net/how-to-add-the-universe-multiverse-repositories-graphically/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is the sudo command?</title>
		<link>http://howto-ubuntu.net/what-is-the-sudo-command/</link>
		<comments>http://howto-ubuntu.net/what-is-the-sudo-command/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 16:27:54 +0000</pubDate>
		<dc:creator>Eli</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[The Basics]]></category>

		<guid isPermaLink="false">http://howto-ubuntu.net/?p=496</guid>
		<description><![CDATA[<p>So, you&#8217;re reading an Ubuntu how to for something, and you come across the sudo command. What in the world is it, and why do you need it? The sudo command is used to allow a regular user to execute a command that requires root privileges.</p>
<p>In addition to the user name you provided at installation, [...]]]></description>
			<content:encoded><![CDATA[<p>So, you&#8217;re reading an Ubuntu how to for something, and you come across the <code>sudo</code> command. What in the world is it, and why do you need it? The <code>sudo</code> command is used to allow a regular user to execute a command that requires <em>root</em> privileges.</p>
<p>In addition to the user name you provided at installation, Ubuntu creates a user called <i>root</i>, except it does not give it a password. This user has the power to do <b>anything</b> to your system. It can delete all of your system files, modify them, anything it wants to. For you to login as this <i>root</i> user, you must first assign it a password with which to login. This is pretty much never necessary for most users to do, so I won&#8217;t be explaining how to do that here.</p>
<p><span id="more-496"></span></p>
<p>There are certain tasks you may need to perform that require the <i>root</i> user&#8217;s level of authority. These include installing software, making changes to system configuration files, updating the system, etc. This is where the <code>sudo</code> command comes into play. That command tells Ubuntu that you want to execute whatever follows it, with the authority of the <i>root</i> user, which as you&#8217;ll remember has complete authority over your system. This is a safety feature. What this accomplishes is only giving you the <i>root</i> authority for the execution of that command, and not giving you all the powers of <i>root</i>, thereby turning you loose on your system with way too much power. It&#8217;s much better this way.</p>
<p>For example&#8230;</p>
<ul>
<li>Installing software from the command line&#8230;
<p><code>sudo apt-get install conky</code></p>
<p>You&#8217;ll then have to enter your password, and Ubuntu will execute the command. Without the <code>sudo</code> command, Ubuntu will deny you permission to run that command.</li>
<li>This same basic thing is happening when you are required to enter your password on the desktop. As in when you update your system by clicking on the update notification icon in the taskbar, and selecting install updates from the window that opens.</li>
</ul>
<p>This is just one more thing that makes Ubuntu so nice and secure.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowto-ubuntu.net%2Fwhat-is-the-sudo-command%2F&amp;linkname=What%20is%20the%20sudo%20command%3F"><img src="http://howto-ubuntu.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howto-ubuntu.net/what-is-the-sudo-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
