<?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>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>How to disable MySQL from autostart when Ubuntu bootup</title>
		<link>http://www.linuxask.com/questions/how-to-disable-mysql-from-autostart-when-ubuntu-bootup</link>
		<comments>http://www.linuxask.com/questions/how-to-disable-mysql-from-autostart-when-ubuntu-bootup#comments</comments>
		<pubDate>Sat, 18 May 2013 15:18:42 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4249</guid>
		<description><![CDATA[How to disable MySQL from autostart when Ubuntu bootup Answer: A newer version of MySQL use upstart to autostart when system bootup, to disable it # sudo mkdir /etc/init.disabled # sudo mv /etc/init/mysql.conf /etc/init.disabled/<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/disable-a-service-in-ubuntu-using-upstart" rel="bookmark" title="Disable a service in Ubuntu using upstart">Disable a service in Ubuntu using upstart </a></li>
<li><a href="http://www.linuxask.com/questions/etcinittab-is-missing-in-ubuntuetcinittab-is-missing-in-ubuntu" rel="bookmark" title="/etc/inittab is missing in Ubuntu">/etc/inittab is missing in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/disable-dns-hostname-lookup-in-mysql" rel="bookmark" title="Disable DNS hostname lookup in MySQL">Disable DNS hostname lookup in MySQL </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to disable MySQL from autostart when Ubuntu bootup</p>
<p><strong>Answer:</strong></p>
<p>A newer version of MySQL use upstart to autostart when system bootup, to disable it</p>
<pre># sudo mkdir /etc/init.disabled
# sudo mv /etc/init/mysql.conf /etc/init.disabled/
</pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/disable-a-service-in-ubuntu-using-upstart" rel="bookmark" title="Disable a service in Ubuntu using upstart">Disable a service in Ubuntu using upstart </a></li>
<li><a href="http://www.linuxask.com/questions/etcinittab-is-missing-in-ubuntuetcinittab-is-missing-in-ubuntu" rel="bookmark" title="/etc/inittab is missing in Ubuntu">/etc/inittab is missing in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/disable-dns-hostname-lookup-in-mysql" rel="bookmark" title="Disable DNS hostname lookup in MySQL">Disable DNS hostname lookup in MySQL </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-disable-mysql-from-autostart-when-ubuntu-bootup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Removed opened port in ufw</title>
		<link>http://www.linuxask.com/questions/removed-opened-port-in-ufw</link>
		<comments>http://www.linuxask.com/questions/removed-opened-port-in-ufw#comments</comments>
		<pubDate>Fri, 20 Jan 2012 09:47:08 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ufw]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3631</guid>
		<description><![CDATA[Removed opened port in ufw Answer: If you have opened a port using the ufw command in Ubuntu, but now you want to delete it, you can.. # sudo ufw delete allow 8080/tcp And then do a reload # # sudo ufw reload That's all.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/open-a-tcp-port-in-ubuntus-ufw-firewall" rel="bookmark" title="Open a TCP port in Ubuntu&#8217;s ufw firewall">Open a TCP port in Ubuntu&#8217;s ufw firewall </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-reload-an-opened-file-with-vim" rel="bookmark" title="How to reload an opened file with vim">How to reload an opened file with vim </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-recover-a-deleted-file-but-still-being-opened-in-linux" rel="bookmark" title="How to recover a deleted file (but still being opened) in Linux?">How to recover a deleted file (but still being opened) in Linux? </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Removed opened port in ufw</p>
<p><strong>Answer:</strong></p>
<p>If you have opened a port using the ufw command in Ubuntu, but now you want to delete it, you can..</p>
<p><code> # sudo ufw delete allow 8080/tcp </code></p>
<p>And then do a reload</p>
<p><code># # sudo ufw reload</code></p>
<p>That's all.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/open-a-tcp-port-in-ubuntus-ufw-firewall" rel="bookmark" title="Open a TCP port in Ubuntu&#8217;s ufw firewall">Open a TCP port in Ubuntu&#8217;s ufw firewall </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-reload-an-opened-file-with-vim" rel="bookmark" title="How to reload an opened file with vim">How to reload an opened file with vim </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-recover-a-deleted-file-but-still-being-opened-in-linux" rel="bookmark" title="How to recover a deleted file (but still being opened) in Linux?">How to recover a deleted file (but still being opened) in Linux? </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/removed-opened-port-in-ufw/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to perform a reverse DNS lookup in Linux</title>
		<link>http://www.linuxask.com/questions/how-to-perform-a-reverse-dns-lookup-in-linux</link>
		<comments>http://www.linuxask.com/questions/how-to-perform-a-reverse-dns-lookup-in-linux#comments</comments>
		<pubDate>Tue, 17 Jan 2012 15:48:42 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dns]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3617</guid>
		<description><![CDATA[How to perform a reverse DNS lookup in Linux Answer: To perform a reverse DNS lookup for a domain in Linux, you can use the dig command, e.g. # dig -x 8.8.8.8 ; DiG 9.7.0-P1 -x 8.8.8.8 ;; global options: +cmd ;; Got answer: ;; ->>HEADER<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-reverse-print-a-file" rel="bookmark" title="How to reverse print a file?">How to reverse print a file? </a></li>
<li><a href="http://www.linuxask.com/questions/reverse-characters-on-each-line" rel="bookmark" title="Reverse characters on each line">Reverse characters on each line </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-perform-simple-calculations-in-linux-shell" rel="bookmark" title="How to perform simple calculations in Linux shell?">How to perform simple calculations in Linux shell? </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to perform a reverse DNS lookup in Linux</p>
<p><strong>Answer:</strong></p>
<p>To perform a  reverse DNS lookup for a domain in Linux, you can use the <strong>dig </strong>command, e.g.</p>
<pre><code># dig -x 8.8.8.8

; <<>> DiG 9.7.0-P1 <<>> -x 8.8.8.8
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 59808
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;8.8.8.8.in-addr.arpa.          IN      PTR

;; ANSWER SECTION:
8.8.8.8.in-addr.arpa.   86328   IN      PTR     google-public-dns-a.google.com.

..
</code></pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-reverse-print-a-file" rel="bookmark" title="How to reverse print a file?">How to reverse print a file? </a></li>
<li><a href="http://www.linuxask.com/questions/reverse-characters-on-each-line" rel="bookmark" title="Reverse characters on each line">Reverse characters on each line </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-perform-simple-calculations-in-linux-shell" rel="bookmark" title="How to perform simple calculations in Linux shell?">How to perform simple calculations in Linux shell? </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-perform-a-reverse-dns-lookup-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Erase old downloaded packages from apt-get&#8217;s cache</title>
		<link>http://www.linuxask.com/questions/erase-old-downloaded-packages-from-apt-gets-cache</link>
		<comments>http://www.linuxask.com/questions/erase-old-downloaded-packages-from-apt-gets-cache#comments</comments>
		<pubDate>Sun, 04 Dec 2011 06:45:05 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3577</guid>
		<description><![CDATA[Erase old downloaded packages from apt-get's cache Answer: The erase old downloaded packages from apt-get's cache, which are stored under the location: /var/cache/apt/archives Try: # sudo apt-get autoclean<div class='yarpp-related-rss'>

Related posts:<ol>
<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/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/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>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Erase old downloaded packages from apt-get's cache</p>
<p><strong>Answer:</strong></p>
<p>The erase old downloaded packages from apt-get's cache, which are stored under the location: <strong>/var/cache/apt/archives</strong></p>
<p>Try: </p>
<p><code># sudo apt-get autoclean</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<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/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/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>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/erase-old-downloaded-packages-from-apt-gets-cache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable a service in Ubuntu using upstart</title>
		<link>http://www.linuxask.com/questions/disable-a-service-in-ubuntu-using-upstart</link>
		<comments>http://www.linuxask.com/questions/disable-a-service-in-ubuntu-using-upstart#comments</comments>
		<pubDate>Tue, 10 May 2011 05:24:20 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3059</guid>
		<description><![CDATA[Disable a service in Ubuntu using upstart Answer: In newer version of Ubuntu such as 10.04, some services are managed by upstart and you cannot disable them by using the old method. For example, to disable the OpenSSH server, you need to edit the file /etc/init/ssh.conf, comment out the following lines: # start on filesystem <a href='http://www.linuxask.com/questions/disable-a-service-in-ubuntu-using-upstart' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/etcinittab-is-missing-in-ubuntuetcinittab-is-missing-in-ubuntu" rel="bookmark" title="/etc/inittab is missing in Ubuntu">/etc/inittab is missing in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/disable-auto-tmp-folder-clean-up-when-reboot-in-debianubuntu" rel="bookmark" title="Disable auto /tmp folder clean up when reboot in Debian/Ubuntu">Disable auto /tmp folder clean up when reboot in Debian/Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-disable-a-service-from-startup-in-ubuntu" rel="bookmark" title="How to disable a service from startup in Ubuntu?">How to disable a service from startup in Ubuntu? </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Disable a service in Ubuntu using upstart</p>
<p><strong>Answer:</strong></p>
<p>In newer version of <strong>Ubuntu </strong>such as 10.04, some services are managed by <strong>upstart </strong>and you cannot disable them by using the <a href="http://www.linuxask.com/questions/how-to-disable-a-service-from-startup-in-ubuntu">old method</a>.</p>
<p>For example, to disable the <strong>OpenSSH server</strong>, you need to edit the file <strong>/etc/init/ssh.conf</strong>, comment out the following lines:</p>
<pre><code># start on filesystem
# stop on runlevel [!2345]
</code></pre>
<p>Then this service will not start when you reboot your machine next time. All the upstart configurations files are under this folder and feel free to try it out.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/etcinittab-is-missing-in-ubuntuetcinittab-is-missing-in-ubuntu" rel="bookmark" title="/etc/inittab is missing in Ubuntu">/etc/inittab is missing in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/disable-auto-tmp-folder-clean-up-when-reboot-in-debianubuntu" rel="bookmark" title="Disable auto /tmp folder clean up when reboot in Debian/Ubuntu">Disable auto /tmp folder clean up when reboot in Debian/Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-disable-a-service-from-startup-in-ubuntu" rel="bookmark" title="How to disable a service from startup in Ubuntu?">How to disable a service from startup in Ubuntu? </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/disable-a-service-in-ubuntu-using-upstart/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow a remote IP for incoming connection in UFW (Uncomplicated firewall)</title>
		<link>http://www.linuxask.com/questions/allow-a-remote-ip-for-incoming-connection-in-ufw-uncomplicated-firewall</link>
		<comments>http://www.linuxask.com/questions/allow-a-remote-ip-for-incoming-connection-in-ufw-uncomplicated-firewall#comments</comments>
		<pubDate>Thu, 24 Mar 2011 09:29:23 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux Security]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ufw]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2872</guid>
		<description><![CDATA[Allow a remote IP for incoming connection in UFW (Uncomplicated firewall) Answer: To allow a remote IP for incoming connection in Ubuntu's UFW (Uncomplicated firewall), you can use the following command: # sudo ufw allow from x.x.x.x Of course you need to reload the firewall. # sudo ufw reload<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/open-a-tcp-port-in-ubuntus-ufw-firewall" rel="bookmark" title="Open a TCP port in Ubuntu&#8217;s ufw firewall">Open a TCP port in Ubuntu&#8217;s ufw firewall </a></li>
<li><a href="http://www.linuxask.com/questions/how-do-i-set-up-a-firewall-under-linux" rel="bookmark" title="How do I set up a firewall under Linux?">How do I set up a firewall under Linux? </a></li>
<li><a href="http://www.linuxask.com/questions/block-a-remote-ip-address-using-iptables" rel="bookmark" title="Block a remote IP Address using iptables">Block a remote IP Address using iptables </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Allow a remote IP for incoming connection in UFW (Uncomplicated firewall)</p>
<p><strong>Answer:</strong></p>
<p>To allow a remote IP for incoming connection in Ubuntu's <strong>UFW </strong>(Uncomplicated firewall), you can use the following command:</p>
<p><code># sudo ufw allow from x.x.x.x</code></p>
<p>Of course you need to reload the firewall.</p>
<p><code># sudo ufw reload</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/open-a-tcp-port-in-ubuntus-ufw-firewall" rel="bookmark" title="Open a TCP port in Ubuntu&#8217;s ufw firewall">Open a TCP port in Ubuntu&#8217;s ufw firewall </a></li>
<li><a href="http://www.linuxask.com/questions/how-do-i-set-up-a-firewall-under-linux" rel="bookmark" title="How do I set up a firewall under Linux?">How do I set up a firewall under Linux? </a></li>
<li><a href="http://www.linuxask.com/questions/block-a-remote-ip-address-using-iptables" rel="bookmark" title="Block a remote IP Address using iptables">Block a remote IP Address using iptables </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/allow-a-remote-ip-for-incoming-connection-in-ufw-uncomplicated-firewall/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>How to update RubyGems?</title>
		<link>http://www.linuxask.com/questions/how-to-update-rubygems</link>
		<comments>http://www.linuxask.com/questions/how-to-update-rubygems#comments</comments>
		<pubDate>Fri, 26 Nov 2010 16:08:03 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2599</guid>
		<description><![CDATA[How to update RubyGems? Answer: To update the the RubyGems installed in Ubuntu, enter the command below: # sudo gem update --systemNow That's it.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/install-rubyonrails-in-ubuntu" rel="bookmark" title="Install RubyOnRails in Ubuntu">Install RubyOnRails in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/update-the-package-index-in-ubuntu" rel="bookmark" title="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="Install sun-java-jdk in Ubuntu 10.04">Install sun-java-jdk in Ubuntu 10.04 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to update RubyGems? </p>
<p><strong>Answer:</strong></p>
<p>To update the the RubyGems installed in Ubuntu, enter the command below:</p>
<p><code># sudo gem update --systemNow</code></p>
<p>That's it.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/install-rubyonrails-in-ubuntu" rel="bookmark" title="Install RubyOnRails in Ubuntu">Install RubyOnRails in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/update-the-package-index-in-ubuntu" rel="bookmark" title="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="Install sun-java-jdk in Ubuntu 10.04">Install sun-java-jdk in Ubuntu 10.04 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-update-rubygems/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to get the full list of Ubuntu&#8217;s managed Perl modules?</title>
		<link>http://www.linuxask.com/questions/how-to-get-the-full-list-of-ubuntus-managed-perl-modules</link>
		<comments>http://www.linuxask.com/questions/how-to-get-the-full-list-of-ubuntus-managed-perl-modules#comments</comments>
		<pubDate>Thu, 25 Nov 2010 16:01:59 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2596</guid>
		<description><![CDATA[How to get the full list of Ubuntu's managed Perl modules? Answer: The full list of Ubuntu's managed Perl modules is here (for lucid): http://packages.ubuntu.com/lucid/perl/ You can use apt-get into install those modules, instead of CPAN. The advantage is you can remove them easier with the apt-get command, while for CPAN, you need to do <a href='http://www.linuxask.com/questions/how-to-get-the-full-list-of-ubuntus-managed-perl-modules' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/list-all-the-installed-perl-modules" rel="bookmark" title="List all the installed Perl modules">List all the installed Perl modules </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-install-cpan-modules" rel="bookmark" title="How to remove install CPAN modules?">How to remove install CPAN modules? </a></li>
<li><a href="http://www.linuxask.com/questions/install-perl-module-using-cpan" rel="bookmark" title="Install Perl module using CPAN">Install Perl module using CPAN </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to get the full list of Ubuntu's managed Perl modules?</p>
<p><strong>Answer:</strong></p>
<p>The full list of Ubuntu's managed Perl modules is here (for <strong>lucid</strong>): <a href="http://packages.ubuntu.com/lucid/perl/">http://packages.ubuntu.com/lucid/perl/ </a></p>
<p>You can use <strong>apt-get</strong> into install those modules, instead of <a href="http://www.linuxask.com/questions/install-perl-module-using-cpan">CPAN</a>. The advantage is you can remove them easier with the apt-get command, while for CPAN, you need to do it <a href="http://www.linuxask.com/questions/how-to-remove-install-cpan-modules">manually</a>. </p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/list-all-the-installed-perl-modules" rel="bookmark" title="List all the installed Perl modules">List all the installed Perl modules </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-install-cpan-modules" rel="bookmark" title="How to remove install CPAN modules?">How to remove install CPAN modules? </a></li>
<li><a href="http://www.linuxask.com/questions/install-perl-module-using-cpan" rel="bookmark" title="Install Perl module using CPAN">Install Perl module using CPAN </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-get-the-full-list-of-ubuntus-managed-perl-modules/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
