<?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>Jorink.nl &#187; Ubuntu 10.04</title>
	<atom:link href="http://www.jorink.nl/tag/ubuntu-10-04/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jorink.nl</link>
	<description>Just for documentation</description>
	<lastBuildDate>Thu, 15 Dec 2011 09:36:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Delete all thumbs.db</title>
		<link>http://www.jorink.nl/2010/11/delete-all-thumbs-db/</link>
		<comments>http://www.jorink.nl/2010/11/delete-all-thumbs-db/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 14:30:27 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Batch files]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>
		<category><![CDATA[Ubuntu 10.10]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=485</guid>
		<description><![CDATA[Windows creates in every folder with pictures a thumbs.db file. Linux doesn&#8217;t need them, so here is a simple command to get rid of them. sudo find /home/user -name Thumbs.db -exec rm {} \;]]></description>
			<content:encoded><![CDATA[<p>Windows creates in every folder with pictures a thumbs.db file.</p>
<p>Linux doesn&#8217;t need them, so here is a simple command to get rid of them.</p>
<p><code>sudo find /home/user -name Thumbs.db -exec rm {} \;</code><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/11/delete-all-thumbs-db/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remove empty directories</title>
		<link>http://www.jorink.nl/2010/11/remove-empty-directories/</link>
		<comments>http://www.jorink.nl/2010/11/remove-empty-directories/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 14:28:20 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Batch files]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>
		<category><![CDATA[Ubuntu 10.10]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=483</guid>
		<description><![CDATA[To remove empty directories in a directory structure use the following command : sudo find /begin/here -type d -empty -delete]]></description>
			<content:encoded><![CDATA[<p>To remove empty directories in a directory structure use the following command :</p>
<p><code>sudo find /begin/here -type d -empty -delete</code><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/11/remove-empty-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Firefox 4 Beta in Ubuntu 10.04</title>
		<link>http://www.jorink.nl/2010/09/install-firefox-4-beta-in-ubuntu-10-04/</link>
		<comments>http://www.jorink.nl/2010/09/install-firefox-4-beta-in-ubuntu-10-04/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 11:33:00 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=371</guid>
		<description><![CDATA[Installing Firefox 4 Beta using Synaptec Package Manager Open Synaptec Package Manager Click Setting &#62; Repositories Select tab &#8220;Other Software&#8221; Click on the &#8220;+ Add&#8221; button and type the following in the APT line : ppa:ubuntu-mozilla-daily/ppa Click on &#8220;+ Add Source&#8221; and close Software Sources Hit the Reload button in SPM Search for &#8220;firefox 4&#8243; [...]]]></description>
			<content:encoded><![CDATA[<h3>Installing Firefox 4 Beta using Synaptec Package Manager</h3>
<ol>
<li>Open Synaptec Package Manager</li>
<li>Click Setting &gt; Repositories</li>
<li>Select tab &#8220;Other Software&#8221;</li>
<li>Click on the &#8220;+ Add&#8221; button and type the following in the APT line :<br />
ppa:ubuntu-mozilla-daily/ppa</li>
<li>Click on &#8220;+ Add Source&#8221; and close Software Sources</li>
<li>Hit the Reload button in SPM</li>
<li>Search for &#8220;firefox 4&#8243;</li>
<li>Mark the Firefox 4 package for Install. Agree to some additional required packages.</li>
<li>Hit Apply in SPM and your FireFox 4 Beta is installed</li>
<li>You can find it under Applications &gt; Internet &gt; Minefield 4.0 Web Browser</li>
</ol>
<p>Mindfield is the code name for experimental versions of Mozilla for the Linux Platform</p>
<h3>Installing Firefox 4 Beta using CLI</h3>
<p>Open a Terminal and type the following commands:<br />
<code>sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa</code><br />
<code>sudo apt-get update</code><br />
<code>sudo apt-get install firefox-4.0</code><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/09/install-firefox-4-beta-in-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiz not working in Ubuntu 10.04</title>
		<link>http://www.jorink.nl/2010/09/compiz-not-working-in-ubuntu-10-04/</link>
		<comments>http://www.jorink.nl/2010/09/compiz-not-working-in-ubuntu-10-04/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 14:37:15 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Compiz]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=362</guid>
		<description><![CDATA[Tried to install AWN on my desktop today. After installing a custom theme, AWN told me to enable compiz first. Each time I tried to start Compiz it would crash. After a little search on the Internet I found the following. http://ubuntuforums.org/showthread.php?t=1488662 http://ubuntuforums.org/showthread.php?t=1468351 Turns out I didn&#8217;t completely installed Compiz. After running this command in [...]]]></description>
			<content:encoded><![CDATA[<p>Tried to install AWN on my desktop today. After installing a custom theme, AWN told me to enable compiz first.</p>
<p>Each time I tried to start Compiz it would crash.<br />
After a little search on the Internet I found the following.</p>
<p><a href="http://ubuntuforums.org/showthread.php?t=1488662" target="_blank">http://ubuntuforums.org/showthread.php?t=1488662</a><br />
<a href="http://ubuntuforums.org/showthread.php?t=1468351" target="_blank">http://ubuntuforums.org/showthread.php?t=1468351</a></p>
<p>Turns out I didn&#8217;t completely installed Compiz.<br />
After running this command in a Terminal all my problems disappeared.</p>
<p><code>sudo apt-get install compiz compiz-plugins compiz-gnome compiz-core compiz-fusion-plugins-main compiz-fusion-plugins-extra compizconfig-backend-gconf</code><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/09/compiz-not-working-in-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 Post-Install Guide: What to do and try after installing Lucid Lynx!</title>
		<link>http://www.jorink.nl/2010/06/ubuntu-10-04-post-install-guide-what-to-do-and-try-after-installing-lucid-lynx/</link>
		<comments>http://www.jorink.nl/2010/06/ubuntu-10-04-post-install-guide-what-to-do-and-try-after-installing-lucid-lynx/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 22:02:11 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=308</guid>
		<description><![CDATA[What to do and try after installing Lucid Lynx? Read this article and find out. http://blog.thesilentnumber.me/2010/04/ubuntu-1004-post-install-guide-what-to.html]]></description>
			<content:encoded><![CDATA[<p>What to do and try after installing Lucid Lynx?</p>
<p>Read this article and find out.</p>
<p><a href="http://blog.thesilentnumber.me/2010/04/ubuntu-1004-post-install-guide-what-to.html" target="_blank">http://blog.thesilentnumber.me/2010/04/ubuntu-1004-post-install-guide-what-to.html</a><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/06/ubuntu-10-04-post-install-guide-what-to-do-and-try-after-installing-lucid-lynx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 with Brother DCP-357c</title>
		<link>http://www.jorink.nl/2010/06/ubuntu-10-04-with-brother-dcp-357c/</link>
		<comments>http://www.jorink.nl/2010/06/ubuntu-10-04-with-brother-dcp-357c/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 21:26:15 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Brother]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=303</guid>
		<description><![CDATA[My home computer is still running Windows XP. The main reason for this is my printer. It&#8217;s a Brother DCP-357c. For a long time I tried to make it work under Ubuntu. I was giving up the hope that it would ever work. After upgrading my laptop to Ubuntu 10.04 I thought to give it [...]]]></description>
			<content:encoded><![CDATA[<p>My home computer is still running Windows XP.<br />
The main reason for this is my printer. It&#8217;s a Brother DCP-357c.</p>
<p>For a long time I tried to make it work under Ubuntu.<br />
I was giving up the hope that it would ever work.<br />
After upgrading my laptop to Ubuntu 10.04 I thought to give it one more try.</p>
<p>AND IT WORKED. YEAH!!!!</p>
<p>Here&#8217;s how I did it.</p>
<p>First install the Brother drivers with Synaptic. Search for &#8220;Brother&#8221; and you will find the following packages.<br />
<em>brother-cups-wrapper-extra<br />
brother-lpr-drivers-extra</em></p>
<p>Install them for printing support.</p>
<p>Then download and install brscan2 from the Brother site.<br />
You can find it <a title="Brother Drivers Download" href="http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/download_scn.html#brscan2" target="_blank">here</a>.</p>
<p>Open a terminal and type</p>
<blockquote><p>lsusb</p></blockquote>
<p>You&#8217;ll get a output similar like this:</p>
<p><em>Bus 006 Device 002: ID 04f9:01e4 Brother Industries, Ltd DCP-357C</em></p>
<p>After ID you will find the Vendor ID (04f9) and the Product ID (01e4)<br />
You will need both of them, so remember them.</p>
<p>In the terminal type the following:</p>
<blockquote><p>gksudo gedit /lib/udev/rules.d/40-libsane.rules</p></blockquote>
<p>Add the following lines to the end of the hardware list</p>
<p><em>#Brother DCP-357C<br />
ATTRS{idVendor}==&#8221;04f9&#8243;, ATTRS{idProduct}==&#8221;01e4&#8243;, ENV{libsane_matched}=&#8221;yes&#8221;</em></p>
<p>Save the file and restart your computer.<br />
After the restart Ubuntu will find your printer but gives the message that the correct drivers are not installed.<br />
Chose to manually select the driver and select the Brother DCP-353C. Print the test page and everything should work like a charm.</p>
<p>Try to scan with &#8220;Simple scan&#8221; from the menu. This should work also.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/06/ubuntu-10-04-with-brother-dcp-357c/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

