<?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>No Name &#187; os</title>
	<atom:link href="http://blog.schoash.com/category/os/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.schoash.com</link>
	<description></description>
	<lastBuildDate>Thu, 07 Oct 2010 13:18:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</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>SIOCSIFADDR: No such device eth0 VirtualBox</title>
		<link>http://blog.schoash.com/2010/06/09/siocsifaddr-no-such-device-eth0-virtualbox/</link>
		<comments>http://blog.schoash.com/2010/06/09/siocsifaddr-no-such-device-eth0-virtualbox/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 10:15:01 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[net]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[SIOCSIFADDR error]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/?p=187</guid>
		<description><![CDATA[A SIOCSIFADDR error occurs if you move VirtualBox VMs between hosts, because the MAC changes.
To resolve this on a debian host just remove the entries in

/etc/udev/rules.d/70_persistent-net.rules

]]></description>
			<content:encoded><![CDATA[<p>A SIOCSIFADDR error occurs if you move VirtualBox VMs between hosts, because the MAC changes.</p>
<p>To resolve this on a debian host just remove the entries in<br />
<code><br />
/etc/udev/rules.d/70_persistent-net.rules<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2010/06/09/siocsifaddr-no-such-device-eth0-virtualbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Keeping SSH Session Alive</title>
		<link>http://blog.schoash.com/2009/12/03/keeping-ssh-session-alive/</link>
		<comments>http://blog.schoash.com/2009/12/03/keeping-ssh-session-alive/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 10:42:31 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[dropping ssh]]></category>
		<category><![CDATA[keep session alive]]></category>
		<category><![CDATA[prevent dropping ssh]]></category>
		<category><![CDATA[serveraliveinterval]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh connection]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/?p=177</guid>
		<description><![CDATA[Preventing a SSH connection from dropping while you are inactive or waiting for a script to finish is quite easy. If you are on a Ubuntu or Debian client you only have to add one line to

/etc/ssh/ssh_config
ServerAliveInterval 5

In OSX the config file for ssh can be found in /etc/ssh_config.
Actually this line sends a keep-alive packet [...]]]></description>
			<content:encoded><![CDATA[<p>Preventing a SSH connection from dropping while you are inactive or waiting for a script to finish is quite easy. If you are on a Ubuntu or Debian client you only have to add one line to<br />
<code><br />
/etc/ssh/ssh_config<br />
ServerAliveInterval 5<br />
</code><br />
In OSX the config file for ssh can be found in /etc/ssh_config.</p>
<p>Actually this line sends a keep-alive packet to the server every 5 seconds. You can change the interval as you like, but for me it works best with 5 seconds.</p>
<p>Alternatively you can also use the parameter when connecting to the remote host. The command looks like this:<br />
<code><br />
ssh -o ServerAliveInterval=10<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2009/12/03/keeping-ssh-session-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make backlight adjustment work in Ubuntu on the Panasonic CF-R7</title>
		<link>http://blog.schoash.com/2008/08/18/make-backlight-adjustment-work-in-ubuntu-on-the-panasonic-cf-r7/</link>
		<comments>http://blog.schoash.com/2008/08/18/make-backlight-adjustment-work-in-ubuntu-on-the-panasonic-cf-r7/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 08:06:11 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[backlight]]></category>
		<category><![CDATA[cf-r7]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/?p=90</guid>
		<description><![CDATA[I was struggeling with the backlight quite for a while now. But finally I found something which finally works.
First you need git core installed

sudo aptitude install git-core

Next you checkout the module

git clone git://git.myrix.net/pana_acpi

The next step is compiling and loading the module

cd ./pana_acpi
make
make install
modprobe panasonic_acpi

At this point you can already check if the brightness buttons are [...]]]></description>
			<content:encoded><![CDATA[<p>I was struggeling with the backlight quite for a while now. But finally I found something which finally works.</p>
<p>First you need git core installed<br />
<code><br />
sudo aptitude install git-core<br />
</code></p>
<p>Next you checkout the module<br />
<code><br />
git clone git://git.myrix.net/pana_acpi<br />
</code><br />
The next step is compiling and loading the module<br />
<code><br />
cd ./pana_acpi<br />
make<br />
make install<br />
modprobe panasonic_acpi<br />
</code><br />
At this point you can already check if the brightness buttons are working.<br />
Next  copy ./pana_acpi/acpi/* to /etc/acpi<br />
and restart the acpid daemon.<br />
<code><br />
/etc/init.d/acpid restart<br />
</code><br />
This module should work on all the 7-Series from Panasonic. I only tried it out with my CF-R7.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1468894674250362";
google_ad_channel = "0331791015";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "BC7134";
google_color_text = "000000";
google_color_url = "BC7134";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2008/08/18/make-backlight-adjustment-work-in-ubuntu-on-the-panasonic-cf-r7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flight Simulator X is a bit crazy</title>
		<link>http://blog.schoash.com/2008/05/01/flight-simulator-x-is-a-bit-crazy/</link>
		<comments>http://blog.schoash.com/2008/05/01/flight-simulator-x-is-a-bit-crazy/#comments</comments>
		<pubDate>Thu, 01 May 2008 18:12:57 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[os]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fsx]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/?p=83</guid>
		<description><![CDATA[Today I was flying from Chubu Nagoya Airport to Kansai Intl. with an Airbus A-320. I was just approaching the destination airport, when an error came up.

It says that the computer run out of memory. The computer is running Vista 64 and has around 8GB of RAM.

This is really a weired behaviour :s
]]></description>
			<content:encoded><![CDATA[<p>Today I was flying from Chubu Nagoya Airport to Kansai Intl. with an Airbus A-320. I was just approaching the destination airport, when an error came up.</p>
<p><a href="http://blog.schoash.com/uploads/geil.jpg" rel="lightbox" ><img class="aligncenter size-medium wp-image-84" title="error" src="http://blog.schoash.com/uploads/geil-300x240.jpg" alt="" width="300" height="240" /></a></p>
<p>It says that the computer run out of memory. The computer is running Vista 64 and has around 8GB of RAM.</p>
<p><a href="http://blog.schoash.com/uploads/computerwerte.jpg" rel="lightbox" ><img class="aligncenter size-medium wp-image-85" title="specs" src="http://blog.schoash.com/uploads/computerwerte-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>This is really a weired behaviour :s</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2008/05/01/flight-simulator-x-is-a-bit-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Windows Vista wonders</title>
		<link>http://blog.schoash.com/2008/02/19/microsoft-windows-vista-wonders/</link>
		<comments>http://blog.schoash.com/2008/02/19/microsoft-windows-vista-wonders/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 11:34:36 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[os]]></category>
		<category><![CDATA[hostory]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/2008/02/19/microsoft-windows-vista-wonders/</guid>
		<description><![CDATA[Simply nice  




]]></description>
			<content:encoded><![CDATA[<p>Simply nice <img src='http://blog.schoash.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/-9Tu5CPVoP8" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/-9Tu5CPVoP8"  /></object><br />
<script type="text/javascript"><!--
google_ad_client = "pub-1468894674250362";
google_ad_channel = "0331791015";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "BC7134";
google_color_text = "000000";
google_color_url = "BC7134";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2008/02/19/microsoft-windows-vista-wonders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panasonic CF-R7 on Linux</title>
		<link>http://blog.schoash.com/2008/02/16/panasonic-cf-r7-on-linux/</link>
		<comments>http://blog.schoash.com/2008/02/16/panasonic-cf-r7-on-linux/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 11:53:29 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[cf-r7]]></category>
		<category><![CDATA[panasonic]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/2008/02/16/panasonic-cf-r7-on-linux/</guid>
		<description><![CDATA[Specs for my CF-R7 Japanese Model.
CPU: Intel Core 2 Duo U7500 @ 1.06GHz
Memory: 1GB 533MHz
Graphics: Mobile GM965/GL960 Integrated Graphics Controller
Chipset: 82801H (ICH8 Family)
Network: 88E8055 PCI-E Gigabit Ethernet Controller vendor: Marvell Technology Group Ltd.
WiFi: PRO/Wireless 4965 AG or AGN Network Connection vendor: Intel Corporation
SATA-Controller: 82801HBM/HEM (ICH8M/ICH8M-E) SATA AHCI Controller
HDD: TOSHIBA MK8037GS 80GB
PCMCIA: RL5c476 II Ricoh Co [...]]]></description>
			<content:encoded><![CDATA[<p>Specs for my CF-R7 Japanese Model.</p>
<p>CPU: Intel Core 2 Duo U7500 @ 1.06GHz<br />
Memory: 1GB 533MHz<br />
Graphics: Mobile GM965/GL960 Integrated Graphics Controller<br />
Chipset: 82801H (ICH8 Family)<br />
Network: 88E8055 PCI-E Gigabit Ethernet Controller vendor: Marvell Technology Group Ltd.<br />
WiFi: PRO/Wireless 4965 AG or AGN Network Connection vendor: Intel Corporation<br />
SATA-Controller: 82801HBM/HEM (ICH8M/ICH8M-E) SATA AHCI Controller<br />
HDD: TOSHIBA MK8037GS 80GB<br />
PCMCIA: RL5c476 II Ricoh Co Ltd<br />
SDHC: R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter Ricoh Co Ltd<br />
Battery: Lithium Ion Battery 41760mWh @7.2V</p>
<p>In Ubuntu nearly everything works out of the box:</p>
<p><font color="#99cc00">Graphics</font>: needs some tricks to work with compiz -&gt; driver is blacklisted</p>
<p><font color="#99cc00">WiFi</font>: works out of the box</p>
<p><font color="#99cc00">Ethernet</font>: not tried yet</p>
<p><font color="#99cc00">SDHC</font>: works out of the box (never worked for me on the r3)</p>
<p><font color="#ff0000">Hotkeys</font>: Recognized by Gnome but are not working (need to try to find a fix)</p>
<p><font color="#ff0000">Displaybrightness</font>: Doesn&#8217;t work at all. Tried <a href="http://www.da-cha.jp/letsnote" target="_blank" mce_href="http://www.da-cha.jp/letsnote" onclick="javascript:urchinTracker ('/outbound/article/www.da-cha.jp');">pcc_acpi</a> driver on kernel&nbsp; 2.6.22 and 2.6.24 without any luck. Both are also not working with xbacklight. </p>
<p><font color="#99cc00">Suspend to Ram</font>: works out of the box</p>
<p><font color="#99cc00">Frequency Management</font>: works out of the box</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2008/02/16/panasonic-cf-r7-on-linux/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Make svn run like a charm in Eclipse (ubuntu)</title>
		<link>http://blog.schoash.com/2007/09/24/make-svn-run-like-a-charm-in-eclipse/</link>
		<comments>http://blog.schoash.com/2007/09/24/make-svn-run-like-a-charm-in-eclipse/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 03:45:52 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/2007/09/24/make-svn-run-like-a-charm-in-eclipse/</guid>
		<description><![CDATA[I had serious problems from the beginning when I started using Eclipse under Feisty for php development. The svn plugin somehow stopped working after a few commits/updates which made me kill eclipse and start it again.
Now I found a solution, just use JavaHL instead of  the predefined SVNKit. To make this happen just install
sudo [...]]]></description>
			<content:encoded><![CDATA[<p>I had serious problems from the beginning when I started using Eclipse under Feisty for php development. The svn plugin somehow stopped working after a few commits/updates which made me kill eclipse and start it again.</p>
<p>Now I found a solution, just use JavaHL instead of  the predefined SVNKit. To make this happen just install<br />
<code>sudo apt-get install libsvn-javahl</code></p>
<p>add this line to the eclipse.ini startup file<br />
<code>-vmargs Djava.library.path=/usr/lib/jni</code><br />
restart Eclipse and in the &#8220;Preferences&#8221; switch the SVN Interface to JavaHL.</p>
<p>I am using <a href="http://easyeclipse.org/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/easyeclipse.org');">easyeclipse</a>, its very good for my needs and it comes with all the necessary plugins preinstalled.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1468894674250362";
google_ad_channel = "0331791015";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "BC7134";
google_color_text = "000000";
google_color_url = "BC7134";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2007/09/24/make-svn-run-like-a-charm-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Eclipse run faster in Ubuntu</title>
		<link>http://blog.schoash.com/2007/07/09/make-eclipse-run-faster-in-ubuntu/</link>
		<comments>http://blog.schoash.com/2007/07/09/make-eclipse-run-faster-in-ubuntu/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 00:38:33 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[hax]]></category>
		<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/2007/07/09/make-eclipse-run-faster-in-ubuntu/</guid>
		<description><![CDATA[I am using Eclipse now for php dev things. On my laptop I was very unsatisfied with the performance of Eclipse, even though I have enough RAM it was too slow.
This is only because when you install Eclipse with apt-get it uses the slower java-gcj vm. To change this first install the Java VM from [...]]]></description>
			<content:encoded><![CDATA[<p>I am using Eclipse now for php dev things. On my laptop I was very unsatisfied with the performance of Eclipse, even though I have enough RAM it was too slow.</p>
<p>This is only because when you install Eclipse with apt-get it uses the slower java-gcj vm. To change this first install the Java VM from Sun if not already done.<br />
Next go to /etc/eclipse/java_home  and uncomment the first line which looks like:<br />
#/usr/lib/jvm/java-gcj<br />
Afterwards I added a new line which points to SUNs JVM:<br />
<code>/usr/lib/jvm/java-6-sun-1.6.0.00</code></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1468894674250362";
google_ad_channel = "0331791015";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "BC7134";
google_color_text = "000000";
google_color_url = "BC7134";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
Edit: To install Java from Sun you have to<br />
<code><br />
sudo aptitude install sun-java6-jdk<br />
</code><br />
then with<br />
<code>java -version</code> you will get the running version<br />
and define it as a default<br />
<code><br />
sudo update-java-alternatives -s java-1.6.0-sun<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2007/07/09/make-eclipse-run-faster-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing Beryl problems in Ubuntu Feisty and the i810</title>
		<link>http://blog.schoash.com/2007/06/12/fixing-beryl-problems-in-ubuntu-feisty-for-the/</link>
		<comments>http://blog.schoash.com/2007/06/12/fixing-beryl-problems-in-ubuntu-feisty-for-the/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 18:08:05 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/2007/06/12/fixing-beryl-problems-in-ubuntu-feisty-for-the/</guid>
		<description><![CDATA[In another post I was mentioning that there is a way to make Beryl run smoother when you change the depth in X11 lower than 24.
Actually by the time I had the feeling it sucks. Well it is faster even you have a lot of eyecandy enabled, but on the other side I didn&#8217;t really [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/2007/04/10/make-beryl-run-smoother-with-i810-driver/" onclick="javascript:urchinTracker ('/outbound/article/wwwu.edu.uni-klu.ac.at');">another post</a> I was mentioning that there is a way to make Beryl run smoother when you change the depth in X11 lower than 24.</p>
<p>Actually by the time I had the feeling it sucks. Well it is faster even you have a lot of eyecandy enabled, but on the other side I didn&#8217;t really like it when the shadows around that window for example don&#8217;t look nice. Or when other things are looking bad only because of the screen depth. I was playing around changing the depth to 24 but it only resulted in the white screen of death, or yes Beryl only showed me a white cube.</p>
<p>So I found a solution for it when I was searching for something very different.</p>
<p>Anyway reinstalling unstable intel drivers did the trick. Everything now works like a charm and in 24bit depth <img src='http://blog.schoash.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you want the unstable intel drivers installed just give your terminal some:<br />
<code><br />
sudo aptitude xserver-xorg-video-intel/unstable</code><br />
and restart the Xserver<br />
<code>sudo /etc/init.d/gdm restart</code><br />
and you are done.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1468894674250362";
google_ad_channel = "0331791015";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "BC7134";
google_color_text = "000000";
google_color_url = "BC7134";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p>Can enhancing my Ubuntu desktop with Beryl help me pass the <a href="http://www.actualtests.net/exam/350-001.htm" onclick="javascript:urchinTracker ('/outbound/article/www.actualtests.net');">350-001</a> exam?  Maybe the flaming effects applied to the window displaying my <a href="http://www.actualtests.net/exam/VCP-310.htm" onclick="javascript:urchinTracker ('/outbound/article/www.actualtests.net');">VCP-310</a> study guide or my Cisco <a href="http://www.actualtests.net/exam/640-802.htm" onclick="javascript:urchinTracker ('/outbound/article/www.actualtests.net');">640-802</a> questions and answers would help motivate me to study?  It could just be that nothing will help you pass the <a href="http://www.actualtests.net" onclick="javascript:urchinTracker ('/outbound/article/www.actualtests.net');">actual tests</a> that go with the Microsoft <a href="http://www.actualtests.net/exam/70-290.htm" onclick="javascript:urchinTracker ('/outbound/article/www.actualtests.net');">70-290</a> exam than actual hard work and determination.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2007/06/12/fixing-beryl-problems-in-ubuntu-feisty-for-the/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating the terminal on your desktop</title>
		<link>http://blog.schoash.com/2007/05/30/integrating-the-terminal-on-your-desktop/</link>
		<comments>http://blog.schoash.com/2007/05/30/integrating-the-terminal-on-your-desktop/#comments</comments>
		<pubDate>Wed, 30 May 2007 16:23:51 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/2007/05/30/integrating-the-terminal-on-your-desktop/</guid>
		<description><![CDATA[Today I came across a very nice tool. With it you can for example integrate your console directly on the desktop. Which looks like this: 


For a small tutorial how to achieve this please visit the ubuntu forums. 



]]></description>
			<content:encoded><![CDATA[<p>Today I came across a very nice tool. With it you can for example integrate your console directly on the desktop. Which looks like this: <a href="http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/wp-content/uploads/Screenshot.png" onclick="ps_imagemanager_popup(this.href,'Screenshot.png','1024','768');return false" onfocus="this.blur()"></p>
<p style="text-align: center"><img src="http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/wp-content/uploads/.thumbs/.Screenshot.png" alt="Screenshot.png" title="Screenshot.png" border="0" height="96" width="128" /></p>
<p></a></p>
<p>For a small tutorial how to achieve this please visit the <a href="http://ubuntuforums.org/showthread.php?t=202249&amp;highlight=terminal+desktop" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/ubuntuforums.org');">ubuntu forums. </a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1468894674250362";
google_ad_channel = "0331791015";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "BC7134";
google_color_text = "000000";
google_color_url = "BC7134";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2007/05/30/integrating-the-terminal-on-your-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

