<?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; Debian</title>
	<atom:link href="http://www.linuxask.com/topics/distribution-specific/debian/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>Tue, 05 May 2015 07:15:40 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Upgrade a single package in Ubuntu</title>
		<link>http://www.linuxask.com/questions/upgrade-a-single-package-in-ubuntu</link>
		<comments>http://www.linuxask.com/questions/upgrade-a-single-package-in-ubuntu#comments</comments>
		<pubDate>Sat, 17 Nov 2012 04:12:28 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4079</guid>
		<description><![CDATA[Upgrade a single package in Ubuntu Answer: To upgrade a single package, first need to perform an update first. # sudo apt-get update Then use the install sub command to perform an upgrade, e.g. apache2 #sudo apt-get install apache2<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-upgrade-a-single-package-in-ubuntu" rel="bookmark" title="How to upgrade a single package in Ubuntu">How to upgrade a single package in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/upgrade-packages-in-ubuntu" rel="bookmark" title="Upgrade Packages in Ubuntu">Upgrade Packages in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-upgrade-ubuntu-to-newer-version" rel="bookmark" title="How to upgrade Ubuntu to newer version">How to upgrade Ubuntu to newer version </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Upgrade a single package in Ubuntu</p>
<p><strong>Answer:</strong></p>
<p>To upgrade a single package, first need to perform an update first.</p>
<p><code># sudo apt-get update</code></p>
<p>Then use the <strong>install</strong> sub command to perform an upgrade, e.g. <strong>apache2</strong></p>
<p><code>#sudo apt-get install apache2</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-upgrade-a-single-package-in-ubuntu" rel="bookmark" title="How to upgrade a single package in Ubuntu">How to upgrade a single package in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/upgrade-packages-in-ubuntu" rel="bookmark" title="Upgrade Packages in Ubuntu">Upgrade Packages in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-upgrade-ubuntu-to-newer-version" rel="bookmark" title="How to upgrade Ubuntu to newer version">How to upgrade Ubuntu to newer version </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/upgrade-a-single-package-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Render web page using PyQt</title>
		<link>http://www.linuxask.com/questions/render-web-page-using-pyqt</link>
		<comments>http://www.linuxask.com/questions/render-web-page-using-pyqt#comments</comments>
		<pubDate>Wed, 16 Mar 2011 05:10:54 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2860</guid>
		<description><![CDATA[Render web page using PyQt Answer: Qt bindings to WebKit have been added since 4.4, so you can use PyQt to script the browser (Webkit based). Firstly, make sure you have installed the need packages: # sudo apt-get install libqt4-core libqt4-webkit python-qt4 Then you can write a simple script to test, e.g. #!/usr/bin/env python import <a href='http://www.linuxask.com/questions/render-web-page-using-pyqt' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-debug-in-python" rel="bookmark" title="How to debug in Python?">How to debug in Python? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program" rel="bookmark" title="How to perform syntax check for Python program">How to perform syntax check for Python program </a></li>
<li><a href="http://www.linuxask.com/questions/write-python-script-using-utf-8" rel="bookmark" title="Write Python script using utf-8">Write Python script using utf-8 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Render web page using PyQt</p>
<p><strong>Answer:</strong></p>
<p><strong>Qt </strong>bindings to WebKit have been added since 4.4, so you can use <strong>PyQt </strong>to script the browser (<strong>Webkit </strong>based).</p>
<p>Firstly, make sure you have installed the need packages:</p>
<p><code># sudo apt-get install  libqt4-core libqt4-webkit python-qt4</code></p>
<p>Then you can write a simple script to test, e.g.</p>
<pre><code>#!/usr/bin/env python

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *

app = QApplication(sys.argv)

web = QWebView()
web.load(QUrl("http://www.google.com"))
web.show()

sys.exit(app.exec_())
</code></pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-debug-in-python" rel="bookmark" title="How to debug in Python?">How to debug in Python? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program" rel="bookmark" title="How to perform syntax check for Python program">How to perform syntax check for Python program </a></li>
<li><a href="http://www.linuxask.com/questions/write-python-script-using-utf-8" rel="bookmark" title="Write Python script using utf-8">Write Python script using utf-8 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/render-web-page-using-pyqt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove downloaded archive files from apt-get</title>
		<link>http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get</link>
		<comments>http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get#comments</comments>
		<pubDate>Fri, 29 Oct 2010 09:23:39 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2487</guid>
		<description><![CDATA[Remove downloaded archive files from apt-get Answer: To remove ownloaded archive files from apt-get to save spaces, try the following command: # sudo apt-get clean So all the unneeded archive files will be removed.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu" rel="bookmark" title="Remove packages and config files in Ubuntu">Remove packages and config files in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository" rel="bookmark" title="Remove un-staged files or directories from Git repository">Remove un-staged files or directories from Git repository </a></li>
<li><a href="http://www.linuxask.com/questions/erase-old-downloaded-packages-from-apt-gets-cache" rel="bookmark" title="Erase old downloaded packages from apt-get&#8217;s cache">Erase old downloaded packages from apt-get&#8217;s cache </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Remove downloaded archive files from apt-get</p>
<p><strong>Answer:</strong></p>
<p>To remove ownloaded archive files from apt-get to save spaces, try the following command:</p>
<p><code># sudo apt-get clean</code></p>
<p>So all the unneeded  archive files will be removed.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu" rel="bookmark" title="Remove packages and config files in Ubuntu">Remove packages and config files in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository" rel="bookmark" title="Remove un-staged files or directories from Git repository">Remove un-staged files or directories from Git repository </a></li>
<li><a href="http://www.linuxask.com/questions/erase-old-downloaded-packages-from-apt-gets-cache" rel="bookmark" title="Erase old downloaded packages from apt-get&#8217;s cache">Erase old downloaded packages from apt-get&#8217;s cache </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compress and decompress file using 7zip</title>
		<link>http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip</link>
		<comments>http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip#comments</comments>
		<pubDate>Tue, 26 Oct 2010 09:04:44 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2434</guid>
		<description><![CDATA[Compress and decompress file using 7zip Answer: 7zip is a well known compression program if you need a very small file size, i.e. high compression ratio. To install under Ubuntu/Debian: # sudo apt-get install p7zip To compress a file # p7zip test.txt To decompress a file # p7zip -d test.txt.7z<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/can-i-use-gunzip-to-decompress-a-zip-file" rel="bookmark" title="Can I use gunzip to decompress a zip file?">Can I use gunzip to decompress a zip file? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-compress-a-directory-to-a-zip-file" rel="bookmark" title="How to compress a directory to a zip file">How to compress a directory to a zip file </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-zip-a-file-in-ubuntu" rel="bookmark" title="How to zip a file in Ubuntu?">How to zip a file in Ubuntu? </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Compress and decompress file using 7zip</p>
<p><strong>Answer:</strong></p>
<p><strong>7zip </strong>is a well known compression program if you need a very small file size, i.e. high compression ratio.</p>
<p>To install under Ubuntu/Debian:</p>
<p><code># sudo apt-get install p7zip</code></p>
<p>To compress a file</p>
<p><code># p7zip test.txt</code></p>
<p>To decompress a file</p>
<p><code>#  p7zip -d test.txt.7z</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/can-i-use-gunzip-to-decompress-a-zip-file" rel="bookmark" title="Can I use gunzip to decompress a zip file?">Can I use gunzip to decompress a zip file? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-compress-a-directory-to-a-zip-file" rel="bookmark" title="How to compress a directory to a zip file">How to compress a directory to a zip file </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-zip-a-file-in-ubuntu" rel="bookmark" title="How to zip a file in Ubuntu?">How to zip a file in Ubuntu? </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to completely uninstall a package in Ubuntu/Debian?</title>
		<link>http://www.linuxask.com/questions/how-to-completely-uninstall-a-package-in-ubuntudebian</link>
		<comments>http://www.linuxask.com/questions/how-to-completely-uninstall-a-package-in-ubuntudebian#comments</comments>
		<pubDate>Sun, 24 Oct 2010 08:51:46 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2442</guid>
		<description><![CDATA[How to completely uninstall a package in Ubuntu/Debian? Answer: To completely uninstall a package in Ubuntu/Debian, you can use the command below: # sudo apt-get --purge remove PACKAGE That's it.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu" rel="bookmark" title="Remove packages and config files in Ubuntu">Remove packages and config files in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/remove-default-debianubuntu-default-apache-welcome-page" rel="bookmark" title="Remove default Debian/Ubuntu default Apache welcome page">Remove default Debian/Ubuntu default Apache welcome page </a></li>
<li><a href="http://www.linuxask.com/questions/displays-information-about-package-in-ubuntu" rel="bookmark" title="Displays information about package in Ubuntu">Displays information about package in Ubuntu </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to completely uninstall a package in Ubuntu/Debian?</p>
<p><strong>Answer:</strong></p>
<p>To completely uninstall a package in Ubuntu/Debian, you can use the command below:</p>
<p><code># sudo apt-get --purge remove PACKAGE</code></p>
<p>That's it.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu" rel="bookmark" title="Remove packages and config files in Ubuntu">Remove packages and config files in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/remove-default-debianubuntu-default-apache-welcome-page" rel="bookmark" title="Remove default Debian/Ubuntu default Apache welcome page">Remove default Debian/Ubuntu default Apache welcome page </a></li>
<li><a href="http://www.linuxask.com/questions/displays-information-about-package-in-ubuntu" rel="bookmark" title="Displays information about package in Ubuntu">Displays information about package in Ubuntu </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-completely-uninstall-a-package-in-ubuntudebian/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><![CDATA[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<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/add-a-user-to-group-in-linux" rel="bookmark" title="Add a user to group in Linux">Add a user to group in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/change-to-the-home-directory-in-linux" rel="bookmark" title="Change to the home directory in Linux">Change to the home directory in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-rename-a-user-in-linux" rel="bookmark" title="How to rename a user in Linux?">How to rename a user in Linux? </a></li>
</ol>
</div>
]]></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>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/add-a-user-to-group-in-linux" rel="bookmark" title="Add a user to group in Linux">Add a user to group in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/change-to-the-home-directory-in-linux" rel="bookmark" title="Change to the home directory in Linux">Change to the home directory in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-rename-a-user-in-linux" rel="bookmark" title="How to rename a user in Linux?">How to rename a user in Linux? </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/add-a-user-in-linux/feed</wfw:commentRss>
		<slash:comments>1</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><![CDATA[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<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-apt-cache" rel="bookmark" title="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/search-for-a-softwarepackage-to-install-using-aptitude" rel="bookmark" title="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/how-do-i-run-a-web-browser-from-linux-command-line" rel="bookmark" title="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>
</div>
]]></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>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-apt-cache" rel="bookmark" title="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/search-for-a-softwarepackage-to-install-using-aptitude" rel="bookmark" title="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/how-do-i-run-a-web-browser-from-linux-command-line" rel="bookmark" title="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>
</div>
]]></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>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><![CDATA[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.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/add-personal-package-archives-ppa-to-the-current-repository-in-ubuntu" rel="bookmark" title="Add Personal Package Archives (PPA) to the current repository in Ubuntu">Add Personal Package Archives (PPA) to the current repository in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/upgrade-a-single-package-in-ubuntu" rel="bookmark" title="Upgrade a single package in Ubuntu">Upgrade a single package in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-completely-uninstall-a-package-in-ubuntudebian" rel="bookmark" title="How to completely uninstall a package in Ubuntu/Debian?">How to completely uninstall a package in Ubuntu/Debian? </a></li>
</ol>
</div>
]]></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>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/add-personal-package-archives-ppa-to-the-current-repository-in-ubuntu" rel="bookmark" title="Add Personal Package Archives (PPA) to the current repository in Ubuntu">Add Personal Package Archives (PPA) to the current repository in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/upgrade-a-single-package-in-ubuntu" rel="bookmark" title="Upgrade a single package in Ubuntu">Upgrade a single package in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-completely-uninstall-a-package-in-ubuntudebian" rel="bookmark" title="How to completely uninstall a package in Ubuntu/Debian?">How to completely uninstall a package in Ubuntu/Debian? </a></li>
</ol></p>
</div>
]]></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>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><![CDATA[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<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get" rel="bookmark" title="Remove downloaded archive files from apt-get">Remove downloaded archive files from apt-get </a></li>
<li><a href="http://www.linuxask.com/questions/upgrade-packages-in-ubuntu" rel="bookmark" title="Upgrade Packages in Ubuntu">Upgrade Packages in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-a-locale-in-ubuntu-server" rel="bookmark" title="How to remove a locale in Ubuntu server">How to remove a locale in Ubuntu server </a></li>
</ol>
</div>
]]></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>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get" rel="bookmark" title="Remove downloaded archive files from apt-get">Remove downloaded archive files from apt-get </a></li>
<li><a href="http://www.linuxask.com/questions/upgrade-packages-in-ubuntu" rel="bookmark" title="Upgrade Packages in Ubuntu">Upgrade Packages in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-a-locale-in-ubuntu-server" rel="bookmark" title="How to remove a locale in Ubuntu server">How to remove a locale in Ubuntu server </a></li>
</ol></p>
</div>
]]></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><![CDATA[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<div class='yarpp-related-rss'>

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="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="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/check-the-number-of-active-apache-connection" rel="bookmark" title="Check the number of active Apache connection">Check the number of active Apache connection </a></li>
</ol>
</div>
]]></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>
<div class='yarpp-related-rss'>
<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="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="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/check-the-number-of-active-apache-connection" rel="bookmark" title="Check the number of active Apache connection">Check the number of active Apache connection </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/check-which-apache-modules-are-loaded/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
