<?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>Nerdpress.org &#187; ubuntu</title>
	<atom:link href="http://www.nerdpress.org/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nerdpress.org</link>
	<description>^__^</description>
	<lastBuildDate>Thu, 03 May 2012 15:03:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Wunderlist client for Linux</title>
		<link>http://www.nerdpress.org/2011/09/21/wunderlist-client-for-linux/</link>
		<comments>http://www.nerdpress.org/2011/09/21/wunderlist-client-for-linux/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 12:43:00 +0000</pubDate>
		<dc:creator>Ivo Bathke</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[linus]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wunderlist]]></category>

		<guid isPermaLink="false">http://nerdpress.org/?p=1711</guid>
		<description><![CDATA[Hey, today Wunderlist released a Linux Client for the Desktop. That made me curious about the hyped tool. So I gave it a try on my Ubuntu machine! Open the console and: Then back to the Desktop -&#62; right mouse click: Create Launcher -&#62; filled in the fields -&#62; Command: browsed to Clicked on the Icon [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Hey, today <a href="http://www.6wunderkinder.com/wunderlist/">Wunderlist</a> released a Linux Client for the Desktop. That made me curious about the hyped tool.<br />
So I gave it a try on my Ubuntu machine!</p>
<p>Open the console and:</p>
<pre class="brush: bash; title: ; notranslate">
wget http://www.6wunderkinder.com/downloads/wunderlist-1.2.4-linux-32.tgz
tar xvfz wunderlist-1.2.4-linux-32.tgz
sudo mv Wunderlist-1.2.4/ /opt/
</pre>
<p><span id="more-1711"></span>Then back to the Desktop -&gt; right mouse click:</p>
<p>Create Launcher -&gt; filled in the fields -&gt; Command: browsed to</p>
<pre class="brush: bash; title: ; notranslate">/opt/Wunderlist-1.2.4/Wunderlist</pre>
<p>Clicked on the Icon and browsed to :</p>
<pre class="brush: bash; title: ; notranslate">/opt/Wunderlist-1.2.4/Resources/wunderlist.png</pre>
<p>Ready!</p>
<p>Than dragged the launcher to the top panel, clicked on and there the client is.</p>
<p>After registration it now looks like so:</p>
<p><span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;"><a href="http://nerdpress.org/wp-content/uploads/2011/09/Wunderlist_Ubuntu.png" rel="lightbox[post-1711]" title=""><img class="alignnone size-medium wp-image-1712" src="http://nerdpress.org/wp-content/uploads/2011/09/Wunderlist_Ubuntu-300x171.png" alt="Wunderlist Ubuntu-300x171 in " width="300" height="171" /></a><br />
</span></p>
<p>Lets see if I it will get me hooked :)</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.nerdpress.org/2011/09/21/wunderlist-client-for-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>install ant ftp task on ubuntu</title>
		<link>http://www.nerdpress.org/2011/07/29/install-ant-ftp-task-on-ubuntu/</link>
		<comments>http://www.nerdpress.org/2011/07/29/install-ant-ftp-task-on-ubuntu/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 15:17:18 +0000</pubDate>
		<dc:creator>Ivo Bathke</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nerdpress.org/?p=1551</guid>
		<description><![CDATA[Tired of manually uploading your changes via FTP? And no shell because your client cant/wont buy a hosting package for real men? Then go for ant and its ftp task! Install it on ubuntu like so (given you have ant and java already): Butz! Now make your self an build.xml file in your projects root [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Tired of manually uploading your changes via FTP?<br />
And no shell because your client cant/wont buy a hosting package for real men?</p>
<p>Then go for <strong>ant</strong> and its <strong>ftp task</strong>!</p>
<p>Install it on ubuntu like so (given you have ant and java already):</p>
<p><span id="more-1551"></span></p>
<pre class="brush: bash; title: ; notranslate">
cd ~
wget http://apache.openmirror.de//commons/net/binaries/commons-net-1.4.1.tar.gz
tar -zxvf commons-net-1.4.1.tar.gz
sudo cp commons-net-1.4.1/commons-net-1.4.1.jar /usr/share/ant/lib
rm -rf commons-net-1.4.1
rm -rf commons-net-1.4.1.tar.gz

wget http://archive.apache.org/dist/jakarta/oro/jakarta-oro-current.tar.gz
tar -zxvf jakarta-oro-current.tar.gz
sudo cp jakarta-oro-2.0.8/jakarta-oro-2.0.8.jar /usr/share/ant/lib
rm -rf jakarta-oro-2.0.8
rm -rf jakarta-oro-current.tar.gz
</pre>
<p>Butz!<br />
Now make your self an build.xml file in your projects root and do:</p>
<pre class="brush: bash; title: ; notranslate">
cd myproject
ant
</pre>
<p>Wahnsinn!</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.nerdpress.org/2011/07/29/install-ant-ftp-task-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>symfony 1.4 installer</title>
		<link>http://www.nerdpress.org/2011/05/17/symfony-1-4-installer/</link>
		<comments>http://www.nerdpress.org/2011/05/17/symfony-1-4-installer/#comments</comments>
		<pubDate>Tue, 17 May 2011 11:27:17 +0000</pubDate>
		<dc:creator>Ivo Bathke</dc:creator>
				<category><![CDATA[Project Setup]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[symfony 1.4]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nerdpress.org/?p=1490</guid>
		<description><![CDATA[Ich hab mal einen symfony 1.4 installer shell script auf github gepackt. Damit kann man &#8220;ruckizucki&#8221; auf Ubuntu ein lokales symfony 1.4 Projekt aufsetzen. Es ist ein fork von einem virtualhost create script und macht folgendes: - holt den letzten symfony 1.4 stable release via svn - setzt alle notwendigen rechte zB auf den cache [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Ich hab mal einen <a href="https://github.com/ivoba/virtualhost.sh/tree/ubuntu-symfony">symfony 1.4 installer shell script</a> auf github gepackt.<br />
Damit kann man &#8220;ruckizucki&#8221; auf Ubuntu ein lokales symfony 1.4 Projekt aufsetzen. </p>
<p>Es ist ein fork von einem <a href="https://github.com/pgib/virtualhost.sh">virtualhost create script</a> und macht folgendes:</p>
<ul>
- holt den letzten symfony  1.4 stable release via svn<br />
- setzt alle notwendigen rechte zB auf den cache folder<br />
- bereitet die datenbank vor<br />
- legt eine app an<br />
- macht eine .gitignore<br />
- und ruft das virtualhost creator script auf, was den vhost anlegt auf &#8220;web&#8221;
</ul>
<p><span id="more-1490"></span></p>
<p>Einfach im Verzeichnis wo die scripte liegen:</p>
<pre class="brush: bash; title: ; notranslate">
./symfony_installer.sh myproject
</pre>
<p>&#8230; durchhangeln und dann auf <em>http://myproject.local</em> aufrufen</p>
<p>Entfernen kann man das Projekt inkl. virtual host auch wieder:</p>
<pre class="brush: bash; title: ; notranslate">
sudo ./virtualhost --delete myproject.local --symfony
</pre>
<p>&#8230; kommt vielleicht 2 Jahre zu spät ;)</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.nerdpress.org/2011/05/17/symfony-1-4-installer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asus N82j, U80, UL30 Series; Touchpad auschalten unter Ubuntu 10.04</title>
		<link>http://www.nerdpress.org/2010/08/05/asus-n82j-u80-ul30-series-touchpad-auschalten-unter-ubuntu-10-04/</link>
		<comments>http://www.nerdpress.org/2010/08/05/asus-n82j-u80-ul30-series-touchpad-auschalten-unter-ubuntu-10-04/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 14:51:03 +0000</pubDate>
		<dc:creator>Johannes Heinen</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nerdpress.org/?p=1077</guid>
		<description><![CDATA[Das für mich als Merkhilfe und eventuell Suchende: Wer sein Touchpad unter Ubuntu via Hotkey abschalten möchte und im Besitz eines neueren Asus-Notebooks ist, wird hier endlich fündig: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/418282 (für mich hat folgender Workaround zuverlässig funktioniert): This problem is also valid for the ASUS UL30A. The touchpad is seen as an &#8220;ImPS/2 Logitech Wheel Mouse&#8221;. [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Das für mich als Merkhilfe und eventuell Suchende: Wer sein Touchpad unter Ubuntu via Hotkey abschalten möchte und im Besitz eines neueren Asus-Notebooks ist, wird hier endlich fündig: <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/418282">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/418282</a> (für mich hat folgender Workaround zuverlässig funktioniert):</p>
<blockquote><p>
This problem is also valid for the ASUS UL30A. The touchpad is seen as an &#8220;ImPS/2 Logitech Wheel Mouse&#8221;. See in dmesg and by the command &#8220;xinput list&#8221;. I am using Ubuntu 9.10.</p>
<p>To disable the touchpad the following command can be used:</p>
<p>   xinput set-int-prop &#8220;ImPS/2 Logitech Wheel Mouse&#8221; &#8220;Device Enabled&#8221; 8 0</p>
<p>To enable use:</p>
<p>   xinput set-int-prop &#8220;ImPS/2 Logitech Wheel Mouse&#8221; &#8220;Device Enabled&#8221; 8 1</p>
<p>To make the <Fn>F9 working I did the following:</p>
<p>1. As the <Fn>F9 does not generate a keycode but an acpi event you cannot assign just a keycode to a script. So I first checked the generated event hotkey code using:<br />
   sudo acpi_listen<br />
and pressed <Fn>F9. This gives 0000006b as event hotkey code.<br />
2. In /etc/acpi/events there is an asus-touchpad event file. This is using the wrong code so I changed it.<br />
3. The script /etc/acpi/assus-touchpad.sh is not correct for this touchpad so I changed it (see attached script)<br />
4. Now send the acpid a SIGHUP signal (or reboot) and the <Fn>F9 button toggles your touchpad an or off.</p></blockquote>
<p>Danach kann man via FN + F9 wieder wie gewohnt das Touchpad an- und abschalten.</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.nerdpress.org/2010/08/05/asus-n82j-u80-ul30-series-touchpad-auschalten-unter-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweak Ubuntu</title>
		<link>http://www.nerdpress.org/2010/06/16/teak-ubuntu/</link>
		<comments>http://www.nerdpress.org/2010/06/16/teak-ubuntu/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 07:14:18 +0000</pubDate>
		<dc:creator>Johannes Heinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Einstellungen]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Tweak]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Ubuntu Tweak]]></category>
		<category><![CDATA[Werkzeug]]></category>

		<guid isPermaLink="false">http://nerdpress.org/?p=1061</guid>
		<description><![CDATA[Mit Ubuntu Tweak (http://ubuntu-tweak.com/): Ubuntu Tweak ist eine Anwendung, die die Konfiguration von Ubuntu für jeden einfacher machen soll. Ubuntu Teak ist das Ubuntu-Äquivalent für die guten, alten PowerToys/PowerTools, die bereits ab und für Windows-XP (*spit*) existieren und es dem Administrator ermöglichen, weitergehende Einstellungen des Betriebssystems, die normalerweise in Konfigurationsdateien oder teils weit verstreuten Mini-Programmen [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Mit Ubuntu Tweak (<a href="http://ubuntu-tweak.com/">http://ubuntu-tweak.com/</a>): </p>
<blockquote><p>Ubuntu Tweak ist eine Anwendung, die die Konfiguration von Ubuntu für jeden einfacher machen soll.</p></blockquote>
<p><span id="more-1061"></span><br />
Ubuntu Teak ist das Ubuntu-Äquivalent für die guten, alten PowerToys/PowerTools, die bereits ab und für Windows-XP (*spit*) existieren und es dem Administrator ermöglichen, weitergehende Einstellungen des Betriebssystems, die normalerweise in Konfigurationsdateien oder teils weit verstreuten Mini-Programmen vorgenommen werden, zentral und bequem zu tätigen. </p>
<p>Warum es so etwas auch für Ubuntu geben muss? Ist doch klar, ein Betriebssystem, das <a href="http://de.wikipedia.org/wiki/D%C3%BCmmster_anzunehmender_User">DAU</a>s adressiert, braucht auch DAU-Werkzeuge mit ordentlicher Bedienoberfläche. </p>
<p>Ich konnte mit dem Tool bspw. unglaublich einfach meine Benutzer-Ordner verschieben bzw. zurücksetzen, nachdem mein Desktop-Ordner nach irgend einem nicht mehr rekonstruierbaren, missglückten Bash-Kommando meinerseits auf /home/~user anstatt auf /home/~user/Desktop zeigte. </p>
<p>Da lacht natürlich der Linux-Guru drüber und editiert schnell mal ~/.config/user-dirs.dirs mit seinem Wie-Ei.</p>
<p>Nachtrag:<br />
Mit Ubuntu Tweak ist es auch bequem möglich, die Fensterleisten-Knöpfe in der neuesten Ubuntu-Version wieder nach rechts zu verschieben.</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.nerdpress.org/2010/06/16/teak-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Etherpad auf Ubuntu installieren</title>
		<link>http://www.nerdpress.org/2010/01/15/etherpad-auf-ubuntu-installieren/</link>
		<comments>http://www.nerdpress.org/2010/01/15/etherpad-auf-ubuntu-installieren/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 23:58:00 +0000</pubDate>
		<dc:creator>Max Girkens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[etherpad]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nerdpress.org/?p=679</guid>
		<description><![CDATA[Etherpad ist ja jetzt coolerweise open-source. Wie man das Ding auf Ubuntu ans laufen bekommt steht nicht hier, sondern vielmehr hier! (drauf achten aus welchem Verzeichnis heraus man die skripte nachher aufruft&#8230;) nice one, lincoln loop! Wenn man nämlich den Ubuntu Wiki Anweisungen hinterherläuft, verrennt man sich evtl. mit der veralteten Scala Version, die man [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p><a href="http://etherpad.com/">Etherpad</a> ist ja jetzt <a href="http://etherpad.com/ep/blog/posts/etherpad-open-source-release">coolerweise open-source</a>.</p>
<p>Wie man das Ding auf Ubuntu ans laufen bekommt steht<br />
<del datetime="2010-01-14T23:50:11+00:00">nicht <a href="https://wiki.edubuntu.org/Etherpad">hier</a>, sondern vielmehr</del> <a href="http://lincolnloop.com/blog/2009/dec/18/running-your-own-self-hosted-etherpad-instance/#comment-12418">hier</a>!</p>
<p><span id="more-679"></span></p>
<p>(drauf achten aus welchem Verzeichnis heraus man die skripte nachher aufruft&#8230;)</p>
<p>nice one, <a href="http://lincolnloop.com">lincoln loop</a>!</p>
<p>Wenn man nämlich den Ubuntu Wiki Anweisungen hinterherläuft, verrennt man sich evtl. mit der veralteten Scala Version, die man via apt-get kriegt und noch ein paar anderen fiesen Dingern.</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.nerdpress.org/2010/01/15/etherpad-auf-ubuntu-installieren/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgrade Eclipse Ganymede to Galileo on Ubuntu</title>
		<link>http://www.nerdpress.org/2009/09/06/upgrade-eclipse-ganymede-to-galileo-on-ubuntu/</link>
		<comments>http://www.nerdpress.org/2009/09/06/upgrade-eclipse-ganymede-to-galileo-on-ubuntu/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 08:08:54 +0000</pubDate>
		<dc:creator>Ivo Bathke</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nerdpress.maxgirkens.de/?p=71</guid>
		<description><![CDATA[erstmal den galileo holen: also das pdt-eclipse, ich mach ja in php ;) dann da liegt dann schon der eclipse ordner von ganymede das archiv holen entpacken und zack kopiert der sich einfach über ganymede und fertig ist der galileo da ich ja alle verknüpfungen schon hatte kann ich die alle weiterbenutzen und muss da [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>erstmal den galileo holen:</p>
<pre class="brush: bash; title: ; notranslate">

http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/galileo/R/eclipse-php-galileo-linux-gtk.tar.gz
</pre>
<p>also das pdt-eclipse, ich mach ja in php ;)</p>
<p>dann</p>
<pre class="brush: bash; title: ; notranslate">cd /opt</pre>
<p>da liegt dann schon der eclipse ordner von ganymede</p>
<p>das archiv holen</p>
<pre class="brush: bash; title: ; notranslate">sudo mv ~/Desktop/eclipse-SDK-3.5-linux-gtk-x86_64.tar.gz
</pre>
<p>entpacken</p>
<pre class="brush: bash; title: ; notranslate">sudo tar xfvz eclipse-SDK-3.5-linux-gtk-x86_64.tar.gz
</pre>
<p>und zack kopiert der sich einfach über ganymede und fertig ist der galileo<br />
da ich ja alle verknüpfungen schon hatte kann ich die alle weiterbenutzen und muss da nix machen</p>
<p><span id="more-71"></span></p>
<p>noch aufräumen</p>
<pre class="brush: bash; title: ; notranslate">rm eclipse-SDK-3.5-linux-gtk-x86_64.tar.gz
</pre>
<p>also eclipse wie gewohnt starten<br />
workspace auswählen (in meinem fall: /srv/www)<br />
und alle projekte sind wieder da</p>
<p>da ich noch subclipse benutze,<br />
den noch nachinstallieren über eclipse<br />
-&gt;help-&gt;install new software-&gt; add new remote site<br />
etc ihr kennt das! wenn nicht read this:<br />
<a href="http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA" target="_blank">http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA</a></p>
<p>ist subclipse installiert findet eclipse auch wieder die repos.<br />
und weiter gehts&#8230;</p>
<p>easy!<br />
approx. time: 15 min</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.nerdpress.org/2009/09/06/upgrade-eclipse-ganymede-to-galileo-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

