<?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>Digitivity &#187; Linux/Unix</title>
	<atom:link href="http://digitivity.org/category/linuxunix/feed" rel="self" type="application/rss+xml" />
	<link>http://digitivity.org</link>
	<description>The Digital Productivity Blog</description>
	<lastBuildDate>Mon, 24 May 2010 17:50:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Install Google Skipfish on Ubuntu Linux</title>
		<link>http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</link>
		<comments>http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux#comments</comments>
		<pubDate>Wed, 31 Mar 2010 19:55:19 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[security scanner]]></category>
		<category><![CDATA[Skipfish]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=943</guid>
		<description><![CDATA[<a href="http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool">Skipfish</a> is a new security scanning tool from Google that tries to find vulnerabilities in your webserver.

It can be installed either locally or on your webserver.

The easiest place to install Skipfish is on Linux, so I'll go over installing it on Ubuntu.


Related posts:<ol><li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively' rel='bookmark' title='Permanent Link: How to Rename Files as Lowercase in Ubuntu Linux Recursively'>How to Rename Files as Lowercase in Ubuntu Linux Recursively</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool">Skipfish</a></strong> is a new security scanning tool from <strong>Google</strong> that tries to find vulnerabilities in your webserver.</p>
<p>It can be installed either locally or on your webserver.</p>
<p>The easiest place to install Skipfish is on Linux, so I&#8217;ll go over installing it on <strong>Ubuntu</strong>.</p>
<h2>Requirements for Skipfish</h2>
<p>You need the following software installed in order to install Skipfish:</p>
<ul>
<li>GNU C Compiler</li>
<li>GNU Make</li>
<li>GNU C Library (including development headers)</li>
<li>zlib (including development headers)</li>
<li>OpenSSL (including development headers)</li>
<li>libidn (including development headers)</li>
</ul>
<p>The first three are installed by default on Ubuntu. In case they&#8217;re not install them with this command in a terminal:</p>

<div class="wp_syntax"><div 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> <span style="color: #c20cb9; font-weight: bold;">gcc</span> <span style="color: #c20cb9; font-weight: bold;">make</span> libc6 libc6-dev</pre></div></div>

<p>To install the last three requirements, enter this command:</p>

<div class="wp_syntax"><div 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> libssl-dev zlib1g-dev libidn11</pre></div></div>

<h2>Building Skipfish</h2>
<h3>Download Skipfish</h3>
<p>Download the latest version of Skipfish from here:<br />
<a href="http://code.google.com/p/skipfish/downloads/list">http://code.google.com/p/skipfish/downloads/list</a></p>
<p>The current version (as of this writing) was 1.27b [<a href="http://skipfish.googlecode.com/files/skipfish-1.27b.tgz">LINK</a>].</p>
<p>Save the file someplace, and then either right-click on it in the file manager and choose &#8220;<strong>Extract here</strong>&#8220;.</p>
<p>Or go to the directory where you saved it and enter this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> xzf skipfish-1.27b.tgz</pre></div></div>

<h3>Setting Paths</h3>
<p>You may or may not need this step, but this will set the paths for <strong>header</strong> files and <strong>library files</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">CFLAGS</span>=<span style="color: #ff0000;">&quot;-I/usr/include/&quot;</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">LDFLAGS</span>=<span style="color: #ff0000;">&quot;-L/usr/lib/ssl/engines -L/usr/lib/ -L/usr/lib/ssl/&quot;</span></pre></div></div>

<h3>Compiling Skipfish</h3>
<p>Next, compile Skipfish. Enter the directory that was extracted earlier, and use &#8220;make&#8221; to start the <strong>build process</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> skipfish
<span style="color: #c20cb9; font-weight: bold;">nice</span> <span style="color: #c20cb9; font-weight: bold;">make</span></pre></div></div>

<p>Note: <strong>nice</strong> prevents make from monopolizing your system&#8217;s CPU.</p>
<p>Here&#8217;s the result:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cc</span> -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>engines -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span> -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span> -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span> -L<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib skipfish.c <span style="color: #660033;">-o</span> skipfish <span style="color: #660033;">-O3</span> <span style="color: #660033;">-Wno-format</span> <span style="color: #660033;">-Wall</span> <span style="color: #660033;">-funsigned-char</span> <span style="color: #660033;">-g</span> <span style="color: #660033;">-ggdb</span> -I<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span> -I<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span> -I<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span> -D_FORTIFY_SOURCE=<span style="color: #000000;">0</span> \
	      http_client.c database.c crawler.c analysis.c report.c <span style="color: #660033;">-lcrypto</span> <span style="color: #660033;">-lssl</span> <span style="color: #660033;">-lidn</span> <span style="color: #660033;">-lz</span>
&nbsp;
See dictionaries<span style="color: #000000; font-weight: bold;">/</span>README-FIRST to pick a dictionary <span style="color: #000000; font-weight: bold;">for</span> the tool.
&nbsp;
Having problems with your scans? Be sure to visit:
http:<span style="color: #000000; font-weight: bold;">//</span>code.google.com<span style="color: #000000; font-weight: bold;">/</span>p<span style="color: #000000; font-weight: bold;">/</span>skipfish<span style="color: #000000; font-weight: bold;">/</span>wiki<span style="color: #000000; font-weight: bold;">/</span>KnownIssues</pre></div></div>

<p>After you do this, there should be an <strong>executable file</strong> named &#8220;skipfish&#8221; in the current directory. If not, or if there was an error, you probably are missing a requirement or a path is incorrectly specified.</p>
<h2>Using Skipfish</h2>
<p>This is just a basic introduction.</p>
<p>In the &#8220;skipfish&#8221; directory, enter these commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">touch</span> dictionaries<span style="color: #000000; font-weight: bold;">/</span>empty.wl
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> dictionaries<span style="color: #000000; font-weight: bold;">/</span>empty.wl skipfish.wl
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> ..<span style="color: #000000; font-weight: bold;">/</span>out
.<span style="color: #000000; font-weight: bold;">/</span>skipfish <span style="color: #660033;">-o</span> ..<span style="color: #000000; font-weight: bold;">/</span>out<span style="color: #000000; font-weight: bold;">/</span> http:<span style="color: #000000; font-weight: bold;">//</span>example.com</pre></div></div>

<p>This creates a blank <strong>wordlist file</strong>, and an <strong>output directory</strong>, and then launches Skipfish to scan the specified webserver. (Replace <strong>example.com</strong> with your webserver address. Make sure you have permission to scan that address.)</p>
<p>Hit Ctrl+c to stop the scan.</p>
<p>Then view the <strong>result</strong> with <strong>Firefox</strong> (not Safari or Chrome):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">firefox ..<span style="color: #000000; font-weight: bold;">/</span>out<span style="color: #000000; font-weight: bold;">/</span>index.html</pre></div></div>

<p>I&#8217;ll have a separate post on using Skipfish, along with screenshots.</p>
<h2>Resources</h2>
<p><a href="http://code.google.com/p/skipfish/">Google Skipfish</a><br />
<a href="http://code.google.com/p/skipfish/wiki/KnownIssues">Skipfish FAQ</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively' rel='bookmark' title='Permanent Link: How to Rename Files as Lowercase in Ubuntu Linux Recursively'>How to Rename Files as Lowercase in Ubuntu Linux Recursively</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Updating Ubuntu Boot CD Images with zsync</title>
		<link>http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download</link>
		<comments>http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download#comments</comments>
		<pubDate>Sun, 21 Mar 2010 16:59:52 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[boot CD]]></category>
		<category><![CDATA[file synchronization]]></category>
		<category><![CDATA[image file]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[synchronization]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[zsync]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=938</guid>
		<description><![CDATA[As I mentioned in a article on Ubuntu Boot CD images, there's a new boot CD image every day because the new version is being tested out. When the new version is finally released, work starts on version next, and daily builds start to come out again.

The problem is downloading a new 700MB file daily seems wasteful, and that's 21GB of download per month, which your ISP may or may not like.

The solution is zsync, a binary file sychronization program. Read on to find out how it works.



Related posts:<ol><li><a href='http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd' rel='bookmark' title='Permanent Link: How to Create an Ubuntu Boot CD for Lucid Lynx'>How to Create an Ubuntu Boot CD for Lucid Lynx</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/546/ubuntu-release-schedule-explained' rel='bookmark' title='Permanent Link: Ubuntu Release Schedule Explained'>Ubuntu Release Schedule Explained</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in a article on <a href="http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd">Ubuntu Boot CD images</a>, there&#8217;s a <strong>new boot CD image</strong> every day because the new version is being tested out. When the new version is finally released, work starts on version next, and daily builds start to come out again.</p>
<p>The problem is <strong>downloading</strong> a new <strong>700MB</strong> file daily seems <strong>wasteful</strong>, and that&#8217;s 21GB of download per month, which your ISP may or may not like.</p>
<p>The solution is <strong><a href="http://zsync.moria.org.uk/">zsync</a></strong>, a binary <strong>file sychronization</strong> program.</p>
<h2>Introduction to zsync</h2>
<p>zsync uses the same algorithm as another file-syncing program, <strong>rsync</strong>.  But zsync is better than rsync for <strong>file distribution</strong> where one file is going to multiple clients outside of a single organization. Also:</p>
<ul>
<li>zsync doesn&#8217;t require a program to run on the <strong>server</strong>. It runs on the <strong>client</strong>.</li>
<li>zsync handles <strong>compressed files</strong> well.</li>
</ul>
<p>You might wonder how zsync could possibly work with binary files, since a single small change can render the whole file totally different, and thus not practicably syncable. The answer is the zsync has special handling for <strong>gzipped</strong> files (files compressed with the gzip program).</p>
<h2>Installing zsync</h2>
<p>First, if you haven&#8217;t already, add the universe repository to your list of <a href="https://help.ubuntu.com/community/Repositories/Ubuntu">software repositories</a>. You can do this in System &gt; Administration &gt; Software Sources.</p>
<p>Then install zysync either by <a href="apt://zysnc">clicking here</a> from Firefox or entering the following from the terminal:</p>

<div class="wp_syntax"><div 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> zysnc</pre></div></div>

<h2>Using zsync</h2>
<p>It only makes sense to use zysnc if you already have a full <strong>ISO image file</strong> that you want to update. So, first <a href="http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd">download an Ubuntu ISO image file</a>.</p>
<p>Then, when there&#8217;s an update you want to get, go to the directory where the full image file is in a terminal. Then type zsync followed by the HTTP address of where the <strong>.zsync file</strong> is. (The .zsync file helps zsynch to correctly identify and apply updates.)</p>
<p>For the most often used Ubuntu CD image (the <strong>32-bit desktop image</strong>), that would be:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">zsync http:<span style="color: #000000; font-weight: bold;">//</span>cdimage.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>daily-live<span style="color: #000000; font-weight: bold;">/</span>current<span style="color: #000000; font-weight: bold;">/</span>lucid-desktop-i386.iso.zsync</pre></div></div>

<p>You can find other .zsync files in the same place where the CD images are at <a href="http://cdimage.ubuntu.com/daily/current/">Ubuntu downloads</a>.</p>
<p>Note: At the end of this procedure, the <strong>updated file</strong> will have the same name as the old file. The <strong>old file</strong> is kept and saved with a &#8220;<strong>.zs-old</strong>&#8221; filename suffix.</p>
<h2>zsync at work</h2>
<p>zysnc first downloads the .zsync file.</p>
<p>Then it starts downloading the actual image file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">downloading from http:<span style="color: #000000; font-weight: bold;">//</span>cdimage.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>daily-live<span style="color: #000000; font-weight: bold;">/</span>current<span style="color: #000000; font-weight: bold;">/</span>lucid-desktop-i386.iso:
<span style="color: #666666; font-style: italic;">###################- 96.3% 43.8 kBps</span></pre></div></div>

<p>The image file is saved with a <strong>.part suffix</strong> during the download. If the download is <strong>interrupted</strong>, just run zsync again. It&#8217;ll pick up where it left off:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Read lucid-desktop-i386.iso.part. Target <span style="color: #000000;">92.4</span><span style="color: #000000; font-weight: bold;">%</span> complete.
downloading from http:<span style="color: #000000; font-weight: bold;">//</span>cdimage.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>daily-live<span style="color: #000000; font-weight: bold;">/</span>current<span style="color: #000000; font-weight: bold;">/</span>lucid-desktop-i386.iso:
<span style="color: #666666; font-style: italic;">##################-- 94.8% 43.8 kBps         A</span></pre></div></div>

<p>Once it&#8217;s done, it <strong>verifies</strong> the file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">verifying download...checksum matches OK
used <span style="color: #000000;">663175168</span> <span style="color: #7a0874; font-weight: bold;">local</span>, fetched <span style="color: #000000;">55365870</span></pre></div></div>

<h3>Saving the .zsync file</h3>
<p>The .zsync file is about 1.4MB. You can avoid downloading it again by using the <strong>-k</strong> <strong>option</strong> followed by the .zsync file.</p>
<p>If the local file has a different than that referenced in the .zsync file, specify the local filename with the <strong>-i option</strong>.</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd' rel='bookmark' title='Permanent Link: How to Create an Ubuntu Boot CD for Lucid Lynx'>How to Create an Ubuntu Boot CD for Lucid Lynx</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/546/ubuntu-release-schedule-explained' rel='bookmark' title='Permanent Link: Ubuntu Release Schedule Explained'>Ubuntu Release Schedule Explained</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Create an Ubuntu Boot CD for Lucid Lynx</title>
		<link>http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd</link>
		<comments>http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd#comments</comments>
		<pubDate>Tue, 16 Mar 2010 18:29:24 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[boot CD]]></category>
		<category><![CDATA[Brasero]]></category>
		<category><![CDATA[burn CD]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[live CD]]></category>
		<category><![CDATA[Lucid]]></category>
		<category><![CDATA[releases]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=925</guid>
		<description><![CDATA[Ubuntu's getting ready to release the next version of it's open-source operating system. The current version is Karmic Koala (9.10, released October 2009), and the next version will be Lucid Lynx (version 10.04, to be released April 2010). 

Here's how to create a boot CD.

This'll let you try the OS just by rebooting and without installing anything on your computer.



Related posts:<ol><li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/363/ubuntu-dropping-the-gimp-from-installation-cd-for-lucid-lynx' rel='bookmark' title='Permanent Link: Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx'>Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Ubuntu</strong> is getting ready to release the next version of it&#8217;s <a href="http://www.ubuntu.com/">open-source operating system</a>. The current version is Karmic Koala (9.10, released October 2009), and the next version will be <strong>Lucid Lynx</strong> (version 10.04, to be released April 2010).</p>
<p>Here&#8217;s how to create a <strong>boot CD for Ubuntu</strong>.</p>
<p>This&#8217;ll let you try the OS just by <strong>rebooting</strong> and <strong>without installing</strong> anything on your computer. This is also called a &#8220;<strong>live CD</strong>&#8221; because you can use the OS mostly like you would if it were installed. I.e., it&#8217;s not just a setup program, but the real thing.</p>
<p>Note: Lucid is still in <strong>alpha</strong> testing so <strong>don&#8217;t install</strong> it if you&#8217;re not an enthusiast or if you have data on your hard drive you&#8217;d like to keep.</p>
<h2>Get the ISO image for Ubuntu</h2>
<p>Before you burn the live boot CD, you need the right <strong>CD image</strong>. Ubuntu CD images are provided in <a href="http://en.wikipedia.org/wiki/ISO_image">&#8220;ISO&#8221; format</a>.</p>
<p>The <strong>daily build</strong> for Ubuntu (regardless of what the next version is) is here:</p>
<p><a href="http://cdimage.ubuntu.com/daily/current/">http://cdimage.ubuntu.com/daily/current/</a></p>
<p>The daily build incorporates any <strong>bug fixes</strong> that were applied in a given day.</p>
<p>This the <a href="http://cdimage.ubuntu.com/daily/current/lucid-alternate-i386.iso">direct link to the daily Intel 386 (32-bit) CD image</a>. Save it someplace.</p>
<p>Other releases (including final releases) can be found here:<br />
<a href="http://cdimage.ubuntu.com/releases/">http://cdimage.ubuntu.com/releases/</a></p>
<h2>Burning the CD with Brasero</h2>
<p>Once you have downloaded the ISO CD image, you can <strong>burn the CD</strong>.</p>
<p>The default application for burning CDs in Ubuntu is <strong>Brasero</strong>. It&#8217;s in Applications &gt; Sound &amp; Video &gt; Brasero Disc Burner.</p>
<p>When the Brasero window opens, click on the &#8220;Burn image&#8221; button (the last one):<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-main-window.png"><img class="alignnone size-medium wp-image-926" title="brasero-main-window" src="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-main-window-511x294.png" alt="brasero-main-window" width="511" height="294" /></a></p>
<p>This brings up the Image Burning Setup window. In the &#8220;Select a disc image to write&#8221; section, click to select the ISO image:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-image-burning-setup-2.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-image-burning-setup-2.png" alt="brasero-image-burning-setup-2" title="brasero-image-burning-setup-2" width="394" height="221" class="alignnone size-full wp-image-929" /></a></p>
<p>Then insert a <strong>writable CD</strong>. You can use a CD+R, DVD+R or DVD-R. If you use a DVD, the extra space will be wasted:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-image-burning-setup-1.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-image-burning-setup-1.png" alt="brasero-image-burning-setup-1" title="brasero-image-burning-setup-1" width="388" height="277" class="alignnone size-full wp-image-928" /></a></p>
<p>You can set the CD burn speed if you like in Properties. I just left it as it is. Click Burn to write the boot CD image.</p>
<p>Brasero burns the CD. You can either close it out or make another copy:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-burning-disc-100-percent-done.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-burning-disc-100-percent-done.png" alt="brasero-burning-disc-100-percent-done" title="brasero-burning-disc-100-percent-done" width="506" height="228" class="alignnone size-full wp-image-930" /></a></p>
<h3>Rewritable CDs and DVDs</h3>
<p>You can use a CD+RW, DVD+RW, DVD-RW or DVD-RAM, with Brasero as well. This let&#8217;s you write the CD image again without having to use a new CD everytime. This is especially important with daily builds because otherwise you&#8217;d use up 150 CD or so burning images.</p>
<p>You don&#8217;t have to blank the rewritable disc before using it. Just insert it when Brasero asks for a writable CD. It&#8217;ll erase the CD before writing.<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-image-burning-3-setup-rewritable-cd.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-image-burning-3-setup-rewritable-cd.png" alt="brasero-image-burning-3-setup-rewritable-cd" title="brasero-image-burning-3-setup-rewritable-cd" width="465" height="221" class="alignnone size-full wp-image-931" /></a></p>
<p>If you want to blank a CD manually, select Tools &gt; Blank from the main Brasero window:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-disc-blanking.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/brasero-disc-blanking.png" alt="brasero-disc-blanking" title="brasero-disc-blanking" width="304" height="308" class="alignnone size-full wp-image-927" /></a></p>
<h2>Booting with the Ubuntu CD</h2>
<p>After the CD&#8217;s burned, you might have to set your <a href="http://en.wikipedia.org/wiki/BIOS">BIOS settings</a> to make your computer boot from the CD instead of your hard drive.</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/363/ubuntu-dropping-the-gimp-from-installation-cd-for-lucid-lynx' rel='bookmark' title='Permanent Link: Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx'>Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Install Google Chromium on Ubuntu</title>
		<link>http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu</link>
		<comments>http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:59:11 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=884</guid>
		<description><![CDATA[Chromium is the open-source version of the Google Chrome web browser. It excludes some of the URL-tracking stuff in Chrome.

Here's how to install it on Ubuntu.


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/953/creating-a-database-in-mysql-with-mysql-query-browser-on-ubuntu-linux' rel='bookmark' title='Permanent Link: Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux'>Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Chromium is the open-source version of the Google Chrome web browser. It excludes some of the URL-tracking stuff in Chrome.</p>
<p>Here&#8217;s how to install it on Ubuntu. This works for Karmic Koala 9.10.</p>
<h2>The short way with the command line</h2>
<p>In the file <tt>/etc/apt/sources.list</tt> add the following line:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>chromium-daily<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu karmic main</pre></div></div>

<p>In a terminal, get a key and refresh the repository index:</p>

<div class="wp_syntax"><div 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-key</span> adv <span style="color: #660033;">--recv-keys</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com 4E5E17B5
<span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>And install Chromium:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> chromium-browser</pre></div></div>

<h2>Installing Chromium: a walkthrough</h2>
<p>Here&#8217;s the long version.</p>
<p>Normally, packages in Ubuntu are installed from the main Ubuntu repositories. But there&#8217;s also the concept of &#8220;Personal Package Archives&#8221; for experimental software. To use these, you have to specify PPA information to Ubuntu.</p>
<p>In a terminal, add the keys for the Chromium PPA:</p>

<div class="wp_syntax"><div 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-key</span> adv <span style="color: #660033;">--recv-keys</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com 4E5E17B5</pre></div></div>

<p>Here&#8217;s the output:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-01-add-key.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-01-add-key-512x175.png" alt="chromium-install-ubuntu-01-add-key" title="chromium-install-ubuntu-01-add-key" width="512" height="175" class="alignnone size-medium wp-image-885" /></a></p>
<p>Open up System > Administration > Synaptic Package Manager. Then, in Synaptic, choose Settings > Repositories.<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-02-software-sources.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-02-software-sources-512x475.png" alt="chromium-install-ubuntu-02-software-sources" title="chromium-install-ubuntu-02-software-sources" width="512" height="475" class="alignnone size-medium wp-image-886" /></a></p>
<p>Click on the &#8220;Other Software&#8221; tab and then click &#8220;Add&#8221;:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-03-software-sources.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-03-software-sources-512x475.png" alt="chromium-install-ubuntu-03-software-sources" title="chromium-install-ubuntu-03-software-sources" width="512" height="475" class="alignnone size-medium wp-image-887" /></a></p>
<p>Enter the following into the dialog:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>chromium-daily<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu karmic main</pre></div></div>

<p><a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-04-add-repository.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-04-add-repository.png" alt="chromium-install-ubuntu-04-add-repository" title="chromium-install-ubuntu-04-add-repository" width="477" height="245" class="alignnone size-full wp-image-888" /></a></p>
<p>When you click on &#8220;Add Source&#8221;, a new repository is added which will pull in Chromium updates:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-05-chromium-repository-added.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-05-chromium-repository-added.png" alt="chromium-install-ubuntu-05-chromium-repository-added" title="chromium-install-ubuntu-05-chromium-repository-added" width="496" height="48" class="alignnone size-full wp-image-889" /></a></p>
<p>Synaptic will tell you you need to reload package information:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-06-repositories-changed.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-06-repositories-changed.png" alt="chromium-install-ubuntu-06-repositories-changed" title="chromium-install-ubuntu-06-repositories-changed" width="434" height="221" class="alignnone size-full wp-image-890" /></a></p>
<p>Click on the Reload button in the upper left-hand corner of Synaptic. Synaptic will reload package information:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-07-updating-repositories-downloading-package-information.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-07-updating-repositories-downloading-package-information.png" alt="chromium-install-ubuntu-07-updating-repositories-downloading-package-information" title="chromium-install-ubuntu-07-updating-repositories-downloading-package-information" width="456" height="251" class="alignnone size-full wp-image-891" /></a></p>
<p>After that&#8217;s done, enter &#8220;chromium&#8221; in the Quick Search box, right-click on Chromium Browser, and and select &#8220;Mark for Installation&#8221;:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-08-select-chromium-browser.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-08-select-chromium-browser.png" alt="chromium-install-ubuntu-08-select-chromium-browser" title="chromium-install-ubuntu-08-select-chromium-browser" width="509" height="136" class="alignnone size-full wp-image-892" /></a></p>
<p>Synaptic prompts you to mark additional required packages for installation. Choose Apply:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-09-chromium-required-packages.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-09-chromium-required-packages.png" alt="chromium-install-ubuntu-09-chromium-required-packages" title="chromium-install-ubuntu-09-chromium-required-packages" width="456" height="376" class="alignnone size-full wp-image-893" /></a></p>
<p>Note: don&#8217;t choose the &#8220;chromium&#8221; package. That&#8217;s actually an old Linux-based game:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-10-chromium-game.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-10-chromium-game.png" alt="chromium-install-ubuntu-10-chromium-game" title="chromium-install-ubuntu-10-chromium-game" width="476" height="113" class="alignnone size-full wp-image-894" /></a></p>
<p>Click on Apply in the toolbar in Synaptic. Verify your choice in the Summary dialog:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-11-synaptic-summary.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-11-synaptic-summary-512x415.png" alt="chromium-install-ubuntu-11-synaptic-summary" title="chromium-install-ubuntu-11-synaptic-summary" width="512" height="415" class="alignnone size-medium wp-image-895" /></a></p>
<p>Synaptic downloads the package files:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-12-downloading-package-files.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-12-downloading-package-files.png" alt="chromium-install-ubuntu-12-downloading-package-files" title="chromium-install-ubuntu-12-downloading-package-files" width="456" height="200" class="alignnone size-full wp-image-896" /></a></p>
<p>And installs them:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-13-applying-changes.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-13-applying-changes.png" alt="chromium-install-ubuntu-13-applying-changes" title="chromium-install-ubuntu-13-applying-changes" width="509" height="283" class="alignnone size-full wp-image-897" /></a></p>
<p>The changes are applied:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-14-changes-applied.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-14-changes-applied.png" alt="chromium-install-ubuntu-14-changes-applied" title="chromium-install-ubuntu-14-changes-applied" width="509" height="223" class="alignnone size-full wp-image-898" /></a></p>
<p>To run Chromium, choose &#8220;Chromium Web Browser&#8221; from the Internet menu in Applications:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-15-application-menu.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-15-application-menu-512x299.png" alt="chromium-install-ubuntu-15-application-menu" title="chromium-install-ubuntu-15-application-menu" width="512" height="299" class="alignnone size-medium wp-image-899" /></a></p>
<p>These instructions are for adding the daily builds PPA for Chromium, meaning that you&#8217;ll get updates for it every day if you want. For me, the version I&#8217;m running is fine, so I don&#8217;t click on the Update button when Update Manager shows up.<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-about-chromium.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-about-chromium-512x326.png" alt="chromium-install-ubuntu-about-chromium" title="chromium-install-ubuntu-about-chromium" width="512" height="326" class="alignnone size-medium wp-image-900" /></a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/953/creating-a-database-in-mysql-with-mysql-query-browser-on-ubuntu-linux' rel='bookmark' title='Permanent Link: Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux'>Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu GNOME Panel Doesn&#8217;t AutoHide [SOLUTION]</title>
		<link>http://digitivity.org/848/ubuntu-gnome-panel-doesnt-autohide-solution</link>
		<comments>http://digitivity.org/848/ubuntu-gnome-panel-doesnt-autohide-solution#comments</comments>
		<pubDate>Mon, 22 Feb 2010 18:38:09 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[autohide]]></category>
		<category><![CDATA[GNOME Panel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[top panel]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Panel]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=848</guid>
		<description><![CDATA[The Ubuntu Panel is a system panel that appears at the top of the screen in Ubuntu. Unlike Windows, Ubuntu has two panels: one on top, and one on the bottom.

I have the top panel set to auto-hide. But, the other day, it hung for some reason. Here's how to fix it.



Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The <strong>Ubuntu Panel</strong> is a system panel that appears at the top of the screen in Ubuntu. Unlike <strong>Windows</strong>, Ubuntu has two panels: one on top, and one on the bottom.</p>
<p>I have the top panel set to <strong>auto-hide</strong>. But, the other day, it <strong>hung</strong> for some reason. Here&#8217;s how to fix it.</p>
<h2>The Ubuntu Panel</h2>
<p>The top panel contains the <strong>Applications</strong>, <strong>Places</strong> (file manager and bookmarks), and <strong>System</strong> (preferences) <strong>menus</strong>. It can also contain applets, time/weather, notifications, or anything else you want to put there. The bottom panel contains a button for each running application, and a desktop switcher (there are multiple desktops in Ubuntu and other Linuxes).<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/02/ubuntu-gnome-panel.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/ubuntu-gnome-panel-512x11.png" alt="ubuntu-gnome-panel" title="ubuntu-gnome-panel" width="512" height="11" class="alignnone size-medium wp-image-851" /></a></p>
<h2>Auto-hide not working</h2>
<p>I usually set the top panel to <strong>hide</strong> automatically. This opens up 24 pixels more of screen space, which I find handy. You can set this by right-clicking on the panel, selecting Properties, and checking the Autohide checkbox:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/02/ubuntu-gnome-panel-properties.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/ubuntu-gnome-panel-properties.png" alt="ubuntu-gnome-panel-properties" title="ubuntu-gnome-panel-properties" width="249" height="341" class="alignnone size-full wp-image-850" /></a></p>
<p>Normally, after setting Autohide on, it stays out of your way. When you move the mouse pointer all the way to the top of the screen it appears and it&#8217;ll stay visible as long as you stay on the panel.</p>
<p>Once in a while, it&#8217;ll stay visible even when you move your mouse away. That&#8217;s usually fixable by moving the mouse to the top of the screen and back down again.</p>
<p>But, the other day, it wouldn&#8217;t <strong>hide</strong>. I could turn Autohide on and off again, but it would just stay there.</p>
<p>The solution: you can just <strong>kill the program</strong> responsible for the panel. Once you kill it, it&#8217;ll start again, so you won&#8217;t lose the panel for the duration of your session.</p>
<p>To kill it, you just enter the following into a terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">killall</span> gnome-panel</pre></div></div>

<p>You can also open <strong>GNOME System Monitor</strong>, a graphical process viewer, from System &gt; Administration &gt; System Monitor. The Processes tab should already be visible. Click on the Process Name column to sort by that column. Then find &#8220;gnome-panel&#8221;. It&#8217;s a sub-task of &#8220;gnome-session&#8221;. Select it, and click on the <strong>End Process</strong> button in the lower right hand corner of System Monitor.<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/02/ubuntu-gnome-panel-system-monitor.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/ubuntu-gnome-panel-system-monitor.png" alt="ubuntu-gnome-panel-system-monitor" title="ubuntu-gnome-panel-system-monitor" width="268" height="170" class="alignnone size-full wp-image-849" /></a></p>
<p>The GNOME Panel will <strong>die</strong> and <strong>restart</strong>.</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/848/ubuntu-gnome-panel-doesnt-autohide-solution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Release Schedule Explained</title>
		<link>http://digitivity.org/546/ubuntu-release-schedule-explained</link>
		<comments>http://digitivity.org/546/ubuntu-release-schedule-explained#comments</comments>
		<pubDate>Mon, 11 Jan 2010 19:27:13 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[release schedule]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=546</guid>
		<description><![CDATA[Mads Rosendahl created a great little video explaing the Ubuntu release schedule in very simple terms.
Ubuntu Release Schedule
One thing I didn&#8217;t know was that, according to the video, if an Ubuntu release is delayed, it&#8217;s year-month version (like 9.10 for Ubuntu Karmic released in October 2009), is also changed. I had been under the impression [...]


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/318/ubuntu-karmic-koala-910-is-out' rel='bookmark' title='Permanent Link: Ubuntu Karmic Koala 9.10 Is Out'>Ubuntu Karmic Koala 9.10 Is Out</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://anotherubuntu.blogspot.com/">Mads Rosendahl</a> created a great little video explaing the Ubuntu release schedule in very simple terms.</p>
<p><a href='http://screencasts.ubuntu.com/2010/01/10/Ubuntu_Release_Schedule' >Ubuntu Release Schedule</a></p>
<p>One thing I didn&#8217;t know was that, according to the video, if an Ubuntu release is delayed, it&#8217;s year-month version (like 9.10 for Ubuntu Karmic released in October 2009), is also changed. I had been under the impression that the version number is just symbolic and it remains constant.</p>
<p>One thing that doesn&#8217;t change is the codename for a given release (such as Karmic Koala for 9.10, Jaunty Jackelope for 9.04). The codenames are usually based on unusual animal names paired with an unusual adjective to make googling for information on the realease easier.</p>
<p>Here&#8217;s a list of past and upcoming Ubuntu releases:</p>
<p><a href="https://wiki.ubuntu.com/Releases">https://wiki.ubuntu.com/Releases</a></p>
<p>The next release of Ubuntu after Karmic Koala is Lucid Lynx, 10.04, due in April 2010.</p>
<p>That version is a so-called LTS release (Long-Term Support).</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/318/ubuntu-karmic-koala-910-is-out' rel='bookmark' title='Permanent Link: Ubuntu Karmic Koala 9.10 Is Out'>Ubuntu Karmic Koala 9.10 Is Out</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/546/ubuntu-release-schedule-explained/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Rename Files as Lowercase in Ubuntu Linux Recursively</title>
		<link>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively</link>
		<comments>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively#comments</comments>
		<pubDate>Sun, 27 Dec 2009 21:08:38 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[filenames]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lowercase]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[subdirectories]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[xargs]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=420</guid>
		<description><![CDATA[Some reasons you might want to lowercase your filenames include:
1. Most webservers are case-sensitive. Because of this, most websites stick to the rule of having all files in a single case, namely lower.
2. If you&#8217;re using the command line to manipulate files, it&#8217;s easier when all the files are lower case. It&#8217;s a lot faster [...]


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Some reasons you might want to lowercase your filenames include:</p>
<p>1. Most webservers are case-sensitive. Because of this, most websites stick to the rule of having all files in a single case, namely lower.</p>
<p>2. If you&#8217;re using the command line to manipulate files, it&#8217;s easier when all the files are lower case. It&#8217;s a lot faster to type in all one case.</p>
<p>But it&#8217;s too time consuming to rename each file individually, so here are a few ways to rename. These are adapted from the <a href="http://www.commandlinefu.com/commands/view/864/recursively-change-file-name-from-uppercase-to-lowercase-or-viceversa">commandlinefu</a> website. (But the commands there have some bugs, so keep reading here.)</p>
<h2>Renaming all the files in the current directory from uppercase to lowercase</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rename <span style="color: #ff0000;">'y/A-Z/a-z/'</span> <span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>This uses the <tt>rename</tt> script which is included with Perl, which in turn uses Perl&#8217;s <tt>rename</tt> function.</p>
<p>Most Linuxes and Unixes include Perl these days, including most web hosts. It&#8217;s easier and more succint than the alternatives.</p>
<h2>Renaming all files from uppercase to lowercase in the current and subdirectories recursively</h2>
<p>The way to do this is to feed <tt>rename</tt> a list of all files in the current directory and its subdirectories:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f <span style="color: #660033;">-print0</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #660033;">-0</span> rename <span style="color: #ff0000;">'y/A-Z/a-z/'</span></pre></div></div>

<p>Here&#8217;s what it means:</p>
<p><tt>find</tt> prints a list of all files in the current and all subdirectories, recursively. <tt>-type f</tt> means only print the names of files, and not directories.</p>
<p>The <tt>|</tt> takes the output of the first command and sends it as input to the second command.</p>
<p><tt>xargs</tt> takes the input (which is a list of files) and executes rename once for every filename, while appending the filename to the end of the rename command.</p>
<p>Normally, <tt>find</tt> puts a newline between each filename. But since a file&#8217;s name can also contain newlines, you make find delimit the filenames with a null character (ASCII 0). You do this by specifying the <tt>-print0</tt> option. But you also have to tell <tt>xargs</tt> not to view newlines or spaces as filename delimiters, but rather only the null character. You do that with the <tt>-0</tt> option.</p>
<h2>Renaming files to lowercase without using Perl</h2>
<p>Occasionally, you might not have access to Perl.</p>
<p>In such cases, you can use straight POSIX shell commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f<span style="color: #000000; font-weight: bold;">|</span><span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> f; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$f</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(echo $f|tr '[:upper:]' '[:lower:]')</span>&quot;</span>; <span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>This is an alernative that&#8217;s faster:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f <span style="color: #660033;">-execdir</span> <span style="color: #c20cb9; font-weight: bold;">sh</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">'mv &quot;'</span><span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #ff0000;">'&quot; &quot;$(echo '</span><span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #ff0000;">'|tr '</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>:upper:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #ff0000;">' '</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>:lower:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #ff0000;">')&quot;'</span> \;</pre></div></div>

<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx</title>
		<link>http://digitivity.org/363/ubuntu-dropping-the-gimp-from-installation-cd-for-lucid-lynx</link>
		<comments>http://digitivity.org/363/ubuntu-dropping-the-gimp-from-installation-cd-for-lucid-lynx#comments</comments>
		<pubDate>Sun, 29 Nov 2009 03:50:57 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[F-Spot]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[graphics editor]]></category>
		<category><![CDATA[installation CD]]></category>
		<category><![CDATA[photo editing]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=363</guid>
		<description><![CDATA[The Ubuntu Linux distribution is dropping the GIMP graphics program from its installation CD. While it won&#8217;t be installed on fresh installations, the program will be able to be installed via Ubuntu Software Center. Users who have the GIMP installed will continue to have it installed after future Ubuntu upgrades.
This move had generated quite a [...]


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd' rel='bookmark' title='Permanent Link: How to Create an Ubuntu Boot CD for Lucid Lynx'>How to Create an Ubuntu Boot CD for Lucid Lynx</a></li>
<li><a href='http://digitivity.org/315/redhat-relents-on-fedora-software-installation-policy' rel='bookmark' title='Permanent Link: RedHat Relents on Fedora Software Installation Policy'>RedHat Relents on Fedora Software Installation Policy</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Ubuntu Linux distribution is dropping the GIMP graphics program from its installation CD. While it won&#8217;t be installed on fresh installations, the program will be able to be installed via Ubuntu Software Center. Users who have the GIMP installed will continue to have it installed after future Ubuntu upgrades.</p>
<p>This move had generated quite a bit of controversy in the discussion of the matter on Slashdot. There, some posters called the dropping of GIMP to be a sign of the dumbing-down of Ubuntu. Others lamented the loss of a flagship program which had always been showcased as an example of what free and open-source (FOSS) software can do. This is all the more so with GIMP, since it&#8217;s toolkit of graphical widgets (such as buttons, menus, and option lists) was the basis for GTK+ (GIMP ToolKit Plus), which is the basis for the GNOME Desktop used by Ubuntu and other Linux distributions. Finally one user said that while not all casual users may have a need for graphics editing to the extent provided by the GIMP, it&#8217;s exactly because the software used to be installed that casual users were able to be easily introduced to software they may not have imagined existed or thought they had a need for.</p>
<p>But an article by developer Ryan Paul in Ars Technica claims that letting the GIMP go is a sign of Ubuntu&#8217;s maturity and its going mainstream. Because more and more &#8220;normal&#8221; desktop users are using Ubuntu, the usage profile has changed, and such users don&#8217;t need the intricate graphics editing features of the GIMP. Paul also explained the open process for participation at the Ubuntu Developer Summit where the decision was made. Upstream developers are also invited to such meetings, and Sven Neumann, a GIMP developer and the author of the GIMP Pocket Reference, approved the move on the <a href="https://lists.xcf.berkeley.edu/lists/gimp-developer/2009-November/023779.html">GIMP developer mailing list</a>.</p>
<p>The void left by the GIMP may be filled by F-Spot, the photo management application, in the next version. The problem with F-Spot, though, is that it has a very heavy management mode in which it wants to &#8220;import&#8221; your photos before it&#8217;ll allow you to work with them. The seperate &#8220;viewer&#8221; mode, which is invoked by choosing &#8220;Edit with F-Spot&#8221; in the Nautilus File Manager, doesn&#8217;t have editing tools.</p>
<p>But they were added by a developer recently just for testing, and the result, along with a few more editing tools, may mean F-Spot will have enough image editing tools for casual photographers in future versions.</p>
<p>Another aspect to the matter was voiced on Ars Technica Forums: While echoing sentiments found on Slashdot, some also questioned why it was GIMP being removed. Particularly, why should F-Spot remain on the CD with its large Mono dependencies? Granted, Tomboy also uses Mono, but some want that removed as well.</p>
<p>F-Spot is not favoured by all, and alternatives to F-Spot include Solang, Shotwell or IntiPinku for GNOME and DigiKam and DigiKam and Gwenview for KDE.</p>
<h2>Resources</h2>
<p><a href="http://arstechnica.com/open-source/news/2009/11/giving-up-the-gimp-is-a-sign-of-ubuntus-mainstream-maturity.ars">Ars Technica Article on the GIMP</a></p>
<p><a href="http://episteme.arstechnica.com/eve/forums?a=dl&amp;f=174096756&amp;x_id=mtid40756">Ars Techinca Forum Discussion</a></p>
<p><a href="http://linux.slashdot.org/story/09/11/19/1342230/GIMP-Dropped-From-Ubuntu-1004">Slashdot Discussion</a></p>
<p><a href="http://savannah.nongnu.org/projects/solang/">Solang</a></p>
<p><a href="http://www.yorba.org/shotwell/">Shotwell</a></p>
<p><a href="http://code.google.com/p/intipunku/">IntiPunku</a></p>
<p><a href="http://www.digikam.org/ ">DigiKam</a></p>
<p><a href="http://gwenview.sourceforge.net/">Gwenview</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/925/how-to-create-an-ubuntu-live-boot-cd' rel='bookmark' title='Permanent Link: How to Create an Ubuntu Boot CD for Lucid Lynx'>How to Create an Ubuntu Boot CD for Lucid Lynx</a></li>
<li><a href='http://digitivity.org/315/redhat-relents-on-fedora-software-installation-policy' rel='bookmark' title='Permanent Link: RedHat Relents on Fedora Software Installation Policy'>RedHat Relents on Fedora Software Installation Policy</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/363/ubuntu-dropping-the-gimp-from-installation-cd-for-lucid-lynx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KDE Renames Itself as the KDE Plasma Desktop</title>
		<link>http://digitivity.org/348/kde-renames-itself-as-the-kde-plasma-desktop</link>
		<comments>http://digitivity.org/348/kde-renames-itself-as-the-kde-plasma-desktop#comments</comments>
		<pubDate>Thu, 26 Nov 2009 17:53:12 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Plasma Desktop]]></category>
		<category><![CDATA[rename]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=348</guid>
		<description><![CDATA[KDE is undergoing a marketing exercise in renaming itself and its various products:

The phrase &#8220;K Desktop Environment&#8221; won&#8217;t be used
KDE means the community and an overarching brand
Various KDE products&#8217; new names:
KDE Plasma Desktop and KDE Plasma Netbook
KDE technologies become the KDE Platform
The KDE Applications remain the same
KDE 4.3 will be called &#8220;KDE Software Compilation 4.4&#8243; [...]


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/961/keep-notes-and-stay-organized-with-zim-desktop-wiki' rel='bookmark' title='Permanent Link: Keep Notes and Stay Organized with Zim Desktop Wiki'>Keep Notes and Stay Organized with Zim Desktop Wiki</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>KDE is undergoing a marketing exercise in <a href="http://dot.kde.org/2009/11/24/repositioning-kde-brand">renaming itself</a> and its various products:</p>
<ul>
<li>The phrase &#8220;K Desktop Environment&#8221; won&#8217;t be used</li>
<li>KDE means the community and an overarching brand</li>
<li>Various KDE products&#8217; new names:</li>
<li>KDE Plasma Desktop and KDE Plasma Netbook</li>
<li>KDE technologies become the KDE Platform</li>
<li>The KDE Applications remain the same</li>
<li>KDE 4.3 will be called &#8220;KDE Software Compilation 4.4&#8243; in the next release</li>
</ul>
<p>Although there&#8217;s some logic to the name changes, I think force of habit is going to have people continue to refer to KDE as KDE 4.4.</p>
<p>The fact is, people call products what they want to call them, regardless of what company marketing departments want. For example, Xerox doesn&#8217;t want you to refer to photocopying as xeroxing, but people still do. Kleenex doesn&#8217;t want you to refer to facial tissue as kleenexes, but people still do.</p>
<p><a href="http://tech.slashdot.org/story/09/11/25/2132204/KDE-Rebrands-Introduces-KDE-Plasma-Desktop">Slashdot discussion here</a>.</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/961/keep-notes-and-stay-organized-with-zim-desktop-wiki' rel='bookmark' title='Permanent Link: Keep Notes and Stay Organized with Zim Desktop Wiki'>Keep Notes and Stay Organized with Zim Desktop Wiki</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/348/kde-renames-itself-as-the-kde-plasma-desktop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Karmic Koala 9.10 Is Out</title>
		<link>http://digitivity.org/318/ubuntu-karmic-koala-910-is-out</link>
		<comments>http://digitivity.org/318/ubuntu-karmic-koala-910-is-out#comments</comments>
		<pubDate>Mon, 23 Nov 2009 12:10:53 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[Karmic Koala]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=318</guid>
		<description><![CDATA[The latest release of Ubuntu, the easy-to-use Linux distribution, is out. With a version number of 9.10 (which stands for October, 2009), it&#8217;s code-named Karmic Koala.
Some features of the new release include:

The Ubuntu Software Center. This is an application that replaces the old Application Add/Remove. It&#8217;s nice for browsing available software, and you can install [...]


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/363/ubuntu-dropping-the-gimp-from-installation-cd-for-lucid-lynx' rel='bookmark' title='Permanent Link: Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx'>Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The latest release of <a href="http://www.ubuntu.com/">Ubuntu</a>, the easy-to-use Linux distribution, is out. With a version number of 9.10 (which stands for October, 2009), it&#8217;s code-named Karmic Koala.</p>
<p>Some features of the new release include:</p>
<ul>
<li>The Ubuntu Software Center. This is an application that replaces the old Application Add/Remove. It&#8217;s nice for browsing available software, and you can install from there too.</li>
<li>Firefox 3.5 Browser</li>
<li>OpenOffice version 3.1</li>
<li>UbuntuOne, a  cloud-based file storage and backup service. Ubuntu offers a free 2GB of storage to everyone, with various paid plans after that.</li>
<li>Empathy replaces Pidgin as the instant message client</li>
<li>There&#8217;s a new login manager (gdm 2.28) which provides a more integrated login</li>
<li>A revamped Network Manager whose goal is to just have networks work without a lot of fuss</li>
<li>Social network integration, having e-mail, web-mail, IM, and twitter clients all acccessible from a single messages indicator applet running on the top panel.</li>
</ul>
<p>Some features under the hood include:</p>
<ul>
<li>Use of DeviceKit instead of hal (hardware access layer) for power management and laptop function keys.</li>
<li>Use of the ext4 filesystem by default on new installations</li>
<li>GRUB 2 as the boot manager for new installations</li>
<li>Non Executable Emulation: Allows installations on computers that don&#8217;t have hardware non-executable protection to emulate approximate it.</li>
<li>More applications are build as &#8220;position-independent executables&#8221;, decreasing the risk of attack by malware</li>
<li>Replacing the input method framework SCIM with IBUS</li>
</ul>
<p><a href="http://www.ubuntu.com/getubuntu/download">Download Karmic Koala here</a>.</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/363/ubuntu-dropping-the-gimp-from-installation-cd-for-lucid-lynx' rel='bookmark' title='Permanent Link: Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx'>Ubuntu Dropping the GIMP From Installation CD for Lucid Lynx</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/318/ubuntu-karmic-koala-910-is-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
