<?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>Linux Ask! &#187; Distribution Specific</title>
	<atom:link href="http://www.linuxask.com/topics/distribution-specific/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Wed, 08 Sep 2010 16:01:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Yum repository mirror for old CentOS&#8217; versions</title>
		<link>http://www.linuxask.com/questions/yum-repository-mirror-for-old-centos-versions</link>
		<comments>http://www.linuxask.com/questions/yum-repository-mirror-for-old-centos-versions#comments</comments>
		<pubDate>Sat, 04 Sep 2010 16:18:03 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2280</guid>
		<description><![CDATA[Yum repository mirror for old CentOS' versions
Answer:
Most CentOS' mirrors don't host full mirror of Yum repository for all versions of CentOS. If you are using older version of CentOS, you might one-day found the yum update is broken since the mirror no longer contains the files you needed.
In this case, you can modify the file [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/mirror-a-web-site-using-wget' rel='bookmark' title='Permanent Link: Mirror a web site using wget'>Mirror a web site using wget</a></li>
<li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-mirror-a-directory-to-a-remote-server-over-ssh' rel='bookmark' title='Permanent Link: How to mirror a directory to a remote server over SSH?'>How to mirror a directory to a remote server over SSH?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yum repository mirror for old CentOS' versions</p>
<p><strong>Answer:</strong></p>
<p>Most <strong>CentOS</strong>' mirrors don't host full mirror of <strong>Yum </strong>repository for all versions of CentOS. If you are using older version of CentOS, you might one-day found the yum update is broken since the mirror no longer contains the files you needed.</p>
<p>In this case, you can modify the file<strong> /etc/yum.repos.d/CentOS-Base.repo</strong> and change all paths point to the following:</p>
<pre><code>..
baseurl=http://vault.centos.org/...
..</code></pre>
<p>Then do a <strong>yum update</strong> to reflect the changes.</p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/mirror-a-web-site-using-wget' rel='bookmark' title='Permanent Link: Mirror a web site using wget'>Mirror a web site using wget</a></li>
<li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-mirror-a-directory-to-a-remote-server-over-ssh' rel='bookmark' title='Permanent Link: How to mirror a directory to a remote server over SSH?'>How to mirror a directory to a remote server over SSH?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/yum-repository-mirror-for-old-centos-versions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a User in Linux</title>
		<link>http://www.linuxask.com/questions/add-a-user-in-linux</link>
		<comments>http://www.linuxask.com/questions/add-a-user-in-linux#comments</comments>
		<pubDate>Tue, 31 Aug 2010 07:30:18 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2021</guid>
		<description><![CDATA[Add a User in Linux
Answer:
Add a User in Linux, just use the useradd command:
# sudo useradd -d /home/john -m john
The above command will create the user john and create a home directory which is at /home/john


Related posts:How to delete a folder in Linux recursively?
Display current login user information
Using system directory stack with pushd &#38; popd



Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-delete-a-folder-in-linux-recursively' rel='bookmark' title='Permanent Link: How to delete a folder in Linux recursively?'>How to delete a folder in Linux recursively?</a></li>
<li><a href='http://www.linuxask.com/questions/display-current-login-user-information' rel='bookmark' title='Permanent Link: Display current login user information'>Display current login user information</a></li>
<li><a href='http://www.linuxask.com/questions/using-system-directory-stack-with-pushd-popd' rel='bookmark' title='Permanent Link: Using system directory stack with pushd &amp; popd'>Using system directory stack with pushd &amp; popd</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Add a User in Linux</p>
<p><strong>Answer:</strong></p>
<p>Add a User in Linux, just use the <strong>useradd</strong> command:</p>
<p><code># sudo useradd -d /home/john -m john</code></p>
<p>The above command will create the user <strong>john </strong>and create a home directory which is at <strong>/home/john</strong></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-delete-a-folder-in-linux-recursively' rel='bookmark' title='Permanent Link: How to delete a folder in Linux recursively?'>How to delete a folder in Linux recursively?</a></li>
<li><a href='http://www.linuxask.com/questions/display-current-login-user-information' rel='bookmark' title='Permanent Link: Display current login user information'>Display current login user information</a></li>
<li><a href='http://www.linuxask.com/questions/using-system-directory-stack-with-pushd-popd' rel='bookmark' title='Permanent Link: Using system directory stack with pushd &amp; popd'>Using system directory stack with pushd &amp; popd</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/add-a-user-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install multiple software at the same time using apt-get</title>
		<link>http://www.linuxask.com/questions/install-multiple-software-at-the-same-time-using-apt-get</link>
		<comments>http://www.linuxask.com/questions/install-multiple-software-at-the-same-time-using-apt-get#comments</comments>
		<pubDate>Wed, 18 Aug 2010 07:32:34 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2029</guid>
		<description><![CDATA[Install multiple software at the same time using apt-get
Answer:
It is easy to use apt-get to install multiple softwares at the same time, without executing commands one by one.
E.g.
#  sudo apt-get install curl wget lynx elinks


Related posts:Search for a software/package to install using aptitude
Search for a software/package to install using apt-cache
How do I run a [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-aptitude' rel='bookmark' title='Permanent Link: Search for a software/package to install using aptitude'>Search for a software/package to install using aptitude</a></li>
<li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-apt-cache' rel='bookmark' title='Permanent Link: Search for a software/package to install using apt-cache'>Search for a software/package to install using apt-cache</a></li>
<li><a href='http://www.linuxask.com/questions/how-do-i-run-a-web-browser-from-linux-command-line' rel='bookmark' title='Permanent Link: How do I run a web browser from linux command line?'>How do I run a web browser from linux command line?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Install multiple software at the same time using apt-get</p>
<p><strong>Answer:</strong></p>
<p>It is easy to use<strong> apt-get</strong> to install multiple softwares at the same time, without executing commands one by one.</p>
<p>E.g.</p>
<p><code>#  sudo apt-get install curl wget lynx elinks</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-aptitude' rel='bookmark' title='Permanent Link: Search for a software/package to install using aptitude'>Search for a software/package to install using aptitude</a></li>
<li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-apt-cache' rel='bookmark' title='Permanent Link: Search for a software/package to install using apt-cache'>Search for a software/package to install using apt-cache</a></li>
<li><a href='http://www.linuxask.com/questions/how-do-i-run-a-web-browser-from-linux-command-line' rel='bookmark' title='Permanent Link: How do I run a web browser from linux command line?'>How do I run a web browser from linux command line?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-multiple-software-at-the-same-time-using-apt-get/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Packages in Ubuntu</title>
		<link>http://www.linuxask.com/questions/upgrade-packages-in-ubuntu</link>
		<comments>http://www.linuxask.com/questions/upgrade-packages-in-ubuntu#comments</comments>
		<pubDate>Wed, 11 Aug 2010 07:31:16 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2025</guid>
		<description><![CDATA[Upgrade Packages in Ubuntu
Answer:
From time to time, packages will release new version so your installed packages will also need to keep updated.
To upgrade your system, first update your package index by
# sudo apt-get update
Than upgrade the packages
# sudo apt-get upgrade


Related posts:How to upgrade Ubuntu to newer version
Update the Package Index in Ubuntu
Install sun-java-jdk in Ubuntu [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-upgrade-ubuntu-to-newer-version' rel='bookmark' title='Permanent Link: How to upgrade Ubuntu to newer version'>How to upgrade Ubuntu to newer version</a></li>
<li><a href='http://www.linuxask.com/questions/update-the-package-index-in-ubuntu' rel='bookmark' title='Permanent Link: Update the Package Index in Ubuntu'>Update the Package Index in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Upgrade Packages in Ubuntu</p>
<p><strong>Answer:</strong></p>
<p>From time to time, packages will release new version so your installed packages will also need to keep updated.</p>
<p>To upgrade your system, first update your package index by</p>
<p><code># sudo apt-get update</code></p>
<p>Than upgrade the packages</p>
<p><code># sudo apt-get upgrade</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-upgrade-ubuntu-to-newer-version' rel='bookmark' title='Permanent Link: How to upgrade Ubuntu to newer version'>How to upgrade Ubuntu to newer version</a></li>
<li><a href='http://www.linuxask.com/questions/update-the-package-index-in-ubuntu' rel='bookmark' title='Permanent Link: Update the Package Index in Ubuntu'>Update the Package Index in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/upgrade-packages-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update the Package Index in Ubuntu</title>
		<link>http://www.linuxask.com/questions/update-the-package-index-in-ubuntu</link>
		<comments>http://www.linuxask.com/questions/update-the-package-index-in-ubuntu#comments</comments>
		<pubDate>Fri, 06 Aug 2010 07:31:44 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2027</guid>
		<description><![CDATA[Update the Package Index in Ubuntu
Answer:
In Ubuntu, the package index is managed by the Advanced Packaging Tool (APT).
The index of all the available packages from the repositories is defined in the file /etc/apt/sources.list file. 
To update this package index, use the following command.
# sudo apt-get update
That is it.


Related posts:Upgrade Packages in Ubuntu
Install sun-java-jdk in Ubuntu [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/upgrade-packages-in-ubuntu' rel='bookmark' title='Permanent Link: Upgrade Packages in Ubuntu'>Upgrade Packages in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-upgrade-ubuntu-to-newer-version' rel='bookmark' title='Permanent Link: How to upgrade Ubuntu to newer version'>How to upgrade Ubuntu to newer version</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Update the Package Index in Ubuntu</p>
<p><strong>Answer:</strong></p>
<p>In <strong>Ubuntu</strong>, the package index is managed by the <strong>Advanced Packaging Tool (APT)</strong>.</p>
<p>The index of all the available packages from the repositories is defined in the file <strong>/etc/apt/sources.list</strong> file. </p>
<p>To update this package index, use the following command.</p>
<p><code># sudo apt-get update</code></p>
<p>That is it.</p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/upgrade-packages-in-ubuntu' rel='bookmark' title='Permanent Link: Upgrade Packages in Ubuntu'>Upgrade Packages in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-upgrade-ubuntu-to-newer-version' rel='bookmark' title='Permanent Link: How to upgrade Ubuntu to newer version'>How to upgrade Ubuntu to newer version</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/update-the-package-index-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install the Lucid Light themes (Radiance and Ambiance) in Ubuntu 9.10</title>
		<link>http://www.linuxask.com/questions/install-the-lucid-light-themes-radiance-and-ambiance-in-ubuntu-9-10</link>
		<comments>http://www.linuxask.com/questions/install-the-lucid-light-themes-radiance-and-ambiance-in-ubuntu-9-10#comments</comments>
		<pubDate>Thu, 05 Aug 2010 14:24:02 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1956</guid>
		<description><![CDATA[Install the Lucid Light Themes (Radiance and Ambiance) in Ubuntu 9.10
Answer:
The new Lucid Light themes (Radiance and Ambiance) in Ubuntu 10.04 is very nice and it can also be used in older version of Ubuntu such as Ubuntu 9.10, so you don't need to upgrade if you only want the new themes.
What you need to [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
<li><a href='http://www.linuxask.com/questions/install-apc-for-php-on-ubuntu' rel='bookmark' title='Permanent Link: Install APC for PHP on Ubuntu'>Install APC for PHP on Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-install-ssh-server-in-ubuntu' rel='bookmark' title='Permanent Link: How to install SSH server in Ubuntu?'>How to install SSH server in Ubuntu?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Install the Lucid Light Themes (Radiance and Ambiance) in Ubuntu 9.10</p>
<p><strong>Answer:</strong></p>
<p>The new Lucid Light themes (<strong>Radiance and Ambiance</strong>) in <strong>Ubuntu 10.04 </strong>is very nice and it can also be used in older version of Ubuntu such as<strong> Ubuntu 9.10</strong>, so you don't need to upgrade if you only want the new themes.</p>
<p>What you need to do is the following (for Ubuntu 9.10).</p>
<p>1. Add the repository<br />
<code># sudo add-apt-repository ppa:nilarimogard/webupd8</code></p>
<p>2. Install all the needed files<br />
<code># sudo apt-get update &#038;& sudo apt-get install gtk2-engines-murrine ubuntu-mono light-themes gtk2-engines-aurora</code></p>
<p>3. Change it in action</p>
<p>Reference: <a href="http://www.webupd8.org/2010/03/ubuntu-lucid-light-themes-radiance-and.html">http://www.webupd8.org/2010/03/ubuntu-lucid-light-themes-radiance-and.html</a></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04' rel='bookmark' title='Permanent Link: Install sun-java-jdk in Ubuntu 10.04'>Install sun-java-jdk in Ubuntu 10.04</a></li>
<li><a href='http://www.linuxask.com/questions/install-apc-for-php-on-ubuntu' rel='bookmark' title='Permanent Link: Install APC for PHP on Ubuntu'>Install APC for PHP on Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-install-ssh-server-in-ubuntu' rel='bookmark' title='Permanent Link: How to install SSH server in Ubuntu?'>How to install SSH server in Ubuntu?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-the-lucid-light-themes-radiance-and-ambiance-in-ubuntu-9-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install sun-java-jdk in Ubuntu 10.04</title>
		<link>http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04</link>
		<comments>http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04#comments</comments>
		<pubDate>Wed, 04 Aug 2010 11:54:07 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1935</guid>
		<description><![CDATA[Install sun-java-jdk in Ubuntu 10.04
Answer:
To install the offical Sun (now Oracle) JDK in Ubuntu 10.04, you need to do the following in terminal.
1. Add the extra repository 
# sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
2. Update the local package index
# sudo apt-get update
3. Install the JDK and plugin
# sudo apt-get install sun-java6-jdk sun-java6-plugin
4. And finally, change [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/install-java-runtime-environment-under-ubuntu' rel='bookmark' title='Permanent Link: Install Java Runtime environment under Ubuntu'>Install Java Runtime environment under Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/update-the-package-index-in-ubuntu' rel='bookmark' title='Permanent Link: Update the Package Index in Ubuntu'>Update the Package Index in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-the-lucid-light-themes-radiance-and-ambiance-in-ubuntu-9-10' rel='bookmark' title='Permanent Link: Install the Lucid Light themes (Radiance and Ambiance) in Ubuntu 9.10'>Install the Lucid Light themes (Radiance and Ambiance) in Ubuntu 9.10</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Install sun-java-jdk in Ubuntu 10.04</p>
<p><strong>Answer:</strong></p>
<p>To install the offical <strong>Sun </strong>(now Oracle) JDK in <strong>Ubuntu 10.04</strong>, you need to do the following in terminal.</p>
<p>1. Add the extra repository </p>
<pre><code># sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"</code></pre>
<p>2. Update the local package index</p>
<p><code># sudo apt-get update</code></p>
<p>3. Install the JDK and plugin</p>
<p><code># sudo apt-get install sun-java6-jdk sun-java6-plugin</code></p>
<p>4. And finally, change you system to use the newly installed JDK.</p>
<p><code># sudo update-java-alternatives -s java-6-sun</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/install-java-runtime-environment-under-ubuntu' rel='bookmark' title='Permanent Link: Install Java Runtime environment under Ubuntu'>Install Java Runtime environment under Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/update-the-package-index-in-ubuntu' rel='bookmark' title='Permanent Link: Update the Package Index in Ubuntu'>Update the Package Index in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-the-lucid-light-themes-radiance-and-ambiance-in-ubuntu-9-10' rel='bookmark' title='Permanent Link: Install the Lucid Light themes (Radiance and Ambiance) in Ubuntu 9.10'>Install the Lucid Light themes (Radiance and Ambiance) in Ubuntu 9.10</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-sun-java-jdk-in-ubuntu-10-04/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove packages and config files in Ubuntu</title>
		<link>http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu</link>
		<comments>http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu#comments</comments>
		<pubDate>Fri, 30 Jul 2010 15:20:20 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1922</guid>
		<description><![CDATA[Remove packages and config files in Ubuntu
Answer:
If you want to remove a package in Ubuntu, you can use apt-get remove, e.g.
# sudo apt-get remove php5
However, the config files will NOT be removed.
To remove the config files also, you can use  apt-get purge, e.g.
# sudo apt-get purge php5


Related posts:Upgrade Packages in Ubuntu
Update the Package Index [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/upgrade-packages-in-ubuntu' rel='bookmark' title='Permanent Link: Upgrade Packages in Ubuntu'>Upgrade Packages in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/update-the-package-index-in-ubuntu' rel='bookmark' title='Permanent Link: Update the Package Index in Ubuntu'>Update the Package Index in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/remove-package-with-yum' rel='bookmark' title='Permanent Link: Remove package with Yum'>Remove package with Yum</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Remove packages and config files in Ubuntu</p>
<p><strong>Answer:</strong></p>
<p>If you want to remove a package in <strong>Ubuntu</strong>, you can use<strong> apt-get remove</strong>, e.g.</p>
<p><code># sudo apt-get remove php5</code></p>
<p>However, the config files will <strong>NOT </strong>be removed.</p>
<p>To remove the config files also, you can use <strong> apt-get purge</strong>, e.g.</p>
<p><code># sudo apt-get purge php5</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/upgrade-packages-in-ubuntu' rel='bookmark' title='Permanent Link: Upgrade Packages in Ubuntu'>Upgrade Packages in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/update-the-package-index-in-ubuntu' rel='bookmark' title='Permanent Link: Update the Package Index in Ubuntu'>Update the Package Index in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/remove-package-with-yum' rel='bookmark' title='Permanent Link: Remove package with Yum'>Remove package with Yum</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check which Apache modules are loaded</title>
		<link>http://www.linuxask.com/questions/check-which-apache-modules-are-loaded</link>
		<comments>http://www.linuxask.com/questions/check-which-apache-modules-are-loaded#comments</comments>
		<pubDate>Sat, 03 Jul 2010 04:07:03 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1821</guid>
		<description><![CDATA[Check which Apache modules are loaded
Answer:
To check which Apache  modules are loaded, in RHEL/Fedora/CentOS, type
# httpd -M
In Debian/Ubuntu
# sudo apache2ctl -M 


Related posts:How to tell if Apache 2 is using prefork or worker MPM?
Remove default Fedora/RHEL/CentOS default Apache welcome page
Install GD Library for PHP on Linux



Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-tell-if-apache-2-is-using-prefork-or-worker-mpm' rel='bookmark' title='Permanent Link: How to tell if Apache 2 is using prefork or worker MPM?'>How to tell if Apache 2 is using prefork or worker MPM?</a></li>
<li><a href='http://www.linuxask.com/questions/remove-default-fedorarhelcentos-default-apache-welcome-page' rel='bookmark' title='Permanent Link: Remove default Fedora/RHEL/CentOS default Apache welcome page'>Remove default Fedora/RHEL/CentOS default Apache welcome page</a></li>
<li><a href='http://www.linuxask.com/questions/install-gd-library-for-php-on-linux' rel='bookmark' title='Permanent Link: Install GD Library for PHP on Linux'>Install GD Library for PHP on Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Check which Apache modules are loaded</p>
<p><strong>Answer:</strong></p>
<p>To check which <strong>Apache </strong> modules are loaded, in <strong>RHEL/Fedora/CentOS</strong>, type</p>
<p><code># httpd -M</code></p>
<p>In <strong>Debian/Ubuntu</strong></p>
<p><code># sudo apache2ctl -M </code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-tell-if-apache-2-is-using-prefork-or-worker-mpm' rel='bookmark' title='Permanent Link: How to tell if Apache 2 is using prefork or worker MPM?'>How to tell if Apache 2 is using prefork or worker MPM?</a></li>
<li><a href='http://www.linuxask.com/questions/remove-default-fedorarhelcentos-default-apache-welcome-page' rel='bookmark' title='Permanent Link: Remove default Fedora/RHEL/CentOS default Apache welcome page'>Remove default Fedora/RHEL/CentOS default Apache welcome page</a></li>
<li><a href='http://www.linuxask.com/questions/install-gd-library-for-php-on-linux' rel='bookmark' title='Permanent Link: Install GD Library for PHP on Linux'>Install GD Library for PHP on Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/check-which-apache-modules-are-loaded/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change MAC address</title>
		<link>http://www.linuxask.com/questions/how-to-change-mac-address</link>
		<comments>http://www.linuxask.com/questions/how-to-change-mac-address#comments</comments>
		<pubDate>Tue, 29 Jun 2010 17:12:24 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1803</guid>
		<description><![CDATA[How to change MAC address
Answer:
To change MAC address, you need to take the network interface
# sudo ifconfig eth1 down
Then change it by
# sudo ifconfig eth1 hw ether 00:01:02:03:04:05


Related posts:How to take down/up a network interface in Linux?
How to get the IP address assigned to eth0 by a single command
How to change hostname in RHEL/CentOS?



Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-take-downup-a-network-interface-in-linux' rel='bookmark' title='Permanent Link: How to take down/up a network interface in Linux?'>How to take down/up a network interface in Linux?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-get-the-ip-address-assigned-to-eth0-by-a-single-command' rel='bookmark' title='Permanent Link: How to get the IP address assigned to eth0 by a single command'>How to get the IP address assigned to eth0 by a single command</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-change-hostname-in-rhelcentos' rel='bookmark' title='Permanent Link: How to change hostname in RHEL/CentOS?'>How to change hostname in RHEL/CentOS?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to change MAC address</p>
<p><strong>Answer:</strong></p>
<p>To change <strong>MAC address</strong>, you need to take the network interface</p>
<p><code># sudo ifconfig eth1 down</code></p>
<p>Then change it by</p>
<p><code># sudo ifconfig eth1 hw ether 00:01:02:03:04:05</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-take-downup-a-network-interface-in-linux' rel='bookmark' title='Permanent Link: How to take down/up a network interface in Linux?'>How to take down/up a network interface in Linux?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-get-the-ip-address-assigned-to-eth0-by-a-single-command' rel='bookmark' title='Permanent Link: How to get the IP address assigned to eth0 by a single command'>How to get the IP address assigned to eth0 by a single command</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-change-hostname-in-rhelcentos' rel='bookmark' title='Permanent Link: How to change hostname in RHEL/CentOS?'>How to change hostname in RHEL/CentOS?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-change-mac-address/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
