<?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>EntwicklerForum.org &#187; OS &#8211; Betriebssysteme</title>
	<atom:link href="http://www.entwicklerforum.org/category/os/feed" rel="self" type="application/rss+xml" />
	<link>http://www.entwicklerforum.org</link>
	<description>Tipps und Tricks für Entwickler</description>
	<lastBuildDate>Thu, 15 Jul 2010 13:15:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SSH Convenience</title>
		<link>http://www.entwicklerforum.org/ssh-convenience</link>
		<comments>http://www.entwicklerforum.org/ssh-convenience#comments</comments>
		<pubDate>Fri, 14 May 2010 13:32:32 +0000</pubDate>
		<dc:creator>m.rastetter</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>
		<category><![CDATA[BSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/?p=761</guid>
		<description><![CDATA[It is common practice to use ssh (= secure shell) for remote administration. Foremost because it is a very secure way doing it, and supported on a vast variety of operating systems:

BSD (Free-/Net-/OpenBSD) &#8211; comes along with OpenSSH already
Linux (Debian, Fedora, RedHat, SuSE, Ubuntu, etc.) &#8211; mostly comprises an   optional OpenSSH software package
Mac [...]]]></description>
			<content:encoded><![CDATA[<p>It is common practice to use <a title="SSH Wikipedia" href="http://en.wikipedia.org/wiki/Secure_Shell">ssh (= secure shell)</a> for remote administration. Foremost because it is a very secure way doing it, and supported on a vast variety of operating systems:</p>
<ul>
<li>BSD (Free-/Net-/OpenBSD) &#8211; comes along with <a title="OpenSSH" href="http://www.openssh.com/">OpenSSH</a> already</li>
<li>Linux (Debian, Fedora, RedHat, SuSE, Ubuntu, etc.) &#8211; mostly comprises an   optional <a title="OpenSSH" href="http://www.openssh.com/">OpenSSH</a> software package</li>
<li>Mac OS X &#8211; comes along with <a title="OpenSSH" href="http://www.openssh.com/">OpenSSH</a> already</li>
<li>Unix (AIX, HP/UX, Solaris, etc.) &#8211; comprise all some SSH software   package</li>
<li>Windows &#8211; regularly lacks of useful tools, but <a title="putty" href="http://www.putty.org/">putty</a> fills that gap completely</li>
</ul>
<p>Here in this article we&#8217;d like to illuminate the functionality of the ssh-agent in a little more detail. And put some emphasis on the differences between several wide spread operating systems.</p>
<p>Consequently we ought to become acquainted with following tools, their purpose and their usage.</p>
<ul>
<li>ssh-keygen (putty equivalent = puttygen.exe)</li>
<li>ssh-agent (putty equivalent = pageant.exe)</li>
<li>ssh-add (putty equivalent = pageant.exe)</li>
<li>ssh, scp, sftp (putty equivalents = putty.exe, pscp.exe, psftp.exe)</li>
</ul>
<p><br class="spacer_" /></p>
<h5>Prior to anything else install SSH if not yet done.</h5>
<p><strong>Debian</strong> (respectively for Linux)</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">$ aptitude install ssh
...</pre></div></div>

<p><strong>Windows</strong></p>
<p>Extract the putty.zip archive to e.g. <em>c:\bin</em></p>
<p><img class="size-full wp-image-768" title="putty_c_bin" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/putty_c_bin.png" alt="Putty Tools" width="210" height="296" /></p>
<p>Include this directory to the PATH environment variable.</p>
<p><img class="alignnone size-full wp-image-764" title="env_path" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/env_path.png" alt="env_path" width="517" height="463" /></p>
<h5>Now let&#8217;s prepare the ssh-agent</h5>
<p>Before one can use the agent a key pair (public and private key) is required which will be used by the agent to authenticate at the server.</p>
<p><strong>All kinds of Unix</strong></p>
<p>Let&#8217;s start with the easy setup, w/o any further options, otherwise consult the man page.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">[martin@sequoia:~]? ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/martin/.ssh/id_rsa): .ssh/id_rsa_2
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in .ssh/id_rsa_2.
Your public key has been saved in .ssh/id_rsa_2.pub.
The key fingerprint is:
2c:20:51:9b:67:9c:78:eb:c1:4c:43:fc:88:2d:97:3b martin@sequoia.local
&nbsp;
[martin@sequoia:~]? ls -l .ssh
-rw-------   1 martin  staff    408 Sep 26  2009 authorized_keys2
-r--------   1 martin  staff   1743 Sep 26  2009 id_rsa
-r--r--r--   1 martin  staff    408 Sep 26  2009 id_rsa.pub
-rw-------   1 martin  staff   1743 May 14 12:01 id_rsa_2
-rw-r--r--   1 martin  staff    402 May 14 12:01 id_rsa_2.pub
-rw-r--r--   1 martin  staff  15036 May 14 11:03 known_hosts
&nbsp;
[martin@sequoia:~]? fold -76 .ssh/id_rsa_2.pub
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA5Y/LD6qQaCsKX6zcy/fN6Ndk/0x/o3lFq9oF4Gfq
V+r/Ny3NBJGoprI3MnlmhrWvyijHOOa8yF/83q+CGP9p/5JfRU08hB5ncCvbNRfkxxDpioRMz9Xu
NZ4TSoTu1duuTROIwQfZ6IZCbQwNWRgNLiOsGXeEcbpUDLWVSF/UfItBdM7a/hoJp/JKB9RYSxav
iGQMQqkyajfPPr9RM15kWJQy//enQE+cXo2NaXQ1GWmAs5mdOYgSioztvBZBXOluMd35DQ6jX8XV
4TVRFIa9z8J2jQVZsuLzl/CnmPY/hBPbu6QIMqrReICQJ0K/Mo8j+tz0YwCZgl8w5LnPpx47hw==
 martin@sequoia.local</pre></div></div>

<p>Perhaps you&#8217;ve recognised that I already had a key used before, which I&#8217;d like to keep. You&#8217;re able to use multiple identities!</p>
<p><strong>Windows</strong></p>
<p>Create a key pair (public and private key)</p>
<p>Therefore start <em>puttygen.exe</em> from the command line (after you&#8217;ve added the putty installation directory to the PATH variable) or double-click on the <em>puttygen.exe</em> icon</p>
<p><img class="size-full wp-image-769" title="puttygen" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/puttygen.png" alt="Generate Key Pair" width="478" height="458" /></p>
<p>In the second step while creating a new key with <em>puttygen.exe</em> you&#8217;re securing the key with a passphrase you will remember always!</p>
<p><img class="size-full wp-image-765" title="keypassphrase" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/keypassphrase.png" alt="Select a Passphrase" width="480" height="461" /></p>
<p>Don&#8217;t forget to save the key pair (public and private) in seperate files to the disk.</p>
<h5>Prapare for using the agent</h5>
<p><strong>All kinds of Unix</strong></p>
<p>Append the public key into the file with the name <em>authorized_keys2</em> which resides in the <em>.ssh</em> directory of your users home directory. Create it if it&#8217;s not existing and restrict the writing access for others. <br />
 It doesn&#8217;t make any difference whether you created your key pair on Windows by using <em>puttygen.exe</em> or on a Unix system by using <em>ssh-keygen</em>. Only make sure that the public key is added to the <em>authorized_keys2</em> in a similar format as shown here.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">[martin@sequoia:~]? ls -l .ssh
-rw-------  1 martin  staff    408 Sep 26  2009 authorized_keys2
-r--------  1 martin  staff   1743 Sep 26  2009 id_rsa
-r--r--r--  1 martin  staff    408 Sep 26  2009 id_rsa.pub
-rw-------  1 martin  staff   1743 May 14 12:01 id_rsa_2
-rw-r--r--  1 martin  staff    402 May 14 12:01 id_rsa_2.pub
-rw-r--r--  1 martin  staff  15036 May 14 11:03 known_hosts
[martin@sequoia:~]? cat .ssh/id_rsa_2.pub &amp;gt;&amp;gt; .ssh/authorized_keys2
[martin@sequoia:~]? fold -76 .ssh/authorized_keys2
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA4scI/a9W2J8QhR2s1ySMoPuQHw266r1mRpKPQ5vM
qK4OrZjmPDi73yvy5jsjKoO5U9sYUOpjmGbJfAlYOmU2T7sNbHocPbLtuSsxhyuzQS5SPY+oyE7k
09H/ZdX5rKj/jqmKg+lVKCeY64tBXNHjXjEhCf1AKosCmAdRdjXr38fQ1OwpxkhGKL8EOqNEGtxG
0y8LUuz5XzZdaoiW2uk3UY9NzOWiEqyPO5YwvcJ7WRrD4pNxVC0Ar+NpbBZpDT0RcnIF4XE3qEh/
57dj3VfLODi4y1/ErwpLPRtpnbvyrR9N9b2y7IGf8IMO/CjCSzosibtNgsztC/U2HGRIUBXAEQ==
 Rastis key for private use
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA5Y/LD6qQaCsKX6zcy/fN6Ndk/0x/o3lFq9oF4Gfq
V+r/Ny3NBJGoprI3MnlmhrWvyijHOOa8yF/83q+CGP9p/5JfRU08hB5ncCvbNRfkxxDpioRMz9Xu
NZ4TSoTu1duuTROIwQfZ6IZCbQwNWRgNLiOsGXeEcbpUDLWVSF/UfItBdM7a/hoJp/JKB9RYSxav
iGQMQqkyajfPPr9RM15kWJQy//enQE+cXo2NaXQ1GWmAs5mdOYgSioztvBZBXOluMd35DQ6jX8XV
4TVRFIa9z8J2jQVZsuLzl/CnmPY/hBPbu6QIMqrReICQJ0K/Mo8j+tz0YwCZgl8w5LnPpx47hw==
 martin@sequoia.local</pre></div></div>

<p>Make also sure that a ssh daemon process (sshd) is running. You must be root to start this process.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;"># /etc/init.d/sshd start</pre></div></div>

<p>Or starting the ssh daemon on Mac OS X, you open the sharing preferences and activate <em>remote login</em>. You need administrative rights to do this.</p>
<p><img class="alignnone size-full wp-image-826" title="mac-sharing" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/mac-sharing.png" alt="mac-sharing" width="519" height="417" /></p>
<p><br class="spacer_" /></p>
<p><strong>Windows</strong></p>
<p>The public key generated by putty looks similar but not exactly identical.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">C:\Dokumente und Einstellungen\rasti\Eigene Dateien\ssh-keys&amp;gt;dir
 Volume in Laufwerk C: hat keine Bezeichnung.
 Volumeseriennummer: 1805-C667
 Verzeichnis von C:\Dokumente und Einstellungen\rasti\Eigene Dateien\ssh-keys
09.04.2010  10:40              .
09.04.2010  10:40              ..
09.04.2010  10:40               869 ssh-private.ppk
09.04.2010  10:39               294 ssh-public.asc
               2 Datei(en)          1.163 Bytes
               2 Verzeichnis(se), 145.506.770.944 Bytes frei
&nbsp;
C:\Dokumente und Einstellungen\rasti\Eigene Dateien\ssh-keys&amp;gt;type ssh-public.asc
---- BEGIN SSH2 PUBLIC KEY ----
Comment: &quot;rsa-key-20100409&quot;
AAAAB3NzaC1yc2EAAAABJQAAAIBpktt0TYXr5jiQu4B/6tHUvoYkeirjq/zGpwUm
B/lPKBE+qZJd1McCXyoOqQxa37LdkTVujxAMj7OQ0VhdGQw2sU0G5oJLzxGwOIUA
3oljIgq1FamB7usFBSjKkKpsfCmz/v9ydVT9xB32ToRYO6e6ywjUlTrmjF5nMvrA
j9o+HQ==
---- END SSH2 PUBLIC KEY ----</pre></div></div>

<p>Thus one has to add the key encryption type before when adding to authorized_keys2 &#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">rasti@otherhost:/home/rasti&amp;gt; fold -76 .ssh/authorized_keys2
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIBpktt0TYXr5jiQu4B/6tHUvoYkeirjq/zGpwUmB/lP
KBE+qZJd1McCXyoOqQxa37LdkTVujxAMj7OQ0VhdGQw2sU0G5oJLzxGwOIUA3oljIgq1FamB7usF
BSjKkKpsfCmz/v9ydVT9xB32ToRYO6e6ywjUlTrmjF5nMvrAj9o+HQ==</pre></div></div>

<p>Thats all.</p>
<h5>Let the agent do the authentication</h5>
<p><strong>All kinds of Unix</strong></p>
<p>Start the agent and source its variables to the local environment</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">[martin@sequoia:~]? ssh-agent &amp;gt;ssh-agent-env
[martin@sequoia:~]? . ssh-agent-env
Agent pid 3780</pre></div></div>

<p>Add your identity (multiple are possible) to the agent.<br />
 Of course you need to add the secret keys and provide the passphrases to them!</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">[martin@sequoia:~]? ssh-add
Enter passphrase for /Users/martin/.ssh/id_rsa:
Identity added: /Users/martin/.ssh/id_rsa (/Users/martin/.ssh/id_rsa)
&nbsp;
[martin@sequoia:~]? ssh-add .ssh/id_rsa_2
Enter passphrase for .ssh/id_rsa_2:
Identity added: .ssh/id_rsa_2 (.ssh/id_rsa_2)</pre></div></div>

<p><strong>Windows</strong></p>
<p>Load the agent by running <em>pageant.exe</em> either by command line or double-clicking its icon. Then a small icon with a hat on a computer symbol will appear in the toolbar.</p>
<p><img class="alignnone size-full wp-image-766" title="pageant" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/pageant.png" alt="pageant" width="232" height="34" /></p>
<p>Make a right-click on this small icon with the mouse and select add key, and navigate to your private key which is about to be added.</p>
<p><img class="alignnone size-full wp-image-770" title="select-private-key" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/select-private-key.png" alt="select-private-key" width="554" height="397" /></p>
<p>And authenticate your private key with your passphrase &#8230;</p>
<p><img class="alignnone size-full wp-image-767" title="passphrase" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/passphrase.png" alt="passphrase" width="209" height="115" /></p>
<h5>Now we can start and enjoy the benefits of this admittetly quite painful preparation</h5>
<p>None of the prepared systems will require any further password authentication!<br />
 This includes login, file copy, command execution etc.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">[martin@sequoia:~]? sftp rasti@testhost.local
Connecting to testhost.local...
sftp&amp;gt; ls Documents
Documents/dump_db.zip        Documents/existingfiles.lst
Documents/newerfiles.lst     Documents/missingfiles.lst
sftp&amp;gt; quit
&nbsp;
[martin@sequoia:~]? scp rasti@testhost.local:~/Documents/modfiles.zip ./Documents/
modfiles.zip                            100% 6462     6.3KB/s   00:00
&nbsp;
[martin@sequoia:Documents]? cat commands.txt
uname
hostname
[martin@sequoia:Documents]? cat commands.txt | ssh -T rasti@testhost.local
Linux
testhost.local</pre></div></div>

<p>The ssh tool comprises a plenty of other options. Which leaves room for many more articles.<br />
 One is to use the ssh-agent for more than one host with the agent-forwarding option &#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">[martin@sequoia:Documents]? ssh -A rasti@testhost.local
Linux testhost.local 2.6.26-2-xen-amd64 #1 SMP Wed May 13 18:43:45 UTC 2009 x86_64
Last login: Fri May 14 14:40:47 2010 from 1.2.3.4
&nbsp;
rasti@test:~$ ssh -A rasti@demohost.local
Linux demohost.local 2.6.26-2-xen-amd64 #1 SMP Wed May 13 18:43:45 UTC 2009 x86_64
Last login: Mon May  3 13:38:58 2010 from 1.2.3.4
&nbsp;
rasti@demo:~$ hostname
demohost.local</pre></div></div>

<p>Another helpful option is X11 forwarding &#8230;.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">[martin@sequoia:Documents]? ssh -X rasti@testhost.local
Linux testhost.local 2.6.26-2-xen-amd64 #1 SMP Wed May 13 18:43:45 UTC 2009 x86_64
Last login: Fri May 14 14:57:33 2010 from 1.2.3.4
/usr/bin/X11/xauth:  creating new authority file /home/rasti/.Xauthority
rasti@test:~$ echo $DISPLAY
localhost:10.0
rasti@test:~$ xpdf Documents/Firebird-gfix.pdf &amp;amp;
[1] 5467
rasti@test:~$</pre></div></div>

<p>For this example we used X11 which is shipped with Mac OS X. One not even needs to maintain any of the xhost display access permissions.</p>
<p><img class="alignnone size-full wp-image-818" title="xpdf-ssh" src="http://www.entwicklerforum.org/wp-content/uploads/2010/05/xpdf-ssh.png" alt="xpdf-ssh" width="565" height="526" /></p>
<p>The same way it works with the command line tools on Windows.<br />
 The major difference is that X11 is not part of Windows and must be installed seperately.</p>
<p><br class="spacer_" /></p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;t=SSH%20Convenience" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=SSH%20Convenience%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;title=SSH%20Convenience&amp;notes=It%20is%20common%20practice%20to%20use%20ssh%20%28%3D%20secure%20shell%29%20for%20remote%20administration.%20Foremost%20because%20it%20is%20a%20very%20secure%20way%20doing%20it%2C%20and%20supported%20on%20a%20vast%20variety%20of%20operating%20systems%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09BSD%20%28Free-%2FNet-%2FOpenBSD%29%20-%20comes%20along%20with%20OpenSSH%20already" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;title=SSH%20Convenience&amp;bodytext=It%20is%20common%20practice%20to%20use%20ssh%20%28%3D%20secure%20shell%29%20for%20remote%20administration.%20Foremost%20because%20it%20is%20a%20very%20secure%20way%20doing%20it%2C%20and%20supported%20on%20a%20vast%20variety%20of%20operating%20systems%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09BSD%20%28Free-%2FNet-%2FOpenBSD%29%20-%20comes%20along%20with%20OpenSSH%20already" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;title=SSH%20Convenience&amp;annotation=It%20is%20common%20practice%20to%20use%20ssh%20%28%3D%20secure%20shell%29%20for%20remote%20administration.%20Foremost%20because%20it%20is%20a%20very%20secure%20way%20doing%20it%2C%20and%20supported%20on%20a%20vast%20variety%20of%20operating%20systems%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09BSD%20%28Free-%2FNet-%2FOpenBSD%29%20-%20comes%20along%20with%20OpenSSH%20already" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;bm_description=SSH%20Convenience&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;title=SSH%20Convenience" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;title=SSH%20Convenience" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;title=SSH%20Convenience" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;t=SSH%20Convenience" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=SSH%20Convenience&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fssh-convenience&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/ssh-convenience/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby 1.9 parallel auf dem Mac installieren</title>
		<link>http://www.entwicklerforum.org/ruby-1-9-parallel-auf-dem-mac-installieren</link>
		<comments>http://www.entwicklerforum.org/ruby-1-9-parallel-auf-dem-mac-installieren#comments</comments>
		<pubDate>Sun, 02 May 2010 10:10:10 +0000</pubDate>
		<dc:creator>Martin Schmid</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/?p=667</guid>
		<description><![CDATA[Unter dem Apple Betriebssystem MacOS X ist Ruby und Rails bereits installiert. Auf der derzeitigen Version 10.6.3 befindet sich Ruby 1.8.7 (ruby 1.8.7 (2009-06-08 patchlevel 173) [universal-darwin10.0]). Jetzt will ich allerdings die neuste Version installieren. Man sollte aber m&#246;glichst nichts am bestehenden Betriebssystem ver&#228;ndern, da viele Programme und Dienste auch auf Ruby zugreifen k&#246;nnen.
Also habe [...]]]></description>
			<content:encoded><![CDATA[<p>Unter dem Apple Betriebssystem MacOS X ist Ruby und Rails bereits installiert. Auf der derzeitigen Version 10.6.3 befindet sich Ruby 1.8.7 (ruby 1.8.7 (2009-06-08 patchlevel 173) [universal-darwin10.0]). Jetzt will ich allerdings die neuste Version installieren. Man sollte aber m&#246;glichst nichts am bestehenden Betriebssystem ver&#228;ndern, da viele Programme und Dienste auch auf Ruby zugreifen k&#246;nnen.</p>
<p>Also habe ich Ruby 1.9 so installiert, dass es parallel und nur bei meinem Benutzer installiert wurde.</p>
<p>Ich bin wie folgt vorgegangen. Ich habe mich an der Seite <a href="http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard" target="_blank">http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard </a> orientiert, allerdings einige Punkte angepasst.</p>
<p><strong>Pfad im Benutzer anpassen:</strong><br />
 Dazu muss die Datei &#8220;.profile&#8221; angepasst oder erstellt werden. Dazu ein Terminal Fenster starten. Mit dem Befehl &#8220;<em>env</em>&#8221; kann man sich die Umgebungsvariablen des Benutzers aufgeben lassen. Dort findet man auch die Variable &#8220;<em>PATH</em>&#8220;. Diese zeigt im Standard zuerst auch den Pfad &#8220;/usr/bin&#8221;, wo sich auch der Link auf die Basis Ruby-Installation befindet. Mit dem Befehl &#8220;which ruby &amp;&amp; ruby -v&#8221; kann man sich den derzeitigen Pfad und die Version von Ruby aufgeben lassen.</p>
<p>Zur&#252;ck zum Anpassen der &#8220;.profile&#8221;-Datei. Mit dem Befehl &#8220;cat .profile&#8221; kann man sich deren Inhalt, sofern vorhanden ausgeben lassen. Im unserem Fall ist sie noch nicht vorhanden. Jetzt ben&#246;tigt man einen Texteditor. Die einfachste L&#246;sung ist der vi (<a title="VI" href="http://linuxseiten.kg-it.de/index.php?index=admin_vim_befehlsuebersicht" target="_blank">Befehls&#252;bersicht VI</a>).</p>
<p>Geben sie dazu in der Shell den Befehl &#8220;vi .profile&#8221; ein und f&#252;gen Sie folgende Zeile ein:</p>
<blockquote><p>export PATH=&#8221;/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:$PATH&#8221;</p>
</blockquote>
<p>Danach mit [Esc] [:][w][q] &#8211; fertig. Der o.g. Blog benutzt den beliebten Mac Editor TextMate. Hier lautet der Befehl &#8220;mate .profile&#8221;. In der Pfad-Anpassung habe ich auch gleich MySQL (&#8221;/usr/local/mysql/bin&#8221;)erg&#228;nzt, weil ich es sp&#228;ter noch installiere.</p>
<p><strong>Ruby herunter laden, kompilieren und installieren:</strong><br />
 Zun&#228;chst erzeugen wir uns ein Verzeichnis, in das wir den Quellcode von Ruby laden. Bevor Sie weiter machen, bitte vergewissern Sie sich, dass Ihnen das Passwort des Administrators Ihres Arbeitsplatzes vorliegt. Bei der ersten Benutzung innerhalb der Terminalsession m&#252;ssen Sie das Passwort eingeben.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">sudo mkdir -p /usr/local/src</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">sudo chgrp admin /usr/local/src</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">sudo chmod -R 775 /usr/local/src</div>
<blockquote><p>sudo mkdir -p /usr/local/src<br />
 sudo chgrp admin /usr/local/src<br />
 sudo chmod -R 775 /usr/local/src</p>
</blockquote>
<p>Zuerst wird unter dem Pfad &#8220;/usr/local/&#8221; der Ordner &#8220;src&#8221; (source) angelegt und dann die entsprechenden Rechte diesem Ordner zugewiesen. Ich m&#246;chte jetzt nicht auch jeden Linux/Unix Befehl eingehen. Das Internet wimmelt von entsprechenden Anleitungen.</p>
<p>Als n&#228;chstes springen wir in den Ordner &#8220;usr/local/src&#8221; und laden uns die aktuelle Version von Ruby und den RubyGems herunter.</p>
<blockquote><p>cd /usr/local/src<br />
 curl -O ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p378.tar.gz<br />
 curl -O http://files.rubyforge.vm.bytemark.co.uk/rubygems/rubygems-1.3.6.tgz</p>
</blockquote>
<p>Je nach Internet-Anbindung kann es einige Zeit dauern.</p>
<p>Jetzt packen wir die Installation aus, bereiten sie auf und danach installieren wir sie.</p>
<blockquote><p>tar xzvf ruby-1.9.1-p378.tar.gz<br />
 cd ruby-1.9.1-p378<br />
 ./configure &#8211;enable-shared &#8211;enable-pthread CFLAGS=-D_XOPEN_SOURCE=1<br />
 make<br />
 sudo make install<br />
 cd ..</p>
</blockquote>
<p>Damit ist Ruby installiert. Mit dem Befehl &#8220;which ruby &amp;&amp; ruby -v&#8221; sollte das folgende Ergebnis erscheinen. Wenn nicht ist Ihnen ein Fehler unterlaufen.</p>
<blockquote><p>which ruby &amp;&amp; ruby -v<br />
 /usr/local/bin/ruby<br />
 ruby 1.9.1p378 (2010-01-10 revision 26273) [i386-darwin10.3.0]</p>
</blockquote>
<p>Das Standard Ruby k&#246;nnen Sie so &#252;berpr&#252;fen:</p>
<blockquote><p>which /usr/bin/ruby &amp;&amp; /usr/bin/ruby -v<br />
 /usr/bin/ruby<br />
 ruby 1.8.7 (2009-06-08 patchlevel 173) [universal-darwin10.0]</p>
</blockquote>
<p>Das war jetzt der schwierigste Schritt. Von nun an arbeiten innerhalb von Ruby und installieren als n&#228;chstes die RubyGems.</p>
<blockquote>
<div>tar xzvf rubygems-1.3.6.tgz</div>
<div>cd rubygems-1.3.6</div>
<div>sudo /usr/local/bin/ruby setup.rb</div>
<div>cd ..</div>
</blockquote>
<div>Jetzt folgen noch die Gems Rails, mysql, mongrel, capistrano, termios und sqlite3 f&#252;r Ruby.</div>
<div>
<blockquote>
<div>sudo gem install rails</div>
<div>sudo gem install mysql &#8212; &#8211;with-mysql-dir=/usr/local/mysql</div>
<div>sudo gem install mongrel &#8211;include-dependencies</div>
<div>sudo gem install capistrano &#8211;include-dependencies</div>
<div>sudo gem install termios<br />
 sudo gem install sqlite3-ruby</div>
</blockquote>
</div>
<p>Nat&#252;rlich k&#246;nnen Sie von dem Gems beliebige hinzuf&#252;gen oder entfernen, je nachdem in welchem Umfeld Sie mit Ruby entwickeln.</p>
<p>Heute, 14. Mai 2010 kam ein Update der Gems auf Version 1.3.7 heraus.</p>
<blockquote><p>sudo gem update &#8211;system</p>
</blockquote>
<p>eingeben und das System datet sich selbst&#228;ndig up.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;t=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;title=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren&amp;notes=Unter%20dem%20Apple%20Betriebssystem%20MacOS%20X%20ist%20Ruby%20und%20Rails%20bereits%20installiert.%20Auf%20der%20derzeitigen%20Version%2010.6.3%20befindet%20sich%20Ruby%201.8.7%20%28ruby%201.8.7%20%282009-06-08%20patchlevel%20173%29%20%5Buniversal-darwin10.0%5D%29.%20Jetzt%20will%20ich%20allerdings%20die%20neuste%20Version%20i" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;title=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren&amp;bodytext=Unter%20dem%20Apple%20Betriebssystem%20MacOS%20X%20ist%20Ruby%20und%20Rails%20bereits%20installiert.%20Auf%20der%20derzeitigen%20Version%2010.6.3%20befindet%20sich%20Ruby%201.8.7%20%28ruby%201.8.7%20%282009-06-08%20patchlevel%20173%29%20%5Buniversal-darwin10.0%5D%29.%20Jetzt%20will%20ich%20allerdings%20die%20neuste%20Version%20i" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;title=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren&amp;annotation=Unter%20dem%20Apple%20Betriebssystem%20MacOS%20X%20ist%20Ruby%20und%20Rails%20bereits%20installiert.%20Auf%20der%20derzeitigen%20Version%2010.6.3%20befindet%20sich%20Ruby%201.8.7%20%28ruby%201.8.7%20%282009-06-08%20patchlevel%20173%29%20%5Buniversal-darwin10.0%5D%29.%20Jetzt%20will%20ich%20allerdings%20die%20neuste%20Version%20i" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;bm_description=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;title=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;title=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;title=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;t=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Ruby%201.9%20parallel%20auf%20dem%20Mac%20installieren&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-1-9-parallel-auf-dem-mac-installieren&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/ruby-1-9-parallel-auf-dem-mac-installieren/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tipps zur Virtualisierung</title>
		<link>http://www.entwicklerforum.org/tipps-zur-virtualisierung</link>
		<comments>http://www.entwicklerforum.org/tipps-zur-virtualisierung#comments</comments>
		<pubDate>Mon, 23 Mar 2009 22:59:09 +0000</pubDate>
		<dc:creator>Martin Schmid</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/?p=590</guid>
		<description><![CDATA[Virtualisierung ist ja seit geraumer Zeit in aller Munde. Ich selbst arbeite mit VMWare schon seit Jahren. Anfangs unter Windows und Linux als Host System. Als ich meinen ersten Intel Mac kaufte stieg ich zun&#228;chst von VMWare auf Parallels um, weil VMWare Fusion noch nicht verf&#252;gbar war.
Die Integration von Parallels ins MacOSX war vor 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Virtualisierung ist ja seit geraumer Zeit in aller Munde. Ich selbst arbeite mit <a href="http://www.vmware.de" target="_blank">VMWare</a> schon seit Jahren. Anfangs unter Windows und Linux als Host System. Als ich meinen ersten Intel Mac kaufte stieg ich zun&#228;chst von VMWare auf <a href="http://www.parallels.com" target="_blank">Parallels</a> um, weil VMWare Fusion noch nicht verf&#252;gbar war.</p>
<p>Die Integration von Parallels ins MacOSX war vor 2 Jahren sehr gut. Inzwischen hat VMWare mit Fusion nachgeholt. Der gro&#223;e Vorteil bei VMWare ist aber, dass die Virtualisierungen problemlos zwischen Windows, Linux und MacOSX ausgetauscht werden k&#246;nnen. Die Version der VMWare  Workstation/Fusion bietet nachzu die selben Eigenschaften wie z.B. den Unity Mode, Share Folders etc. auf allen 3 Plattformen. Da wir im Team mit allen Hostsystemen arbeiten, ist VMWare deshalb die erste Wahl f&#252;r uns.</p>
<p>Deshalb werde ich nun die wichtigsten Tipps zu VMWare zusammenfassen:</p>
<ul>
<li>Festplatte: Es ist generell sinnvoll mit verschiedenen virtuellen Festplatten zu arbeiten. Die h&#246;chste Geschwindigkeit erreicht man dadurch, dass man ein File benutzt und den gesamten Speicherbereich reserviert.</li>
<li>Festplatte: Nachteil hierbei: Wenn man die VMs h&#228;ufig kopiert und austauscht, muss man jedes Mal den reservierten Bereich kopieren und nicht nur den benutzten. Ferner ist es sinnvoll, im 2GB Bl&#246;cken zu arbeiten, wenn man z.B. Fat32 als Filesystem benutzt oder die VMs auf DVD sichern m&#246;chte.</li>
<li>Festplatte: Die VMs auf einer eingebauten Platte benutzen und nicht &#252;ber USB oder andere externe Platten.</li>
<li>Festplatte: Wir verwenden in der Regel 2 virtuelle Festplatte. C: f&#252;r das Betreibssystem und die Programme. D: f&#252;r die Daten und &#196;nderungen. Bei uns l&#228;uft die gesamte Entwicklungsumgebung in einer VM. Die Updates werden zentral gepflegt. Gibt es &#196;nderungen muss nur die C: Platte getauscht werden.</li>
<li>Festplatte: Wenn man noch nicht genau weiss, wieviel Speicher die VMWare man belegen wird, ist es sinnvoll die Festplatte gr&#246;&#223;er in 2 GB Bl&#246;cken anzulegen, aber den Speicher nicht komplett zu reserverieren.</li>
<li>Festplatte: Wenn der Guest eine Linux-Installation wird, sollte man f&#252;r jeden Volumen eine separate virtuelle Festplatte anlegen. So kann man ggf. die einzelnen Platten auf verschiedene Partitionen des Hosts legen. Gleiche gilt nat&#252;rlich auch f&#252;r Windows.</li>
<li>Netzwerk: Braucht die VMs eine eigene IP benutzt man den &#8220;Bridge-Mode&#8221;, ansonten den NAT. Hier benutzt die VM nach au&#223;en die IP des Host.</li>
<li>Speicher: Je mehr, desto besser, wobei der Standby Modus dann l&#228;nger f&#252;r das Restoren braucht.</li>
<li>Zusatzoptionen: Wie Shared Folder, AutoProtect, Application Sharing etc. nur einschalten, wenn wirklich n&#246;tig. Dies mach sowohl das Host-System als auch den Guest langsam. </li>
</ul>
<p><br class="spacer_" /></p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;t=Tipps%20zur%20Virtualisierung" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Tipps%20zur%20Virtualisierung%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;title=Tipps%20zur%20Virtualisierung&amp;notes=Virtualisierung%20ist%20ja%20seit%20geraumer%20Zeit%20in%20aller%20Munde.%20Ich%20selbst%20arbeite%20mit%20VMWare%20schon%20seit%20Jahren.%20Anfangs%20unter%20Windows%20und%20Linux%20als%20Host%20System.%20Als%20ich%20meinen%20ersten%20Intel%20Mac%20kaufte%20stieg%20ich%20zun%C3%A4chst%20von%20VMWare%20auf%20Parallels%20um%2C%20weil%20V" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;title=Tipps%20zur%20Virtualisierung&amp;bodytext=Virtualisierung%20ist%20ja%20seit%20geraumer%20Zeit%20in%20aller%20Munde.%20Ich%20selbst%20arbeite%20mit%20VMWare%20schon%20seit%20Jahren.%20Anfangs%20unter%20Windows%20und%20Linux%20als%20Host%20System.%20Als%20ich%20meinen%20ersten%20Intel%20Mac%20kaufte%20stieg%20ich%20zun%C3%A4chst%20von%20VMWare%20auf%20Parallels%20um%2C%20weil%20V" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;title=Tipps%20zur%20Virtualisierung&amp;annotation=Virtualisierung%20ist%20ja%20seit%20geraumer%20Zeit%20in%20aller%20Munde.%20Ich%20selbst%20arbeite%20mit%20VMWare%20schon%20seit%20Jahren.%20Anfangs%20unter%20Windows%20und%20Linux%20als%20Host%20System.%20Als%20ich%20meinen%20ersten%20Intel%20Mac%20kaufte%20stieg%20ich%20zun%C3%A4chst%20von%20VMWare%20auf%20Parallels%20um%2C%20weil%20V" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;bm_description=Tipps%20zur%20Virtualisierung&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;title=Tipps%20zur%20Virtualisierung" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;title=Tipps%20zur%20Virtualisierung" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;title=Tipps%20zur%20Virtualisierung" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;t=Tipps%20zur%20Virtualisierung" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Tipps%20zur%20Virtualisierung&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftipps-zur-virtualisierung&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/tipps-zur-virtualisierung/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux &amp; NTFS are best friends</title>
		<link>http://www.entwicklerforum.org/linux-ntfs-are-best-friends</link>
		<comments>http://www.entwicklerforum.org/linux-ntfs-are-best-friends#comments</comments>
		<pubDate>Wed, 27 Aug 2008 15:13:49 +0000</pubDate>
		<dc:creator>a.laaser</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/?p=243</guid>
		<description><![CDATA[Fast jeder, der die &#220;berschrift liest, wird jetzt denken &#8220;Der Verfasser spinnt&#8221;.
 Viele Linux (Suse)-Nutzer kennen bestimmt das Problem, dass Festplatten, vorallem auf NTFS formatierte, von Linux (Suse) nicht erkannt werden. Es erscheint eine lange und komplizierte Meldung, die die &#220;berschrift &#8220;Cannot mount Volume&#8221; tr&#228;gt.

Da man aber auch auf die Festplatte zugreifen m&#246;chte, sollte man [...]]]></description>
			<content:encoded><![CDATA[<p>Fast jeder, der die &#220;berschrift liest, wird jetzt denken &#8220;Der Verfasser spinnt&#8221;.<br />
 Viele Linux (Suse)-Nutzer kennen bestimmt das Problem, dass Festplatten, vorallem auf NTFS formatierte, von Linux (Suse) nicht erkannt werden. Es erscheint eine lange und komplizierte Meldung, die die &#220;berschrift &#8220;Cannot mount Volume&#8221; tr&#228;gt.</p>
<p><span id="more-243"></span></p>
<p>Da man aber auch auf die Festplatte zugreifen m&#246;chte, sollte man sie mounten k&#246;nnen.<br />
 Daf&#252;r brauchen wir zuerst ein kleines Zusatzprogramm, welches auf Linux nicht immer vorinstalliert ist.</p>
<p>Dazu einfach mal Yast &#246;ffnen und links oben in die Suchleiste &#8221; Software installieren oder l&#246;schen&#8221; eingeben und rechts auf das &#8220;Software installieren oder l&#246;schen&#8221; klicken. Es &#246;ffnet sich ein Fenster in welchem wir wieder links oben in die Suchleiste &#8221; ntfs-conf&#8221; eingeben und das kleine Programm, was uns dann rechts angezeigt wird, installieren. (Sollte da kein Programm angezeigt werden nochmals die Rechtschreibung &#252;berpr&#252;fen, ansonsten ist das Programm schon installiert).</p>
<p>Yast wieder schliessen, Computer &#246;ffnen und Weitere Anwendungen ausw&#228;hlen. Links oben in die Suchleiste &#8220;NTFS&#8221; eingeben und schon sehen wir ein kleines, neues Programm &#8220;NTFS-Konfiguration&#8221;. Dieses &#246;ffnen.<br />
 Wenn die Festplatte bereits angeschlossen ist, erscheint beim ersten Mal ein gr&#246;&#223;eres Fenster, dies mit einem Klick auf „Ok“ best&#228;tigen.<br />
 Ansonsten wird dieses Fenster erscheinen :<br />
 <a href="http://www.entwicklerforum.org/wp-content/uploads/2008/08/bildschirmfoto.png"><img class="size-thumbnail wp-image-242 alignleft" title="bildschirmfoto" src="http://www.entwicklerforum.org/wp-content/uploads/2008/08/bildschirmfoto-150x150.png" alt="" width="135" height="135" /></a></p>
<p>Ich hab meine H&#228;kchen in  jedes K&#228;stchen gesetzt, auch in das, welches im unteren Abschnitt erscheint, wenn eine Festplatte angeschlossen ist.<br />
 Die Eingabe mit einem Klick auf &#8220;Schliessen&#8221; best&#228;tigen und nun sollte man auf die Festplatte zugreifen k&#246;nnen.</p>
<p>Das mounten und unmounten geht nur mit root-Rechten.<br />
 ( Linux Terminal : mount  /  umount )</p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;t=Linux%20%26%20NTFS%20are%20best%20friends" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Linux%20%26%20NTFS%20are%20best%20friends%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;title=Linux%20%26%20NTFS%20are%20best%20friends&amp;notes=Fast%20jeder%2C%20der%20die%20%C3%9Cberschrift%20liest%2C%20wird%20jetzt%20denken%20%22Der%20Verfasser%20spinnt%22.%0D%0A%20Viele%20Linux%20%28Suse%29-Nutzer%20kennen%20bestimmt%20das%20Problem%2C%20dass%20Festplatten%2C%20vorallem%20auf%20NTFS%20formatierte%2C%20von%20Linux%20%28Suse%29%20nicht%20erkannt%20werden.%20Es%20erscheint%20eine%20lange" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;title=Linux%20%26%20NTFS%20are%20best%20friends&amp;bodytext=Fast%20jeder%2C%20der%20die%20%C3%9Cberschrift%20liest%2C%20wird%20jetzt%20denken%20%22Der%20Verfasser%20spinnt%22.%0D%0A%20Viele%20Linux%20%28Suse%29-Nutzer%20kennen%20bestimmt%20das%20Problem%2C%20dass%20Festplatten%2C%20vorallem%20auf%20NTFS%20formatierte%2C%20von%20Linux%20%28Suse%29%20nicht%20erkannt%20werden.%20Es%20erscheint%20eine%20lange" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;title=Linux%20%26%20NTFS%20are%20best%20friends&amp;annotation=Fast%20jeder%2C%20der%20die%20%C3%9Cberschrift%20liest%2C%20wird%20jetzt%20denken%20%22Der%20Verfasser%20spinnt%22.%0D%0A%20Viele%20Linux%20%28Suse%29-Nutzer%20kennen%20bestimmt%20das%20Problem%2C%20dass%20Festplatten%2C%20vorallem%20auf%20NTFS%20formatierte%2C%20von%20Linux%20%28Suse%29%20nicht%20erkannt%20werden.%20Es%20erscheint%20eine%20lange" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;bm_description=Linux%20%26%20NTFS%20are%20best%20friends&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;title=Linux%20%26%20NTFS%20are%20best%20friends" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;title=Linux%20%26%20NTFS%20are%20best%20friends" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;title=Linux%20%26%20NTFS%20are%20best%20friends" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;t=Linux%20%26%20NTFS%20are%20best%20friends" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Linux%20%26%20NTFS%20are%20best%20friends&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Flinux-ntfs-are-best-friends&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/linux-ntfs-are-best-friends/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Netzwerkgeschwindigkeit bei Windows Vista erh&#246;hen</title>
		<link>http://www.entwicklerforum.org/netzwerkgeschwindigkeit-bei-windows-vista-erhoehen</link>
		<comments>http://www.entwicklerforum.org/netzwerkgeschwindigkeit-bei-windows-vista-erhoehen#comments</comments>
		<pubDate>Wed, 09 Apr 2008 09:18:03 +0000</pubDate>
		<dc:creator>Hannes Bischoff</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/?p=97</guid>
		<description><![CDATA[Leider habe auch feststellen m&#252;ssen, dass unter Windows Vista die Geschwindigkeit, u.a. bei kopieren von Dateien, sehr langsam geworden ist, wenn man Windows XP als Vergleich heranzieht.
 Deshalb habe ich nach einer M&#246;glichkeit gesucht, Vista ein wenig zu &#8220;beschleunigen&#8221; und bin unter den folgenden 2 Links f&#252;ndig geworden:
1. Vista: Schneller im Netzwerk kopieren
2. Wie kann [...]]]></description>
			<content:encoded><![CDATA[<p>Leider habe auch feststellen m&#252;ssen, dass unter Windows Vista die Geschwindigkeit, u.a. bei kopieren von Dateien, sehr langsam geworden ist, wenn man Windows XP als Vergleich heranzieht.<br />
 Deshalb habe ich nach einer M&#246;glichkeit gesucht, Vista ein wenig zu &#8220;beschleunigen&#8221; und bin unter den folgenden 2 Links f&#252;ndig geworden:</p>
<p>1. <a href="http://www.schieb.de/601433/vista-schneller-im-netzwerk-kopieren">Vista: Schneller im Netzwerk kopieren</a></p>
<p>2. <a href="http://www.netzwerktotal.de/vistafaq/vistafaq40.htm">Wie kann ich gr&#246;&#223;ere Dateien schneller im Netzwerk unter Windows Vista Kopieren, Verschieben oder L&#246;schen?</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;t=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;title=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen&amp;notes=Leider%20habe%20auch%20feststellen%20m%C3%BCssen%2C%20dass%20unter%20Windows%20Vista%20die%20Geschwindigkeit%2C%20u.a.%20bei%20kopieren%20von%20Dateien%2C%20sehr%20langsam%20geworden%20ist%2C%20wenn%20man%20Windows%20XP%20als%20Vergleich%20heranzieht.%0D%0A%20Deshalb%20habe%20ich%20nach%20einer%20M%C3%B6glichkeit%20gesucht%2C%20Vista%20ein%20" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;title=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen&amp;bodytext=Leider%20habe%20auch%20feststellen%20m%C3%BCssen%2C%20dass%20unter%20Windows%20Vista%20die%20Geschwindigkeit%2C%20u.a.%20bei%20kopieren%20von%20Dateien%2C%20sehr%20langsam%20geworden%20ist%2C%20wenn%20man%20Windows%20XP%20als%20Vergleich%20heranzieht.%0D%0A%20Deshalb%20habe%20ich%20nach%20einer%20M%C3%B6glichkeit%20gesucht%2C%20Vista%20ein%20" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;title=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen&amp;annotation=Leider%20habe%20auch%20feststellen%20m%C3%BCssen%2C%20dass%20unter%20Windows%20Vista%20die%20Geschwindigkeit%2C%20u.a.%20bei%20kopieren%20von%20Dateien%2C%20sehr%20langsam%20geworden%20ist%2C%20wenn%20man%20Windows%20XP%20als%20Vergleich%20heranzieht.%0D%0A%20Deshalb%20habe%20ich%20nach%20einer%20M%C3%B6glichkeit%20gesucht%2C%20Vista%20ein%20" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;bm_description=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;title=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;title=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;title=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;t=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Netzwerkgeschwindigkeit%20bei%20Windows%20Vista%20erh%C3%B6hen&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fnetzwerkgeschwindigkeit-bei-windows-vista-erhoehen&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/netzwerkgeschwindigkeit-bei-windows-vista-erhoehen/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby und Webservices</title>
		<link>http://www.entwicklerforum.org/ruby-und-webservices</link>
		<comments>http://www.entwicklerforum.org/ruby-und-webservices#comments</comments>
		<pubDate>Fri, 04 Jan 2008 20:42:53 +0000</pubDate>
		<dc:creator>Dennis Müller</dc:creator>
				<category><![CDATA[Allgemein / Web 2.0]]></category>
		<category><![CDATA[OS - Betriebssysteme]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/ruby-und-webservices</guid>
		<description><![CDATA[So, jetzt hab ich mir mal ein wenig das Thema Webservices unter Ruby angeschaut.
 Als erstes ist mal zu sagen, SOAP wird unter Ruby on Rails nicht mehr unterst&#252;tzt, nur noch REST.
F&#252;r Ruby ansich gibt es aber eine scheinbar recht gute SOAP implementation. Diese nennt sich SOAP4R, wer den GEM Manager installiert hat (ist bei [...]]]></description>
			<content:encoded><![CDATA[<p>So, jetzt hab ich mir mal ein wenig das Thema Webservices unter Ruby angeschaut.<br />
 Als erstes ist mal zu sagen, <a href="http://de.wikipedia.org/wiki/SOAP">SOAP</a> wird unter Ruby on Rails nicht mehr unterst&#252;tzt, nur noch <a href="http://de.wikipedia.org/wiki/REST">REST</a>.</p>
<p>F&#252;r Ruby ansich gibt es aber eine scheinbar recht gute SOAP implementation. Diese nennt sich SOAP4R, wer den GEM Manager installiert hat (ist bei OSX normal standard) kann mittels folgendem Kommandozeilenbefehl sich die aktuellste Version installieren:<br />
 <code>sudo gem install soap4r --include-dependencies</code></p>
<p>Jetzt kann man sich komplett Ruby funktionen parralel zur WSDL Datei aufbauen. Dies ist nat&#252;rlich mit erheblichem aufwand verbunden. Daher gibt es ein nettes Kommandozeilentool das einem automatisch Rubyklassen passend zur WSDL Datei erstellt.<br />
 Mit folgendem befehl kann man sich die klassen erstellen lassen:<br />
 <code>/usr/bin/wsdl2ruby.rb --wsdl /PfadOderUrlZurWSDL/beispiel.xml --type client</code></p>
<p>Dadurch erstellt Ruby alle Klassen die man f&#252;r ein Client ben&#246;tigt.</p>
<p>Mittels folgendem befehl l&#228;sst sich nat&#252;rlich auch ein Server passend zur WSDL erstellen:<br />
 <code>/usr/bin/wsdl2ruby.rb --wsdl /PfadOderUrlZurWSDL/beispiel.xml --type server</code></p>
<p>Das alles hab ich bei mir bisher geschafft. Mal sehen wie man das ganze erzeugte jetzt benutzt.<br />
 Ein nettes tutorial findet man &#252;brigens hier:<br />
 http://markthomas.org/2007/09/12/getting-started-with-soap4r/</p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;t=Ruby%20und%20Webservices" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Ruby%20und%20Webservices%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;title=Ruby%20und%20Webservices&amp;notes=So%2C%20jetzt%20hab%20ich%20mir%20mal%20ein%20wenig%20das%20Thema%20Webservices%20unter%20Ruby%20angeschaut.%0D%0A%20Als%20erstes%20ist%20mal%20zu%20sagen%2C%20SOAP%20wird%20unter%20Ruby%20on%20Rails%20nicht%20mehr%20unterst%C3%BCtzt%2C%20nur%20noch%20REST.%0D%0A%0D%0AF%C3%BCr%20Ruby%20ansich%20gibt%20es%20aber%20eine%20scheinbar%20recht%20gute%20SOAP%20impl" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;title=Ruby%20und%20Webservices&amp;bodytext=So%2C%20jetzt%20hab%20ich%20mir%20mal%20ein%20wenig%20das%20Thema%20Webservices%20unter%20Ruby%20angeschaut.%0D%0A%20Als%20erstes%20ist%20mal%20zu%20sagen%2C%20SOAP%20wird%20unter%20Ruby%20on%20Rails%20nicht%20mehr%20unterst%C3%BCtzt%2C%20nur%20noch%20REST.%0D%0A%0D%0AF%C3%BCr%20Ruby%20ansich%20gibt%20es%20aber%20eine%20scheinbar%20recht%20gute%20SOAP%20impl" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;title=Ruby%20und%20Webservices&amp;annotation=So%2C%20jetzt%20hab%20ich%20mir%20mal%20ein%20wenig%20das%20Thema%20Webservices%20unter%20Ruby%20angeschaut.%0D%0A%20Als%20erstes%20ist%20mal%20zu%20sagen%2C%20SOAP%20wird%20unter%20Ruby%20on%20Rails%20nicht%20mehr%20unterst%C3%BCtzt%2C%20nur%20noch%20REST.%0D%0A%0D%0AF%C3%BCr%20Ruby%20ansich%20gibt%20es%20aber%20eine%20scheinbar%20recht%20gute%20SOAP%20impl" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;bm_description=Ruby%20und%20Webservices&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;title=Ruby%20und%20Webservices" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;title=Ruby%20und%20Webservices" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;title=Ruby%20und%20Webservices" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;t=Ruby%20und%20Webservices" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Ruby%20und%20Webservices&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Fruby-und-webservices&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/ruby-und-webservices/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roaming Warnung unter Windows Mobile 6</title>
		<link>http://www.entwicklerforum.org/roaming-warnung-unter-windows-mobile-6</link>
		<comments>http://www.entwicklerforum.org/roaming-warnung-unter-windows-mobile-6#comments</comments>
		<pubDate>Thu, 06 Dec 2007 10:11:13 +0000</pubDate>
		<dc:creator>Martin Schmid</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/roaming-warnung-unter-windows-mobile-6</guid>
		<description><![CDATA[Ich habe ein neues Handy mit Windows Mobile 6.
 Das Teil ist super und Windows Mobile l&#228;uft wirklich stabil.
 Eine Sache nervt jedoch gewaltig.
Jedes Mal wenn ich meine eMails abrufe, egal ob &#252;ber T-Mobile, Wireless oder Netzwerk, kommt eine Meldung, dass dadurch zus&#228;tzliche Kosten entstehen k&#246;nnen.
 Der Witz ist, dass dies beim Surfen oder Abgleich [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe ein neues Handy mit Windows Mobile 6.<br />
 Das Teil ist super und Windows Mobile l&#228;uft wirklich stabil.<br />
 Eine Sache nervt jedoch gewaltig.</p>
<p>Jedes Mal wenn ich meine eMails abrufe, egal ob &#252;ber T-Mobile, Wireless oder Netzwerk, kommt eine Meldung, dass dadurch zus&#228;tzliche Kosten entstehen k&#246;nnen.<br />
 Der Witz ist, dass dies beim Surfen oder Abgleich von Terminen etc. nicht passiert.</p>
<p>Was hat sich der Programmierer dabei nur gedacht <img src='http://www.entwicklerforum.org/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Egal: Hier die L&#246;sung:<br />
 Einfach in die Registry des PDA/MDA unter <em>&#8220;HKEY_CURRENT_USER//Software//Microsoft//Inbox//Settings&#8221;</em> den Eintrag <em>&#8220;ShowRoamWarning&#8221;</em> <strong>DWORD=0 </strong>erg&#228;nzen.<br />
 Fertig!</p>
<p>Die Registry l&#228;&#223;t sich mit der Trial von http://www.resco.net/pocketpc/explorer/indepth.asp#registry gut anpassen.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;t=Roaming%20Warnung%20unter%20Windows%20Mobile%206" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Roaming%20Warnung%20unter%20Windows%20Mobile%206%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;title=Roaming%20Warnung%20unter%20Windows%20Mobile%206&amp;notes=Ich%20habe%20ein%20neues%20Handy%20mit%20Windows%20Mobile%206.%0D%0A%20Das%20Teil%20ist%20super%20und%20Windows%20Mobile%20l%C3%A4uft%20wirklich%20stabil.%0D%0A%20Eine%20Sache%20nervt%20jedoch%20gewaltig.%0D%0A%0D%0AJedes%20Mal%20wenn%20ich%20meine%20eMails%20abrufe%2C%20egal%20ob%20%C3%BCber%20T-Mobile%2C%20Wireless%20oder%20Netzwerk%2C%20kommt%20eine%20M" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;title=Roaming%20Warnung%20unter%20Windows%20Mobile%206&amp;bodytext=Ich%20habe%20ein%20neues%20Handy%20mit%20Windows%20Mobile%206.%0D%0A%20Das%20Teil%20ist%20super%20und%20Windows%20Mobile%20l%C3%A4uft%20wirklich%20stabil.%0D%0A%20Eine%20Sache%20nervt%20jedoch%20gewaltig.%0D%0A%0D%0AJedes%20Mal%20wenn%20ich%20meine%20eMails%20abrufe%2C%20egal%20ob%20%C3%BCber%20T-Mobile%2C%20Wireless%20oder%20Netzwerk%2C%20kommt%20eine%20M" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;title=Roaming%20Warnung%20unter%20Windows%20Mobile%206&amp;annotation=Ich%20habe%20ein%20neues%20Handy%20mit%20Windows%20Mobile%206.%0D%0A%20Das%20Teil%20ist%20super%20und%20Windows%20Mobile%20l%C3%A4uft%20wirklich%20stabil.%0D%0A%20Eine%20Sache%20nervt%20jedoch%20gewaltig.%0D%0A%0D%0AJedes%20Mal%20wenn%20ich%20meine%20eMails%20abrufe%2C%20egal%20ob%20%C3%BCber%20T-Mobile%2C%20Wireless%20oder%20Netzwerk%2C%20kommt%20eine%20M" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;bm_description=Roaming%20Warnung%20unter%20Windows%20Mobile%206&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;title=Roaming%20Warnung%20unter%20Windows%20Mobile%206" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;title=Roaming%20Warnung%20unter%20Windows%20Mobile%206" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;title=Roaming%20Warnung%20unter%20Windows%20Mobile%206" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;t=Roaming%20Warnung%20unter%20Windows%20Mobile%206" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Roaming%20Warnung%20unter%20Windows%20Mobile%206&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Froaming-warnung-unter-windows-mobile-6&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/roaming-warnung-unter-windows-mobile-6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D/2D Dock &#8211; Applikation f&#252;r Leopard</title>
		<link>http://www.entwicklerforum.org/3d2d-dock-applikation-fuer-leopard</link>
		<comments>http://www.entwicklerforum.org/3d2d-dock-applikation-fuer-leopard#comments</comments>
		<pubDate>Thu, 08 Nov 2007 13:12:58 +0000</pubDate>
		<dc:creator>Dennis Müller</dc:creator>
				<category><![CDATA[C, C++, C#, Objective-C]]></category>
		<category><![CDATA[OS - Betriebssysteme]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Leopard]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/3d2d-dock-applikation-fuer-leopard</guid>
		<description><![CDATA[Gestern Nacht habe ich kurz eine Applikation geschrieben mit der man mit einem Mausklick zwischen 3D und 2D Dock umschalten kann.
 Mehr Infos und den Download gibts unter MacGarden Software.
 F&#252;r User die der Shell nicht m&#228;chtig sind ist es ganz nett das ganze per mausklick zu machen.






	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Gestern Nacht habe ich kurz eine Applikation geschrieben mit der man mit einem Mausklick zwischen 3D und 2D Dock umschalten kann.<br />
 Mehr Infos und den Download gibts unter <a href="http://www.mac-garden.com/software">MacGarden Software</a>.<br />
 F&#252;r User die der Shell nicht m&#228;chtig sind ist es ganz nett das ganze per mausklick zu machen.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;t=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;title=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard&amp;notes=Gestern%20Nacht%20habe%20ich%20kurz%20eine%20Applikation%20geschrieben%20mit%20der%20man%20mit%20einem%20Mausklick%20zwischen%203D%20und%202D%20Dock%20umschalten%20kann.%0D%0A%20Mehr%20Infos%20und%20den%20Download%20gibts%20unter%20MacGarden%20Software.%0D%0A%20F%C3%BCr%20User%20die%20der%20Shell%20nicht%20m%C3%A4chtig%20sind%20ist%20es%20ganz%20" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;title=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard&amp;bodytext=Gestern%20Nacht%20habe%20ich%20kurz%20eine%20Applikation%20geschrieben%20mit%20der%20man%20mit%20einem%20Mausklick%20zwischen%203D%20und%202D%20Dock%20umschalten%20kann.%0D%0A%20Mehr%20Infos%20und%20den%20Download%20gibts%20unter%20MacGarden%20Software.%0D%0A%20F%C3%BCr%20User%20die%20der%20Shell%20nicht%20m%C3%A4chtig%20sind%20ist%20es%20ganz%20" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;title=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard&amp;annotation=Gestern%20Nacht%20habe%20ich%20kurz%20eine%20Applikation%20geschrieben%20mit%20der%20man%20mit%20einem%20Mausklick%20zwischen%203D%20und%202D%20Dock%20umschalten%20kann.%0D%0A%20Mehr%20Infos%20und%20den%20Download%20gibts%20unter%20MacGarden%20Software.%0D%0A%20F%C3%BCr%20User%20die%20der%20Shell%20nicht%20m%C3%A4chtig%20sind%20ist%20es%20ganz%20" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;bm_description=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;title=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;title=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;title=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;t=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=3D%2F2D%20Dock%20-%20Applikation%20f%C3%BCr%20Leopard&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d2d-dock-applikation-fuer-leopard&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/3d2d-dock-applikation-fuer-leopard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timemachine Backupintervalle &#228;ndern</title>
		<link>http://www.entwicklerforum.org/timemachine-backupintervalle-aendern</link>
		<comments>http://www.entwicklerforum.org/timemachine-backupintervalle-aendern#comments</comments>
		<pubDate>Fri, 02 Nov 2007 09:49:13 +0000</pubDate>
		<dc:creator>Dennis Müller</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Timemachine]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/timemachine-backupintervalle-aendern</guid>
		<description><![CDATA[Wer auf eigene Gefahr gerne die Backupintervalle von Timemachine &#228;ndern will der kann folgende .plist Datei &#246;ffnen:
 /System/Library/LaunchDaemons/com.apple.backupd-auto.plist
Danach nach dem Textbereich suchen der so aussieht:
 
 &#60; key&#62;StartInterval&#60; /key&#62;
 &#60; integer&#62;3600&#60; /integer&#62;
 
Der angegebene Wert muss in Sekunden angegeben werden.
Mit Rechtsklick aufs Timemachineicon im Dock kann man &#252;brigens auch &#8220;Backup jetzt erstellen&#8221; w&#228;hlen.






	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Wer auf eigene Gefahr gerne die Backupintervalle von Timemachine &#228;ndern will der kann folgende .plist Datei &#246;ffnen:<br />
 /System/Library/LaunchDaemons/com.apple.backupd-auto.plist</p>
<p>Danach nach dem Textbereich suchen der so aussieht:<br />
 <code><br />
 &lt; key&gt;StartInterval&lt; /key&gt;<br />
 &lt; integer&gt;3600&lt; /integer&gt;<br />
 </code></p>
<p>Der angegebene Wert muss in Sekunden angegeben werden.</p>
<p>Mit Rechtsklick aufs Timemachineicon im Dock kann man &#252;brigens auch &#8220;Backup jetzt erstellen&#8221; w&#228;hlen.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;t=Timemachine%20Backupintervalle%20%C3%A4ndern" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Timemachine%20Backupintervalle%20%C3%A4ndern%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;title=Timemachine%20Backupintervalle%20%C3%A4ndern&amp;notes=Wer%20auf%20eigene%20Gefahr%20gerne%20die%20Backupintervalle%20von%20Timemachine%20%C3%A4ndern%20will%20der%20kann%20folgende%20.plist%20Datei%20%C3%B6ffnen%3A%0D%0A%20%2FSystem%2FLibrary%2FLaunchDaemons%2Fcom.apple.backupd-auto.plist%0D%0A%0D%0ADanach%20nach%20dem%20Textbereich%20suchen%20der%20so%20aussieht%3A%0D%0A%20%0D%0A%20%26lt%3B%20key%26gt" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;title=Timemachine%20Backupintervalle%20%C3%A4ndern&amp;bodytext=Wer%20auf%20eigene%20Gefahr%20gerne%20die%20Backupintervalle%20von%20Timemachine%20%C3%A4ndern%20will%20der%20kann%20folgende%20.plist%20Datei%20%C3%B6ffnen%3A%0D%0A%20%2FSystem%2FLibrary%2FLaunchDaemons%2Fcom.apple.backupd-auto.plist%0D%0A%0D%0ADanach%20nach%20dem%20Textbereich%20suchen%20der%20so%20aussieht%3A%0D%0A%20%0D%0A%20%26lt%3B%20key%26gt" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;title=Timemachine%20Backupintervalle%20%C3%A4ndern&amp;annotation=Wer%20auf%20eigene%20Gefahr%20gerne%20die%20Backupintervalle%20von%20Timemachine%20%C3%A4ndern%20will%20der%20kann%20folgende%20.plist%20Datei%20%C3%B6ffnen%3A%0D%0A%20%2FSystem%2FLibrary%2FLaunchDaemons%2Fcom.apple.backupd-auto.plist%0D%0A%0D%0ADanach%20nach%20dem%20Textbereich%20suchen%20der%20so%20aussieht%3A%0D%0A%20%0D%0A%20%26lt%3B%20key%26gt" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;bm_description=Timemachine%20Backupintervalle%20%C3%A4ndern&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;title=Timemachine%20Backupintervalle%20%C3%A4ndern" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;title=Timemachine%20Backupintervalle%20%C3%A4ndern" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;title=Timemachine%20Backupintervalle%20%C3%A4ndern" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;t=Timemachine%20Backupintervalle%20%C3%A4ndern" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Timemachine%20Backupintervalle%20%C3%A4ndern&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2Ftimemachine-backupintervalle-aendern&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/timemachine-backupintervalle-aendern/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D Dock unter Leopard ausschalten</title>
		<link>http://www.entwicklerforum.org/3d-dock-unter-leopard-ausschalten</link>
		<comments>http://www.entwicklerforum.org/3d-dock-unter-leopard-ausschalten#comments</comments>
		<pubDate>Thu, 25 Oct 2007 10:07:24 +0000</pubDate>
		<dc:creator>Dennis Müller</dc:creator>
				<category><![CDATA[OS - Betriebssysteme]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Dock]]></category>
		<category><![CDATA[Leopard]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/3d-dock-unter-leopard-ausschalten</guid>
		<description><![CDATA[Ab Freitag Abend ist Leopard (Mac OS X 10.5) erh&#228;tlich. Wer gerne anstatt des 3D Docks gerne ein flaches dock wie bisher haben m&#246;chte muss folgende Terminalbefehle ausf&#252;hren:
 
 defaults write com.apple.dock no-glasss -boolean YES
 killall Dock
 
Das wars, und schon erscheint das Dock im &#8220;alten glanz&#8221;.






	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Ab Freitag Abend ist Leopard (Mac OS X 10.5) erh&#228;tlich. Wer gerne anstatt des 3D Docks gerne ein flaches dock wie bisher haben m&#246;chte muss folgende Terminalbefehle ausf&#252;hren:<br />
 <code><br />
 defaults write com.apple.dock no-glasss -boolean YES<br />
 killall Dock<br />
 </code></p>
<p>Das wars, und schon erscheint das Dock im &#8220;alten glanz&#8221;.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong></strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;t=3D%20Dock%20unter%20Leopard%20ausschalten" title="Facebook"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=3D%20Dock%20unter%20Leopard%20ausschalten%20-%20http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten" title="Twitter"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten" title="Technorati"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;title=3D%20Dock%20unter%20Leopard%20ausschalten&amp;notes=Ab%20Freitag%20Abend%20ist%20Leopard%20%28Mac%20OS%20X%2010.5%29%20erh%C3%A4tlich.%20Wer%20gerne%20anstatt%20des%203D%20Docks%20gerne%20ein%20flaches%20dock%20wie%20bisher%20haben%20m%C3%B6chte%20muss%20folgende%20Terminalbefehle%20ausf%C3%BChren%3A%0D%0A%20%0D%0A%20defaults%20write%20com.apple.dock%20no-glasss%20-boolean%20YES%0D%0A%20killall%20Dock" title="del.icio.us"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;title=3D%20Dock%20unter%20Leopard%20ausschalten&amp;bodytext=Ab%20Freitag%20Abend%20ist%20Leopard%20%28Mac%20OS%20X%2010.5%29%20erh%C3%A4tlich.%20Wer%20gerne%20anstatt%20des%203D%20Docks%20gerne%20ein%20flaches%20dock%20wie%20bisher%20haben%20m%C3%B6chte%20muss%20folgende%20Terminalbefehle%20ausf%C3%BChren%3A%0D%0A%20%0D%0A%20defaults%20write%20com.apple.dock%20no-glasss%20-boolean%20YES%0D%0A%20killall%20Dock" title="Digg"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;title=3D%20Dock%20unter%20Leopard%20ausschalten&amp;annotation=Ab%20Freitag%20Abend%20ist%20Leopard%20%28Mac%20OS%20X%2010.5%29%20erh%C3%A4tlich.%20Wer%20gerne%20anstatt%20des%203D%20Docks%20gerne%20ein%20flaches%20dock%20wie%20bisher%20haben%20m%C3%B6chte%20muss%20folgende%20Terminalbefehle%20ausf%C3%BChren%3A%0D%0A%20%0D%0A%20defaults%20write%20com.apple.dock%20no-glasss%20-boolean%20YES%0D%0A%20killall%20Dock" title="Google Bookmarks"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;bm_description=3D%20Dock%20unter%20Leopard%20ausschalten&amp;plugin=soc" title="MisterWong"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;title=3D%20Dock%20unter%20Leopard%20ausschalten" title="DZone"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;title=3D%20Dock%20unter%20Leopard%20ausschalten" title="Live"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;title=3D%20Dock%20unter%20Leopard%20ausschalten" title="Mixx"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;t=3D%20Dock%20unter%20Leopard%20ausschalten" title="MySpace"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=3D%20Dock%20unter%20Leopard%20ausschalten&amp;body=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten" title="email"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;partner=sociable" title="PDF"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.entwicklerforum.org%2F3d-dock-unter-leopard-ausschalten&amp;partner=sociable" title="Print"><img src="http://www.entwicklerforum.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/3d-dock-unter-leopard-ausschalten/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
