<?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; Internet</title>
	<atom:link href="http://www.linuxask.com/topics/applications/internet/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>Sat, 04 Feb 2012 05:57:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Show current Postfix queue listing</title>
		<link>http://www.linuxask.com/questions/show-current-postfix-queue-listing</link>
		<comments>http://www.linuxask.com/questions/show-current-postfix-queue-listing#comments</comments>
		<pubDate>Thu, 08 Sep 2011 10:55:15 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3424</guid>
		<description><![CDATA[Show current Postfix queue listing Answer: To show the current Postfix queue, you can try the command "postqueue" # postqueue -p -Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient------- BD7E2BF973 972 Sat Aug 27 08:57:54 no-reply@example.com (connect to alt4.gmail-smtp-in.l.google.com[209.85.143.27]:25: Connection timed out) johndoe@gmail.com Related posts: Remove all queued message in Postfix Debug and verify Postfix configurations Show <a href='http://www.linuxask.com/questions/show-current-postfix-queue-listing'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/remove-all-queued-message-in-postfix' rel='bookmark' title='Remove all queued message in Postfix'>Remove all queued message in Postfix</a></li>
<li><a href='http://www.linuxask.com/questions/debug-and-verify-postfix-configurations' rel='bookmark' title='Debug and verify Postfix configurations'>Debug and verify Postfix configurations</a></li>
<li><a href='http://www.linuxask.com/questions/show-the-current-privileges-of-a-mysql-user' rel='bookmark' title='Show the current privileges of a MySQL user'>Show the current privileges of a MySQL user</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Show current Postfix queue listing</p>
<p><strong>Answer:</strong></p>
<p>To show the current <strong>Postfix </strong>queue, you can try the command "<strong>postqueue</strong>"</p>
<pre><code># postqueue -p

-Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient-------
BD7E2BF973      972 Sat Aug 27 08:57:54  no-reply@example.com
(connect to alt4.gmail-smtp-in.l.google.com[209.85.143.27]:25: Connection timed out)
                                         johndoe@gmail.com
</code></pre>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/remove-all-queued-message-in-postfix' rel='bookmark' title='Remove all queued message in Postfix'>Remove all queued message in Postfix</a></li>
<li><a href='http://www.linuxask.com/questions/debug-and-verify-postfix-configurations' rel='bookmark' title='Debug and verify Postfix configurations'>Debug and verify Postfix configurations</a></li>
<li><a href='http://www.linuxask.com/questions/show-the-current-privileges-of-a-mysql-user' rel='bookmark' title='Show the current privileges of a MySQL user'>Show the current privileges of a MySQL user</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/show-current-postfix-queue-listing/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Post a file to a server using the Curl command</title>
		<link>http://www.linuxask.com/questions/post-a-file-to-a-server-using-the-curl-command</link>
		<comments>http://www.linuxask.com/questions/post-a-file-to-a-server-using-the-curl-command#comments</comments>
		<pubDate>Sun, 04 Sep 2011 10:42:49 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[curl]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3439</guid>
		<description><![CDATA[Post a file to a server using the Curl command Answer: You can simulate a HTTP form post, with a file being uploaded to a remote server using the curl command. curl -F 'photo=@/upload/image.jpg' http://example.com/upload.php Assume the name of the form element of your upload is called "photo" Related posts: Show HTTP response using curl <a href='http://www.linuxask.com/questions/post-a-file-to-a-server-using-the-curl-command'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/show-http-response-using-curl-command' rel='bookmark' title='Show HTTP response using curl command'>Show HTTP response using curl command</a></li>
<li><a href='http://www.linuxask.com/questions/show-http-response-header-using-curl' rel='bookmark' title='Show HTTP response header using curl'>Show HTTP response header using curl</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-simulate-curl-using-wget-command' rel='bookmark' title='How to simulate curl using wget command?'>How to simulate curl using wget command?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Post a file to a server using the Curl command</p>
<p><strong>Answer:</strong></p>
<p>You can simulate a HTTP form post, with a file being uploaded to a remote server using the <strong>curl </strong>command.</p>
<pre><code>curl -F 'photo=@/upload/image.jpg' http://example.com/upload.php</code></pre>
<p>Assume the name of the form element of your upload is called "<strong>photo</strong>"</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/show-http-response-using-curl-command' rel='bookmark' title='Show HTTP response using curl command'>Show HTTP response using curl command</a></li>
<li><a href='http://www.linuxask.com/questions/show-http-response-header-using-curl' rel='bookmark' title='Show HTTP response header using curl'>Show HTTP response header using curl</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-simulate-curl-using-wget-command' rel='bookmark' title='How to simulate curl using wget command?'>How to simulate curl using wget command?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/post-a-file-to-a-server-using-the-curl-command/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debug and verify Postfix configurations</title>
		<link>http://www.linuxask.com/questions/debug-and-verify-postfix-configurations</link>
		<comments>http://www.linuxask.com/questions/debug-and-verify-postfix-configurations#comments</comments>
		<pubDate>Wed, 31 Aug 2011 13:32:00 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3420</guid>
		<description><![CDATA[Debug and verify Postfix configurations Answer: A simple way to debug and verify your Postfix configurations is the use the sendmail command with the -bv flag. Example: # sendmail -bv username@example.com No email will be sent using the above command, it just report after verifying each recipient address. This is very useful for testing the <a href='http://www.linuxask.com/questions/debug-and-verify-postfix-configurations'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/show-current-postfix-queue-listing' rel='bookmark' title='Show current Postfix queue listing'>Show current Postfix queue listing</a></li>
<li><a href='http://www.linuxask.com/questions/remove-all-queued-message-in-postfix' rel='bookmark' title='Remove all queued message in Postfix'>Remove all queued message in Postfix</a></li>
<li><a href='http://www.linuxask.com/questions/enable-debug-log-for-nginx' rel='bookmark' title='Enable debug log for Nginx'>Enable debug log for Nginx</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Debug and verify Postfix configurations</p>
<p><strong>Answer:</strong></p>
<p>A simple way to debug and verify your <strong>Postfix</strong> configurations is the use the <strong>sendmail</strong> command with the <strong>-bv</strong> flag.</p>
<p>Example:</p>
<p><code># sendmail -bv username@example.com</code></p>
<p>No email will be sent using the above command, it just report after verifying each recipient address. This is very useful for testing the Postfix configurations.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/show-current-postfix-queue-listing' rel='bookmark' title='Show current Postfix queue listing'>Show current Postfix queue listing</a></li>
<li><a href='http://www.linuxask.com/questions/remove-all-queued-message-in-postfix' rel='bookmark' title='Remove all queued message in Postfix'>Remove all queued message in Postfix</a></li>
<li><a href='http://www.linuxask.com/questions/enable-debug-log-for-nginx' rel='bookmark' title='Enable debug log for Nginx'>Enable debug log for Nginx</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/debug-and-verify-postfix-configurations/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Google Chrome in Ubuntu</title>
		<link>http://www.linuxask.com/questions/install-google-chrome-in-ubuntu</link>
		<comments>http://www.linuxask.com/questions/install-google-chrome-in-ubuntu#comments</comments>
		<pubDate>Sun, 19 Jun 2011 16:28:38 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[chrome]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3110</guid>
		<description><![CDATA[Install Google Chrome in Ubuntu Answer: To install Google Chrome in Ubuntu, the simplest way is to us PPA E.g. 1. Add the key and URL # wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub &#124; sudo apt-key add - # sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' 2. Install it # sudo apt-get update <a href='http://www.linuxask.com/questions/install-google-chrome-in-ubuntu'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/install-apc-for-php-on-ubuntu' rel='bookmark' title='Install APC for PHP on Ubuntu'>Install APC for PHP on Ubuntu</a></li>
<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/how-to-install-easy-install-for-python-in-ubuntu' rel='bookmark' title='How to install Easy Install for Python in Ubuntu'>How to install Easy Install for Python in Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Install Google Chrome in Ubuntu</p>
<p><strong>Answer:</strong></p>
<p>To install <strong> Google Chrome </strong> in Ubuntu, the simplest way is to us <strong><a href="http://www.linuxask.com/questions/add-personal-package-archives-ppa-to-the-current-repository-in-ubuntu">PPA</a></strong></p>
<p>E.g.</p>
<p>1. Add the key and URL</p>
<pre><code># wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
# sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
</code></pre>
<p>2. Install it</p>
<pre><code># sudo apt-get update
# sudo apt-get install google-chrome-stable</code></pre>
<p>Done.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/install-apc-for-php-on-ubuntu' rel='bookmark' title='Install APC for PHP on Ubuntu'>Install APC for PHP on Ubuntu</a></li>
<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/how-to-install-easy-install-for-python-in-ubuntu' rel='bookmark' title='How to install Easy Install for Python in Ubuntu'>How to install Easy Install for Python in Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-google-chrome-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download a complete directory on FTP server with wget</title>
		<link>http://www.linuxask.com/questions/download-a-complete-directory-on-ftp-server-with-wget</link>
		<comments>http://www.linuxask.com/questions/download-a-complete-directory-on-ftp-server-with-wget#comments</comments>
		<pubDate>Mon, 13 Jun 2011 08:00:43 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[ftp]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3091</guid>
		<description><![CDATA[Download a complete directory on FTP server with wget Answer: You can try the command below in order to download all the files/sub-directories under the directory "dir" # wget -r ftp://user:password@example.com/dir/* Related posts: How to force re-download a file using wget? How to resume a partially-downloaded file using wget Auto create complete directory structure when <a href='http://www.linuxask.com/questions/download-a-complete-directory-on-ftp-server-with-wget'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-force-re-download-a-file-using-wget' rel='bookmark' title='How to force re-download a file using wget?'>How to force re-download a file using wget?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-resume-a-partially-downloaded-file-using-wget' rel='bookmark' title='How to resume a partially-downloaded file using wget'>How to resume a partially-downloaded file using wget</a></li>
<li><a href='http://www.linuxask.com/questions/auto-create-complete-directory-structure-when-copying-files-in-linux' rel='bookmark' title='Auto create complete directory structure when copying files in Linux'>Auto create complete directory structure when copying files in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Download a complete directory on FTP server with wget</p>
<p><strong>Answer:</strong></p>
<p>You can try the command below in order to download all the files/sub-directories under the directory "<strong>dir</strong>"</p>
<p><code># wget -r ftp://user:password@example.com/dir/*</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-force-re-download-a-file-using-wget' rel='bookmark' title='How to force re-download a file using wget?'>How to force re-download a file using wget?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-resume-a-partially-downloaded-file-using-wget' rel='bookmark' title='How to resume a partially-downloaded file using wget'>How to resume a partially-downloaded file using wget</a></li>
<li><a href='http://www.linuxask.com/questions/auto-create-complete-directory-structure-when-copying-files-in-linux' rel='bookmark' title='Auto create complete directory structure when copying files in Linux'>Auto create complete directory structure when copying files in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/download-a-complete-directory-on-ftp-server-with-wget/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renew DHCP IP address in Ubuntu</title>
		<link>http://www.linuxask.com/questions/renew-dhcp-ip-address-in-ubuntu</link>
		<comments>http://www.linuxask.com/questions/renew-dhcp-ip-address-in-ubuntu#comments</comments>
		<pubDate>Wed, 04 May 2011 14:07:13 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2990</guid>
		<description><![CDATA[Renew DHCP IP address in Ubuntu Answer: To rename an IP address using DHCP in Ubuntu, try enter the commands below: 1. Release the current IP # sudo dhclient -r 2. Renew a new IP # sudo dhclient Related posts: How to change MAC address Install Google Chrome in Ubuntu How to upgrade Ubuntu to <a href='http://www.linuxask.com/questions/renew-dhcp-ip-address-in-ubuntu'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-change-mac-address' rel='bookmark' title='How to change MAC address'>How to change MAC address</a></li>
<li><a href='http://www.linuxask.com/questions/install-google-chrome-in-ubuntu' rel='bookmark' title='Install Google Chrome in Ubuntu'>Install Google Chrome 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>]]></description>
			<content:encoded><![CDATA[<p>Renew DHCP IP address in Ubuntu</p>
<p><strong>Answer:</strong></p>
<p>To rename an IP address using <strong>DHCP </strong>in Ubuntu, try enter the commands below:</p>
<p>1. Release the current IP</p>
<pre><code># sudo dhclient -r</code></pre>
<p>2. Renew a new IP</p>
<pre><code># sudo dhclient</code></pre>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-change-mac-address' rel='bookmark' title='How to change MAC address'>How to change MAC address</a></li>
<li><a href='http://www.linuxask.com/questions/install-google-chrome-in-ubuntu' rel='bookmark' title='Install Google Chrome in Ubuntu'>Install Google Chrome 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>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/renew-dhcp-ip-address-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Facebook Test Users</title>
		<link>http://www.linuxask.com/questions/create-facebook-test-users</link>
		<comments>http://www.linuxask.com/questions/create-facebook-test-users#comments</comments>
		<pubDate>Thu, 28 Apr 2011 05:43:35 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2900</guid>
		<description><![CDATA[Create Facebook Test Users Answer: In the last article, you already know how to get the Facebook access token. In this post, I will tell you how to create testing accounts for your app's testing. # curl -F 'access_token=ACCESS_TOKEN' 'https://graph.facebook.com/APP_ID/accounts/test-users?installed=true&#038;permissions=read_stream' You can manipulate the permissions as needed. Related posts: How to get my Facebook App&#8217; <a href='http://www.linuxask.com/questions/create-facebook-test-users'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-get-my-facebook-app-access-token' rel='bookmark' title='How to get my Facebook App&#8217; access token?'>How to get my Facebook App&#8217; access token?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-broadcast-text-message-to-all-users' rel='bookmark' title='How to broadcast text message to all users'>How to broadcast text message to all users</a></li>
<li><a href='http://www.linuxask.com/questions/create-a-new-branch-in-git' rel='bookmark' title='Create a new branch in Git'>Create a new branch in Git</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Create Facebook Test Users</p>
<p><strong>Answer:</strong></p>
<p>In the <a href="http://www.linuxask.com/questions/how-to-get-my-facebook-app-access-token">last article</a>, you already know how to get the Facebook access token. In this post, I will tell you how to create testing accounts for your app's testing.</p>
<p><code># curl -F 'access_token=ACCESS_TOKEN' 'https://graph.facebook.com/APP_ID/accounts/test-users?installed=true&#038;permissions=read_stream'</code></p>
<p>You can manipulate the permissions as needed.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-get-my-facebook-app-access-token' rel='bookmark' title='How to get my Facebook App&#8217; access token?'>How to get my Facebook App&#8217; access token?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-broadcast-text-message-to-all-users' rel='bookmark' title='How to broadcast text message to all users'>How to broadcast text message to all users</a></li>
<li><a href='http://www.linuxask.com/questions/create-a-new-branch-in-git' rel='bookmark' title='Create a new branch in Git'>Create a new branch in Git</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/create-facebook-test-users/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get my Facebook App&#8217; access token?</title>
		<link>http://www.linuxask.com/questions/how-to-get-my-facebook-app-access-token</link>
		<comments>http://www.linuxask.com/questions/how-to-get-my-facebook-app-access-token#comments</comments>
		<pubDate>Sun, 24 Apr 2011 05:33:01 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2898</guid>
		<description><![CDATA[How to get my Facebook App' access token? Answer: Assume you have your created a Facebook application, and you have the two things: App ID &#038; App Secret. You can get the access token by a simple curl command. # curl -F type=client_cred -F client_id=APP_ID -F client_secret=APP_SECRET https://graph.facebook.com/oauth/access_token Related posts: Create Facebook Test Users Simple <a href='http://www.linuxask.com/questions/how-to-get-my-facebook-app-access-token'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/create-facebook-test-users' rel='bookmark' title='Create Facebook Test Users'>Create Facebook Test Users</a></li>
<li><a href='http://www.linuxask.com/questions/simple-port-forwarding-using-ssh' rel='bookmark' title='Simple port forwarding using SSH'>Simple port forwarding using SSH</a></li>
<li><a href='http://www.linuxask.com/questions/block-website-access-in-linux' rel='bookmark' title='Block website access in Linux'>Block website access in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to get my Facebook App' access token?</p>
<p><strong>Answer:</strong></p>
<p>Assume you have your created a Facebook application, and you have the two things: <strong>App ID</strong> &#038; <strong>App Secret</strong>.</p>
<p>You can get the access token by a simple curl command.</p>
<p><code># curl -F type=client_cred -F client_id=APP_ID -F client_secret=APP_SECRET https://graph.facebook.com/oauth/access_token</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/create-facebook-test-users' rel='bookmark' title='Create Facebook Test Users'>Create Facebook Test Users</a></li>
<li><a href='http://www.linuxask.com/questions/simple-port-forwarding-using-ssh' rel='bookmark' title='Simple port forwarding using SSH'>Simple port forwarding using SSH</a></li>
<li><a href='http://www.linuxask.com/questions/block-website-access-in-linux' rel='bookmark' title='Block website access in Linux'>Block website access in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-get-my-facebook-app-access-token/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Show HTTP response header using curl</title>
		<link>http://www.linuxask.com/questions/show-http-response-header-using-curl</link>
		<comments>http://www.linuxask.com/questions/show-http-response-header-using-curl#comments</comments>
		<pubDate>Mon, 18 Apr 2011 05:51:28 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[curl]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2944</guid>
		<description><![CDATA[Show HTTP response header using curl Answer: To show the response of HTTP request to a specific server, you can use the "curl -I" command. Example: # curl -I "http://www.example.com" HTTP/1.0 302 Found Location: http://www.iana.org/domains/example/ Server: BigIP Connection: Keep-Alive Content-Length: 0 Related posts: Show HTTP response using curl command Show the Domain Name Servers for <a href='http://www.linuxask.com/questions/show-http-response-header-using-curl'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/show-http-response-using-curl-command' rel='bookmark' title='Show HTTP response using curl command'>Show HTTP response using curl command</a></li>
<li><a href='http://www.linuxask.com/questions/show-the-domain-name-servers-for-a-domain' rel='bookmark' title='Show the Domain Name Servers for a domain'>Show the Domain Name Servers for a domain</a></li>
<li><a href='http://www.linuxask.com/questions/add-custom-http-header-by-nginx' rel='bookmark' title='Add custom HTTP header by nginx'>Add custom HTTP header by nginx</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Show HTTP response header using curl</p>
<p><strong>Answer:</strong></p>
<p>To show the response of HTTP request to a specific server, you can use the "<strong>curl -I</strong>" command.</p>
<p>Example:</p>
<pre><code>#  curl -I "http://www.example.com"
HTTP/1.0 302 Found
Location: http://www.iana.org/domains/example/
Server: BigIP
Connection: Keep-Alive
Content-Length: 0</code></pre>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/show-http-response-using-curl-command' rel='bookmark' title='Show HTTP response using curl command'>Show HTTP response using curl command</a></li>
<li><a href='http://www.linuxask.com/questions/show-the-domain-name-servers-for-a-domain' rel='bookmark' title='Show the Domain Name Servers for a domain'>Show the Domain Name Servers for a domain</a></li>
<li><a href='http://www.linuxask.com/questions/add-custom-http-header-by-nginx' rel='bookmark' title='Add custom HTTP header by nginx'>Add custom HTTP header by nginx</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/show-http-response-header-using-curl/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>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 Related posts: Open a TCP port <a href='http://www.linuxask.com/questions/allow-a-remote-ip-for-incoming-connection-in-ufw-uncomplicated-firewall'>[...]</a>
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>]]></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>
<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>]]></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>
	</channel>
</rss>

