<?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>acloudtree &#187; Ubuntu</title>
	<atom:link href="http://www.acloudtree.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.acloudtree.com</link>
	<description>Programming, Computers, Writing, Economics, and Life</description>
	<lastBuildDate>Sat, 10 Jul 2010 02:00:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>(Nerd) Ubuntu 9.10 + installing wireshark</title>
		<link>http://www.acloudtree.com/nerd-ubuntu-9-10-installing-wireshark/</link>
		<comments>http://www.acloudtree.com/nerd-ubuntu-9-10-installing-wireshark/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 23:59:19 +0000</pubDate>
		<dc:creator>jared.folkins</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[devices]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[packet]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[sniffing]]></category>
		<category><![CDATA[wireshark]]></category>

		<guid isPermaLink="false">http://www.acloudtree.com/?p=107</guid>
		<description><![CDATA[From the command line

1
sudo apt-get install wireshark

Once the process completes, wireshark will be installed. The only problem is that if you open the wireshark application, there will not be any physical eth(N) devices to sniff. So how do we remedy this?
Open the application &#8216;Main Menu&#8217;


Select wireshark properties


We need to change the command from this

To this

And [...]]]></description>
			<content:encoded><![CDATA[<p>From the command line</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> wireshark</pre></td></tr></table></div>

<p>Once the process completes, wireshark will be installed. The only problem is that if you open the wireshark application, there will not be any physical eth(N) devices to sniff. So how do we remedy this?</p>
<p><strong>Open the application &#8216;Main Menu&#8217;<br />
</strong><br />
<img class="aligncenter size-full wp-image-130" title="PathToMainMenu" src="http://www.acloudtree.com/wp-content/uploads/2009/12/PathToMainMenu.png" alt="PathToMainMenu" width="453" height="780" /></p>
<p><strong>Select wireshark properties<br />
</strong><br />
<img class="aligncenter size-full wp-image-129" title="SelectWiresharkProperties" src="http://www.acloudtree.com/wp-content/uploads/2009/12/SelectWiresharkProperties.png" alt="SelectWiresharkProperties" width="628" height="505" /></p>
<p><strong>We need to change the command from this<br />
</strong><img class="aligncenter size-full wp-image-132" title="Wireshark" src="http://www.acloudtree.com/wp-content/uploads/2009/12/Wireshark1.png" alt="Wireshark" width="436" height="220" /></p>
<p><strong>To this</strong><br />
<img class="aligncenter size-full wp-image-127" title="GksudoWireshark" src="http://www.acloudtree.com/wp-content/uploads/2009/12/GksudoWireshark.png" alt="GksudoWireshark" width="437" height="222" /></p>
<p>And what is the reason? Well the ethernet or wireless devices we are after are owned by <em>root</em>. So if we tack on the <em>gksudo</em> command to the front of the <em>wireshark</em> init command, we are effectively opening <em>wireshark</em> as <strong><em>root</em></strong>. With all the implied responsibilities and permissions, make sense?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acloudtree.com/nerd-ubuntu-9-10-installing-wireshark/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Ubuntu + VIM + CakePHP 1.2 + .ctp syntax highlighting</title>
		<link>http://www.acloudtree.com/ubuntu-vim-cakephp-12-ctp-syntax-highlighting/</link>
		<comments>http://www.acloudtree.com/ubuntu-vim-cakephp-12-ctp-syntax-highlighting/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 05:19:11 +0000</pubDate>
		<dc:creator>jared.folkins</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VIM]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[.vimrc]]></category>
		<category><![CDATA[syntax highlighting]]></category>

		<guid isPermaLink="false">http://www.acloudtree.com/?p=43</guid>
		<description><![CDATA[Found this blog post concerning setting up the Cakephp view extension (.ctp) to use the same highlighting as (.php).
blog
I didn&#8217;t find his solution that helpful, but one of the comments said to add this to my &#8216;.vimrc&#8217; file in my home directory.

if has(”autocmd”)
autocmd BufEnter *.ctp set syn=php
endif

And since we are on the topic here is [...]]]></description>
			<content:encoded><![CDATA[<p>Found this blog post concerning setting up the Cakephp view extension (.ctp) to use the same highlighting as (.php).</p>
<p><a href="http://quakey.wordpress.com/2007/07/11/vim-syntax-highlighting/">blog</a></p>
<p>I didn&#8217;t find his solution that helpful, but one of the comments said to add this to my &#8216;.vimrc&#8217; file in my home directory.</p>
<p><code><br />
if has(”autocmd”)<br />
autocmd BufEnter *.ctp set syn=php<br />
endif<br />
</code></p>
<p>And since we are on the topic here is how my .vimrc is setup</p>
<p><code></p>
<pre>
set tabstop=2
set shiftwidth=2
set expandtab

if has("autocmd")
autocmd BufEnter *.ctp set syn=php
endif

syn on</pre>
<p></code></p>
<p>-later</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acloudtree.com/ubuntu-vim-cakephp-12-ctp-syntax-highlighting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
