<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://www.schokilade.de/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://www.schokilade.de/wiki/feed.php">
        <title>schokiladeWiki</title>
        <description></description>
        <link>http://www.schokilade.de/wiki/</link>
        <image rdf:resource="http://www.schokilade.de/wiki/lib/images/favicon.ico" />
       <dc:date>2010-07-30T14:45:44+02:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://www.schokilade.de/wiki/bash/sortiere_dateien_auf_usb-stick"/>
                <rdf:li rdf:resource="http://www.schokilade.de/wiki/start"/>
                <rdf:li rdf:resource="http://www.schokilade.de/wiki/kerberos/kerberos_voraussetzungen"/>
                <rdf:li rdf:resource="http://www.schokilade.de/wiki/kerberos/kerberos_implementation_links"/>
                <rdf:li rdf:resource="http://www.schokilade.de/wiki/kerberos/start"/>
                <rdf:li rdf:resource="http://www.schokilade.de/wiki/windows_tipps"/>
                <rdf:li rdf:resource="http://www.schokilade.de/wiki/windows"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://www.schokilade.de/wiki/lib/images/favicon.ico">
        <title>schokiladeWiki</title>
        <link>http://www.schokilade.de/wiki/</link>
        <url>http://www.schokilade.de/wiki/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="http://www.schokilade.de/wiki/bash/sortiere_dateien_auf_usb-stick">
        <dc:format>text/html</dc:format>
        <dc:date>2010-02-04T21:57:51+02:00</dc:date>
        <dc:creator>Frank Schubert</dc:creator>
        <title>bash:sortiere_dateien_auf_usb-stick</title>
        <link>http://www.schokilade.de/wiki/bash/sortiere_dateien_auf_usb-stick</link>
        <description>


&lt;h1&gt;&lt;a name=&quot;sortiere_dateien_auf_usb-stick&quot; id=&quot;sortiere_dateien_auf_usb-stick&quot;&gt;Sortiere Dateien auf USB-Stick&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Sortiere Dateien auf USB-Stick&quot; [1-45] --&gt;
&lt;h2&gt;&lt;a name=&quot;hintergrund&quot; id=&quot;hintergrund&quot;&gt;Hintergrund&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
&lt;acronym title=&quot;Motion Picture Experts Group Layer 3&quot;&gt;MP3&lt;/acronym&gt;-Player lesen Dateien des Dateisystems nicht sortiert ein, sondern so wie es geschrieben wurde.
&lt;strong&gt;ls&lt;/strong&gt; tut so als wäre alles sortiert, aber &lt;strong&gt;ls -U&lt;/strong&gt; entlarvt wie es wirklich aussieht.
&lt;/p&gt;

&lt;p&gt;
Hinweis: Das Skript ist nicht beschränkt auf USB-Sticks. Es funktioniert mit einem beliebigen Verzeichnis.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Hintergrund&quot; [46-368] --&gt;
&lt;h2&gt;&lt;a name=&quot;die_idee&quot; id=&quot;die_idee&quot;&gt;Die Idee&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Gehe durch alle Verzeichnisse.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Verschiebe alle Dateien in ein temporäres Verzeichnis.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Lies die sortierte Dateiliste aus dem temporären Verzeichnis.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Verschiebe alle Dateien nacheinander zurück.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Die Idee&quot; [369-602] --&gt;
&lt;h2&gt;&lt;a name=&quot;skript&quot; id=&quot;skript&quot;&gt;Skript&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
&lt;strong&gt;Achtung Betaversion&lt;/strong&gt;: Funktioniert für mich, aber ich übernehme keine Garantie!
&lt;/p&gt;

&lt;p&gt;
Quelltext des Skripts - einfach per Copy&amp;#039;n&amp;#039;Paste mitnehmen:

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
#!/bin/bash
#
# Sortiert die Dateien in allen Verzeichnissen neu.
#
if [ &amp;quot;x$1&amp;quot; == &amp;quot;x&amp;quot; ]; then
  echo &amp;quot;Error: path missing&amp;quot;
  exit 1
fi
TARGET=&amp;quot;$1&amp;quot;

if [ ! -d $TARGET ]; then
  echo &amp;quot;Error: not a directory&amp;quot;
  exit 1
fi

IFS=$&amp;#039;\n&amp;#039;
cd &amp;quot;$TARGET&amp;quot;
DIRS=$(find . -type d)

# tmp directory
TMPDIR=$(mktemp -d --tmpdir=&amp;quot;$TARGET&amp;quot;)

for i in $DIRS; do
  if [ &amp;quot;$i&amp;quot; == &amp;quot;.&amp;quot; ]; then continue; fi 
  mkdir &amp;quot;$TMPDIR/$i&amp;quot;
  for file in `find &amp;quot;$i&amp;quot; -type f`; do
    mv &amp;quot;$file&amp;quot; &amp;quot;$TMPDIR/$i&amp;quot;/
  done
  # alle dateien sind ins tmpdir verschoben
  # kopiere alle dateien einzeln sortiert zurück
  for file in `find $TMPDIR/&amp;quot;$i&amp;quot; -type f |sort`; do
    mv &amp;quot;$file&amp;quot; &amp;quot;$i&amp;quot;
  done
done
rm -rf $TMPDIR
&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Skript&quot; [603-] --&gt;</description>
    </item>
    <item rdf:about="http://www.schokilade.de/wiki/start">
        <dc:format>text/html</dc:format>
        <dc:date>2010-02-01T15:14:47+02:00</dc:date>
        <dc:creator>Frank Schubert</dc:creator>
        <title>start</title>
        <link>http://www.schokilade.de/wiki/start</link>
        <description>


&lt;h1&gt;&lt;a name=&quot;links_zu_kram&quot; id=&quot;links_zu_kram&quot;&gt;Links zu Kram&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; unsere &lt;a href=&quot;http://www.brickset.com/search/?OwnedBy=ymerlin&quot; class=&quot;urlextern&quot; title=&quot;http://www.brickset.com/search/?OwnedBy=ymerlin&quot;&gt;Lego-Sammlung&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Links zu Kram&quot; [1-107] --&gt;
&lt;h1&gt;&lt;a name=&quot;blog&quot; id=&quot;blog&quot;&gt;Blog&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul class=&quot;rss&quot;&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/07/babyschwimmen-und-taucher.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/07/babyschwimmen-und-taucher.html&quot;&gt;Babyschwimmen und Taucher&lt;/a&gt; (2009/07/14 21:06)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/06/lagrange-punkte.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/06/lagrange-punkte.html&quot;&gt;Lagrange-Punkte&lt;/a&gt; (2009/06/16 20:48)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/06/57km-mit-kasekuchen-und-kaffee.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/06/57km-mit-kasekuchen-und-kaffee.html&quot;&gt;5,7km mit Käsekuchen und Kaffee&lt;/a&gt; (2009/06/10 21:04)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/03/cowsay-our-world.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/03/cowsay-our-world.html&quot;&gt;cowsay: our world&lt;/a&gt; (2009/03/17 21:52)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/03/theherofactory-via.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/03/theherofactory-via.html&quot;&gt;My Hero&lt;/a&gt; (2009/03/16 22:32)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/03/noch-ein-jenga-hochhaus.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/03/noch-ein-jenga-hochhaus.html&quot;&gt;noch ein Jenga-Hochhaus&lt;/a&gt; (2009/03/10 22:24)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/01/bunnies.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/01/bunnies.html&quot;&gt;Bunnies&lt;/a&gt; (2009/01/12 11:05)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2009/01/rettungsring-am-lwengehege.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2009/01/rettungsring-am-lwengehege.html&quot;&gt;Rettungsring am Löwengehege&lt;/a&gt; (2009/01/04 18:59)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2008/12/frank-schubert-was-last-civilian.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2008/12/frank-schubert-was-last-civilian.html&quot;&gt;&amp;#039;Frank Schubert&amp;#039; was the last civilian lighthouse keeper in the United States.&lt;/a&gt; (2008/12/30 23:03)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://schokiladeblog.blogspot.com/2008/11/jenga-hochhaus.html&quot; class=&quot;urlextern&quot; title=&quot;http://schokiladeblog.blogspot.com/2008/11/jenga-hochhaus.html&quot;&gt;Jenga-Hochhaus&lt;/a&gt; (2008/11/18 22:27)&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;Blog&quot; [108-212] --&gt;
&lt;h1&gt;&lt;a name=&quot;shared&quot; id=&quot;shared&quot;&gt;Shared&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul class=&quot;rss&quot;&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1925&quot; class=&quot;urlextern&quot; title=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1925&quot;&gt;July 01, 2010&lt;/a&gt; (2010/07/01 06:00)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1915&quot; class=&quot;urlextern&quot; title=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1915&quot;&gt;June 21, 2010&lt;/a&gt; (2010/06/21 06:00)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1911&quot; class=&quot;urlextern&quot; title=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1911&quot;&gt;June 17, 2010&lt;/a&gt; (2010/06/17 06:00)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1905&quot; class=&quot;urlextern&quot; title=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1905&quot;&gt;June 11, 2010&lt;/a&gt; (2010/06/11 06:00)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1904&quot; class=&quot;urlextern&quot; title=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1904&quot;&gt;June 10, 2010&lt;/a&gt; (2010/06/10 06:00)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/~r/GeekAndPoke/~3/kUOBm5RpFEI/how-to-become-an-awesome-coder-part-1.html&quot; class=&quot;urlextern&quot; title=&quot;http://feedproxy.google.com/~r/GeekAndPoke/~3/kUOBm5RpFEI/how-to-become-an-awesome-coder-part-1.html&quot;&gt;How To Become An Awesome Coder - Part 1&lt;/a&gt; (2010/06/08 20:48)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://fuckyouverymuch.dk/post/676646735&quot; class=&quot;urlextern&quot; title=&quot;http://fuckyouverymuch.dk/post/676646735&quot;&gt;We love you.&lt;/a&gt; (2010/06/08 15:51)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1901&quot; class=&quot;urlextern&quot; title=&quot;http://www.smbc-comics.com/index.php?db=comics&amp;amp;id=1901&quot;&gt;June 07, 2010&lt;/a&gt; (2010/06/07 06:00)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://trudelnudel.de/roller/public/entry/fragekatalog&quot; class=&quot;urlextern&quot; title=&quot;http://trudelnudel.de/roller/public/entry/fragekatalog&quot;&gt;Fragekatalog&lt;/a&gt; (2010/06/02 23:02)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://trudelnudel.de/roller/public/entry/eine_acht_fuer_lena&quot; class=&quot;urlextern&quot; title=&quot;http://trudelnudel.de/roller/public/entry/eine_acht_fuer_lena&quot;&gt;Eine Acht fuer Lena&lt;/a&gt; (2010/06/02 22:58)&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr /&gt;

&lt;p&gt;

Powered by &lt;a href=&quot;http://www.schokilade.de/wiki/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;, 230V &lt;a href=&quot;http://www.schokilade.de/wiki/_detail/schuko3.jpg?id=start&quot; class=&quot;media&quot; title=&quot;schuko3.jpg&quot;&gt;&lt;img src=&quot;http://www.schokilade.de/wiki/_media/schuko3.jpg&quot; class=&quot;media&quot; title=&quot;schuko3.jpg&quot; alt=&quot;schuko3.jpg&quot; /&gt;&lt;/a&gt; and &lt;a href=&quot;http://www.netclusive.de&quot; class=&quot;urlextern&quot; title=&quot;http://www.netclusive.de&quot;&gt;netclusive.de&lt;/a&gt;

&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Shared&quot; [213-] --&gt;</description>
    </item>
    <item rdf:about="http://www.schokilade.de/wiki/kerberos/kerberos_voraussetzungen">
        <dc:format>text/html</dc:format>
        <dc:date>2009-06-29T22:25:43+02:00</dc:date>
        <dc:creator>Frank Schubert</dc:creator>
        <title>kerberos:kerberos_voraussetzungen</title>
        <link>http://www.schokilade.de/wiki/kerberos/kerberos_voraussetzungen</link>
        <description>


&lt;h1&gt;&lt;a name=&quot;kerberos_voraussetzungen&quot; id=&quot;kerberos_voraussetzungen&quot;&gt;Kerberos Voraussetzungen&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Alle beteiligten Hosts haben korrekte &lt;acronym title=&quot;Domain Name System&quot;&gt;DNS&lt;/acronym&gt; A und PTR Einträge. &lt;sup&gt;&lt;a href=&quot;#fn__1&quot; name=&quot;fnt__1&quot; id=&quot;fnt__1&quot; class=&quot;fn_top&quot;&gt;1)&lt;/a&gt;&lt;/sup&gt; siehe: &lt;a href=&quot;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#kerbdns&quot; class=&quot;urlextern&quot; title=&quot;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#kerbdns&quot;&gt;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#kerbdns&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Die Kerberos-Realm stimmt mit der Domain überein. (z.b. Domain foo.org und Realm FOO.ORG) siehe: &lt;a href=&quot;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#realms&quot; class=&quot;urlextern&quot; title=&quot;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#realms&quot;&gt;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#realms&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Synchrone Uhren. siehe: &lt;a href=&quot;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#syncclock&quot; class=&quot;urlextern&quot; title=&quot;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#syncclock&quot;&gt;http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html#syncclock&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Kerberos Voraussetzungen&quot; [1-526] --&gt;
&lt;h2&gt;&lt;a name=&quot;web_browser_configuration&quot; id=&quot;web_browser_configuration&quot;&gt;Web browser configuration&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Web browser configuration&quot; [527-564] --&gt;
&lt;h3&gt;&lt;a name=&quot;internet_explorer&quot; id=&quot;internet_explorer&quot;&gt;Internet Explorer&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
The Webserver name (or the entire domain) has to be in the Local intranet zone. See &lt;a href=&quot;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsecure/html/http-sso-1.asp&quot; class=&quot;urlextern&quot; title=&quot;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsecure/html/http-sso-1.asp&quot;&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsecure/html/http-sso-1.asp&lt;/a&gt;, ”local intranet sites”. You could add
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;http://*.yourdomain.com/&lt;/pre&gt;

&lt;p&gt;
to the zone.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Internet Explorer&quot; [565-858] --&gt;
&lt;h3&gt;&lt;a name=&quot;mozilla_firefox&quot; id=&quot;mozilla_firefox&quot;&gt;Mozilla Firefox&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
Add your domain (or webserver&amp;#039;s FQDN) to &lt;strong&gt;network.negotiate-auth.trusted-uris&lt;/strong&gt;, for example add ”.yourdomain.com”.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Mozilla Firefox&quot; [859-] --&gt;&lt;div class=&quot;footnotes&quot;&gt;
&lt;div class=&quot;fn&quot;&gt;&lt;sup&gt;&lt;a href=&quot;#fnt__1&quot; id=&quot;fn__1&quot; name=&quot;fn__1&quot; class=&quot;fn_bot&quot;&gt;1)&lt;/a&gt;&lt;/sup&gt; 
Verwendet werden gethostbyname() und gethostbyaddr()!&lt;/div&gt;
&lt;/div&gt;
</description>
    </item>
    <item rdf:about="http://www.schokilade.de/wiki/kerberos/kerberos_implementation_links">
        <dc:format>text/html</dc:format>
        <dc:date>2009-06-29T22:15:06+02:00</dc:date>
        <dc:creator>Frank Schubert</dc:creator>
        <title>kerberos:kerberos_implementation_links</title>
        <link>http://www.schokilade.de/wiki/kerberos/kerberos_implementation_links</link>
        <description>


&lt;h1&gt;&lt;a name=&quot;kerberos_implementation_links&quot; id=&quot;kerberos_implementation_links&quot;&gt;Kerberos Implementation Links&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Providing Active Directory authentication via Kerberos protocol in Apache: &lt;a href=&quot;http://support.microsoft.com/?scid=kb%3Ben-us%3B555092&amp;amp;x=11&amp;amp;y=11&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/?scid=kb%3Ben-us%3B555092&amp;amp;x=11&amp;amp;y=11&quot;&gt;http://support.microsoft.com/?scid=kb%3Ben-us%3B555092&amp;amp;x=11&amp;amp;y=11&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Apache with mod_auth_kerb and Windows Server: &lt;a href=&quot;http://port25.technet.com/archive/2008/01/25/technical-analysis-apache-with-mod-auth-kerb-and-windows-server.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://port25.technet.com/archive/2008/01/25/technical-analysis-apache-with-mod-auth-kerb-and-windows-server.aspx&quot;&gt;http://port25.technet.com/archive/2008/01/25/technical-analysis-apache-with-mod-auth-kerb-and-windows-server.aspx&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
    </item>
    <item rdf:about="http://www.schokilade.de/wiki/kerberos/start">
        <dc:format>text/html</dc:format>
        <dc:date>2009-06-29T22:07:25+02:00</dc:date>
        <dc:creator>Frank Schubert</dc:creator>
        <title>kerberos:start</title>
        <link>http://www.schokilade.de/wiki/kerberos/start</link>
        <description>


&lt;h1&gt;&lt;a name=&quot;beschreibung&quot; id=&quot;beschreibung&quot;&gt;Beschreibung&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
Anleitung mit dem Ziel die Anmeldung in Confluence mit Windows AD Kerberos Ticket herzustellen.
&lt;/p&gt;

&lt;p&gt;
Welche Voraussetzungen bestehen um Kerberos erfolgreich umzusetzen?
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.schokilade.de/wiki/kerberos/kerberos_voraussetzungen&quot; class=&quot;wikilink1&quot; title=&quot;kerberos:kerberos_voraussetzungen&quot;&gt;Kerberos Voraussetzungen&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.schokilade.de/wiki/kerberos/kerberos_implementation_links&quot; class=&quot;wikilink1&quot; title=&quot;kerberos:kerberos_implementation_links&quot;&gt;Kerberos Implementation Links&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
    </item>
    <item rdf:about="http://www.schokilade.de/wiki/windows_tipps">
        <dc:format>text/html</dc:format>
        <dc:date>2009-06-29T21:47:02+02:00</dc:date>
        <dc:creator>Frank Schubert</dc:creator>
        <title>windows_tipps</title>
        <link>http://www.schokilade.de/wiki/windows_tipps</link>
        <description>


&lt;h1&gt;&lt;a name=&quot;cmd&quot; id=&quot;cmd&quot;&gt;cmd&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;cmd&quot; [1-18] --&gt;
&lt;h2&gt;&lt;a name=&quot;netzwerk&quot; id=&quot;netzwerk&quot;&gt;Netzwerk&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Netzwerk&quot; [19-39] --&gt;
&lt;h3&gt;&lt;a name=&quot;hostname_anzeigen&quot; id=&quot;hostname_anzeigen&quot;&gt;Hostname anzeigen&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;hostname&lt;/pre&gt;
&lt;pre class=&quot;code&quot;&gt;echo %COMPUTERNAME%&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Hostname anzeigen&quot; [40-102] --&gt;
&lt;h1&gt;&lt;a name=&quot;resource_kit&quot; id=&quot;resource_kit&quot;&gt;Resource Kit&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en&quot; class=&quot;urlextern&quot; title=&quot;http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en&quot;&gt;http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Resource Kit&quot; [103-] --&gt;</description>
    </item>
    <item rdf:about="http://www.schokilade.de/wiki/windows">
        <dc:format>text/html</dc:format>
        <dc:date>2009-06-29T21:28:53+02:00</dc:date>
        <dc:creator>Frank Schubert</dc:creator>
        <title>windows</title>
        <link>http://www.schokilade.de/wiki/windows</link>
        <description>


&lt;h1&gt;&lt;a name=&quot;links&quot; id=&quot;links&quot;&gt;Links&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
Sammlung nützlicher &lt;a href=&quot;http://www.schokilade.de/wiki/windows_tipps&quot; class=&quot;wikilink1&quot; title=&quot;windows_tipps&quot;&gt;Windows Tipps&lt;/a&gt;.
&lt;/p&gt;

&lt;p&gt;
(veraltet) &lt;a href=&quot;http://www.schokilade.de/wiki/windows/sus&quot; class=&quot;wikilink1&quot; title=&quot;windows:sus&quot;&gt;Informationen&lt;/a&gt; zu Microsofts kostenlosen Patchverteilungssystem &lt;strong&gt;SUS&lt;/strong&gt;.

&lt;/p&gt;

&lt;/div&gt;
</description>
    </item>
</rdf:RDF>
