<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml"
>

<channel>
	<title>Tu was?</title>
	<atom:link href="http://www.tudas.de/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tudas.de/blog</link>
	<description>My public notepad - use at your own risk (Infos auf dieser Seite ohne jegliche Gewähr)</description>
	<lastBuildDate>Thu, 01 Dec 2011 21:51:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Convert HTML to Markdown with Pandoc</title>
		<link>http://www.tudas.de/blog/uncategorized/20111201_convert-html-to-markdown-with-pandoc</link>
		<comments>http://www.tudas.de/blog/uncategorized/20111201_convert-html-to-markdown-with-pandoc#comments</comments>
		<pubDate>Thu, 01 Dec 2011 21:40:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[unter ferner liefen]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/uncategorized/20111201_convert-html-to-markdown-with-pandoc</guid>
		<description><![CDATA[Be careful with this script. I am not experienced with scripting. You might delete something important! #!/bin/sh EXPECTED_ARGS=1 E_BADARGS=65 if [ $# -ne $EXPECTED_ARGS ] then echo "Usage: `basename $0` {html file}" exit $E_BADARGS fi output=''`dirname "$1"`"/"`basename "$1"`'.md' #echo $output pandoc -f html -t markdown "$1" &#62; "$output" `open "$output"&#38;` exit 1 Get Pandoc]]></description>
			<content:encoded><![CDATA[<p><em>Be careful with this script. I am not experienced with scripting. You might delete something important!</em></p>

<pre><code>#!/bin/sh

EXPECTED_ARGS=1
E_BADARGS=65

if [ $# -ne $EXPECTED_ARGS ]
then
  echo "Usage: `basename $0` {html file}"
  exit $E_BADARGS
fi

output=''`dirname "$1"`"/"`basename "$1"`'.md'
#echo $output

pandoc -f html -t markdown "$1" &gt; "$output"

`open "$output"&amp;`
exit 1
</code></pre>

<p>Get <a href="http://johnmacfarlane.net/pandoc/">Pandoc</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/uncategorized/20111201_convert-html-to-markdown-with-pandoc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone not recognized by iTunes</title>
		<link>http://www.tudas.de/blog/uncategorized/20111130_iphone-not-recognized-by-itunes</link>
		<comments>http://www.tudas.de/blog/uncategorized/20111130_iphone-not-recognized-by-itunes#comments</comments>
		<pubDate>Wed, 30 Nov 2011 12:56:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[unter ferner liefen]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/uncategorized/20111130_iphone-not-recognized-by-itunes</guid>
		<description><![CDATA[in Terminal do… sudo tar -cvzf ~/Desktop/iTunes.app.tar.gz /Applications/iTunes.app sudo mv /System/Library/Extensions/iTunesPhoneDriver.kext ~/Desktop/ sudo mv /Library/Receipts/AppleMobileDeviceSupport.pkg ~/Desktop/ restart then go to http://apple.com/itunes to download the current Version of iTunes]]></description>
			<content:encoded><![CDATA[<p>in Terminal do…</p>

<pre><code>sudo tar -cvzf ~/Desktop/iTunes.app.tar.gz /Applications/iTunes.app
sudo mv /System/Library/Extensions/iTunesPhoneDriver.kext ~/Desktop/
sudo mv /Library/Receipts/AppleMobileDeviceSupport.pkg ~/Desktop/
</code></pre>

<p>restart</p>

<p>then go to <a href="http://apple.com/itunes">http://apple.com/itunes</a> to download the current Version of iTunes</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/uncategorized/20111130_iphone-not-recognized-by-itunes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time Machine: Alte Backups lassen sich nicht löschen</title>
		<link>http://www.tudas.de/blog/uncategorized/20111121_time-machine-alte-backups-lassen-sich-nicht-loschen</link>
		<comments>http://www.tudas.de/blog/uncategorized/20111121_time-machine-alte-backups-lassen-sich-nicht-loschen#comments</comments>
		<pubDate>Mon, 21 Nov 2011 10:12:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[unter ferner liefen]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/uncategorized/20111121_time-machine-alte-backups-lassen-sich-nicht-loschen</guid>
		<description><![CDATA[Alte Backups lassen sich weder über den Finder noch über die Kommandozeile löschen. ACL (Access Controll Lists) und Benutzerrechte lassen sich nicht anpassen. Es hilft für die Festplatte, auf dem sich das Backup befindet, temporär ACL zu deaktivieren: sudo fsaclctl -p /Volumes/Time\ Machine\ Backup\ Volume -d Danach kann man alte Backups oder hängengebliebene *.inProgress-Dateien löschen. [...]]]></description>
			<content:encoded><![CDATA[<p>Alte Backups lassen sich weder über den Finder noch über die Kommandozeile löschen.</p>

<p>ACL (Access Controll Lists) und Benutzerrechte lassen sich nicht anpassen.
Es hilft für die Festplatte, auf dem sich das Backup befindet, temporär ACL zu deaktivieren:</p>

<pre><code>sudo fsaclctl -p /Volumes/Time\ Machine\ Backup\ Volume -d
</code></pre>

<p>Danach kann man alte Backups oder hängengebliebene *.inProgress-Dateien löschen.</p>

<p>Um ACL wieder zu aktivieren, benutzt man…</p>

<pre><code>sudo fsaclctl -p /Volumes/Time\ Machine\ Backup\ Volume -e
</code></pre>

<p><strong>Update:</strong> Das betrifft nur Mac Os X Leopard. fsaclctl gibt es ab Snow Leopard nicht mehr.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/uncategorized/20111121_time-machine-alte-backups-lassen-sich-nicht-loschen/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes verweigert den Dienst nach Wiedereinspielung eines Backups</title>
		<link>http://www.tudas.de/blog/uncategorized/20111027_itunes-verweigert-den-dienst-nach-wiedereinspielung-eines-backups</link>
		<comments>http://www.tudas.de/blog/uncategorized/20111027_itunes-verweigert-den-dienst-nach-wiedereinspielung-eines-backups#comments</comments>
		<pubDate>Thu, 27 Oct 2011 10:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[unter ferner liefen]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/uncategorized/20111027_itunes-verweigert-den-dienst-nach-wiedereinspielung-eines-backups</guid>
		<description><![CDATA[Die Datei &#8220;iTunes Library&#8221; ist geschützt, befindet sich auf einem schreibgeschützten Volume oder Sie besitzen keine Schreibrechte für diese Datei. Mir hat es geholfen die Unix-Dateirechte zu korrigieren und alle ACLs zu löschen. In meinem Fall also: sudo chown -R macusername:staff /Volumes/Beefeleven/Music sudo chmod -R u+rw /Volumes/Beefeleven/Music sudo chmod -R -N /Volumes/Beefeleven/Music]]></description>
			<content:encoded><![CDATA[<blockquote>
  <p>Die Datei &#8220;iTunes Library&#8221; ist geschützt, befindet sich auf einem schreibgeschützten Volume oder Sie besitzen keine Schreibrechte für diese Datei.</p>
</blockquote>

<p>Mir hat es geholfen die Unix-Dateirechte zu korrigieren und alle ACLs zu löschen. In meinem Fall also:</p>

<pre><code>sudo chown -R macusername:staff /Volumes/Beefeleven/Music
sudo chmod -R u+rw /Volumes/Beefeleven/Music
sudo chmod -R -N /Volumes/Beefeleven/Music
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/uncategorized/20111027_itunes-verweigert-den-dienst-nach-wiedereinspielung-eines-backups/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sprachweiche mit .htaccess</title>
		<link>http://www.tudas.de/blog/uncategorized/20110218_sprachweiche-mit-htaccess</link>
		<comments>http://www.tudas.de/blog/uncategorized/20110218_sprachweiche-mit-htaccess#comments</comments>
		<pubDate>Fri, 18 Feb 2011 20:13:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dokumentation]]></category>
		<category><![CDATA[unter ferner liefen]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/?p=181</guid>
		<description><![CDATA[#redirect for english RewriteBase / RewriteCond %{QUERY_STRING} ^$ RewriteCond %{ENV:REDIRECT_STATUS} ^$ RewriteCond %{HTTP:Accept-Language} ^en [NC] #RewriteCond %{QUERY_STRING} ^$ RewriteRule ^$ /?L=1 [L] #redirect for german RewriteBase / RewriteCond %{QUERY_STRING} ^$ RewriteCond %{ENV:REDIRECT_STATUS} ^$ RewriteCond %{HTTP:Accept-Language} ^de [NC] RewriteRule ^$ /?L=0 [L]]]></description>
			<content:encoded><![CDATA[<pre>#redirect for english
RewriteBase /
RewriteCond %{QUERY_STRING} ^$
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{HTTP:Accept-Language} ^en [NC]
#RewriteCond %{QUERY_STRING} ^$
RewriteRule ^$ /?L=1 [L]

#redirect for german
RewriteBase /
RewriteCond %{QUERY_STRING} ^$
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{HTTP:Accept-Language} ^de [NC]
RewriteRule ^$ /?L=0 [L]
</pre>
 <p><a href="http://www.tudas.de/blog/?flattrss_redirect&amp;id=181&amp;md5=91171880fd40a66dc151244155e6aea2" title="Flattr" target="_blank"><img src="http://www.tudas.de/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/uncategorized/20110218_sprachweiche-mit-htaccess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>neue Datei mit Finder erzeugen</title>
		<link>http://www.tudas.de/blog/documentation/macosx/20110202_neue-datei-mit-finder-erzeugen</link>
		<comments>http://www.tudas.de/blog/documentation/macosx/20110202_neue-datei-mit-finder-erzeugen#comments</comments>
		<pubDate>Wed, 02 Feb 2011 12:30:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac Os X]]></category>
		<category><![CDATA[Produktivität]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/uncategorized/20110202_neue-datei-mit-finder-erzeugen</guid>
		<description><![CDATA[Mac Os X erlaubt per Menü die Erzeugung eines neuen Ordners, nicht aber die Erzeugung einer neuen Datei… Mit Automator kann man eine neue Aktion erstellen, die genau dieses tut: Automator starten Im Eingangsdialog Eigene wählen In der linken Spalte Dienstprogramme wählen In der mittleren Spalte Applescript ausführen doppelt klicken Das folgende Script in den [...]]]></description>
			<content:encoded><![CDATA[<p>Mac Os X erlaubt per Menü die Erzeugung eines neuen Ordners,
nicht aber die Erzeugung einer neuen Datei…</p>

<p><span id="more-177"></span>
Mit Automator kann man eine neue Aktion erstellen, die genau dieses tut:</p>

<ol>
<li>Automator starten</li>
<li>Im Eingangsdialog <em>Eigene</em> wählen</li>
<li>In der linken Spalte <em>Dienstprogramme</em> wählen</li>
<li>In der mittleren Spalte <em>Applescript ausführen</em> doppelt klicken</li>
<li><p>Das folgende Script in den Textbereich von <em>AppleScript ausführen</em> kopieren:</p>

<p>on run {input, parameters}
  tell application &#8220;Finder&#8221;
    set currentPath to insertion location as text
    set x to POSIX path of currentPath
  end tell
  return x
end run</p></li>
<li><p>Unter <em>Dienstprogramme</em> <em>Wert der Variablen festlegen</em> doppelt klicken</p></li>
<li>Auf das Menü <em>neue Variable…</em> klicken und den Namen der Variablen auf <em>CurrentFolder</em> setzen</li>
<li>Unter <em>Text</em> per Doppelklick <em>Neue Textdatei</em> hinzufügen</li>
<li>Die Variable <em>CurrentFolder</em> unten im Fenster auf die Auswahl <em>Ort:</em> ziehen</li>
<li>Im Abschnitt <em>Neue Textdatei</em> <em>Optionen</em> öffnen und <em>Diese Aktion beim Ausführen des Arbeitsablaufes anzeigen</em> ankreuzen</li>
<li>Arbeitsablauf <em>Als Plugin sichern</em> mit dem Namen <em>Neue Datei erstellen</em> für das Programm <em>Finder</em></li>
<li><p>Durch Rechtsklick auf einen Ordner kann man im Untermenü <em>mehr</em> im Untermenü <em>Automator</em> jetzt den neuen Arbeitsablauf <em>Neue Datei erstellen</em> erreichen</p>

<p>Alternativ kann man den Automator <em>Workflow</em> auch als Programm speichern und diese dann in den oberen Bereich eines <em>Finder</em>-Fensters ziehen.
Es kann dann von dort gestartet werden.</p></li>
</ol>

<p>Diese Beschreibung gilt für Max Os X 10.5 (Leopard). Unter Snow Leopard gibt es die Möglichkeit, <a href="http://blog.fosketts.net/2010/08/09/assign-keyboard-shortcut-applescript-automator-service/">einen <em>Workflow</em> auch über ein Tastenkürzel</a> zu starten.</p>

<p>Dank an <a href="http://www.macworld.com/article/151236/2010/05/createnewfileservice.html">Macworld</a> für die Anleitung auf Englisch.</p>
 <p><a href="http://www.tudas.de/blog/?flattrss_redirect&amp;id=177&amp;md5=46627389890965660ffbe51673bb1090" title="Flattr" target="_blank"><img src="http://www.tudas.de/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/documentation/macosx/20110202_neue-datei-mit-finder-erzeugen/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox &gt; 3.5 sendet Informationen über den Standort</title>
		<link>http://www.tudas.de/blog/privacy/20110127_firefox-3-5-sendet-informationen-uber-den-standort</link>
		<comments>http://www.tudas.de/blog/privacy/20110127_firefox-3-5-sendet-informationen-uber-den-standort#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:43:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Privatsphäre]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/?p=174</guid>
		<description><![CDATA[Ab Firefox 3.5 kann der Browser besuchten Webseiten Informationen über den eigenen Standort geben.]]></description>
			<content:encoded><![CDATA[<p>Ab <a href="http://www.mozilla.com/">Firefox</a> 3.5 kann der Browser besuchten Webseiten Informationen über den eigenen Standort geben. <a href="http://de.www.mozilla.com/de/firefox/geolocation/">Laut Mozilla</a> sendet er diese Informationen nicht automatisch, sondern fragt vorher nach. Wer sichergehen möchte, dass standortbezogene Informationen gar nicht erst gesendet werden, kann dieses über die <a href="about:config">erweiterte Konfiguration</a> über den Schlüssel <em>geo.enabled</em> deaktivieren. Eine detaillierte Beschreibung findet sich bei <a href="http://www.demogeek.com/2009/07/07/disable-location-awareness-feature-in-firefox-35/">demogeek</a>.</p>
 <p><a href="http://www.tudas.de/blog/?flattrss_redirect&amp;id=174&amp;md5=c4f6685c6fb352c51385faa1055eff4a" title="Flattr" target="_blank"><img src="http://www.tudas.de/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/privacy/20110127_firefox-3-5-sendet-informationen-uber-den-standort/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging with TextMate using Mardown</title>
		<link>http://www.tudas.de/blog/productivity/20110126_blogging-with-textmate-using-mardown</link>
		<comments>http://www.tudas.de/blog/productivity/20110126_blogging-with-textmate-using-mardown#comments</comments>
		<pubDate>Wed, 26 Jan 2011 22:19:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Produktivität]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/?p=167</guid>
		<description><![CDATA[Turn on xml-rpc in your WordPress settings Install a Markdown plugin like Markdown for WordPress and bbPress Watch this video on how to use the Blogging.bundle that ships with TextMate Blog!]]></description>
			<content:encoded><![CDATA[<ol>
<li>Turn on xml-rpc in your WordPress settings</li>
<li>Install a <a href="http://daringfireball.net/projects/markdown/syntax">Markdown</a> plugin like <a href="http://mitcho.com/code/">Markdown for WordPress and bbPress</a></li>
<li>Watch this <a href="http://screencasts.textmate.org/blogging_take_two.mov">video</a> on how to use the Blogging.bundle that ships with TextMate</li>
<li>Blog!</li>
</ol>
 <p><a href="http://www.tudas.de/blog/?flattrss_redirect&amp;id=167&amp;md5=b3960629f8a9b67bbc6be989415e5581" title="Flattr" target="_blank"><img src="http://www.tudas.de/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/productivity/20110126_blogging-with-textmate-using-mardown/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://screencasts.textmate.org/blogging_take_two.mov" length="31736069" type="video/quicktime" />
		</item>
		<item>
		<title>Büro ausgeräumt</title>
		<link>http://www.tudas.de/blog/documentation/backup-and-restore/20110124_buro-ausgeraumt</link>
		<comments>http://www.tudas.de/blog/documentation/backup-and-restore/20110124_buro-ausgeraumt#comments</comments>
		<pubDate>Mon, 24 Jan 2011 15:32:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sichern und wiederherstellen]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/?p=164</guid>
		<description><![CDATA[Einem Kunden wurde das Büro ausgeräumt. Sie kamen vermutlich über den Nachbarn. Dort wurde schon vor einer Weile einmal eingebrochen. Nachdem die neuen Geräte da waren, haben Sie einfach noch einmal zugeschlagen. Ich habe schon gehört, dass Anlieferer manchmal mit Dieben zusammenarbeiten. Die wissen schliesslich wo der heisse Scheiss steht. Zum Glück gab es ein [...]]]></description>
			<content:encoded><![CDATA[<p>Einem Kunden wurde das Büro ausgeräumt. Sie kamen vermutlich über den Nachbarn. Dort wurde schon vor einer Weile einmal eingebrochen. Nachdem die neuen Geräte da waren, haben Sie einfach noch einmal zugeschlagen. Ich habe schon gehört, dass Anlieferer manchmal mit Dieben zusammenarbeiten. Die wissen schliesslich wo der heisse Scheiss steht.</p>

<p>Zum Glück gab es ein recht junges Time Machine Backup, das nicht mit im Büro lag. Nach 4 Stunden war das Büro wieder einsatzfähig.</p>
 <p><a href="http://www.tudas.de/blog/?flattrss_redirect&amp;id=164&amp;md5=28528d9fe4400616ebd6bd9cd9981376" title="Flattr" target="_blank"><img src="http://www.tudas.de/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/documentation/backup-and-restore/20110124_buro-ausgeraumt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>externer Monitor wird nicht erkannt</title>
		<link>http://www.tudas.de/blog/documentation/20110124_externer-monitor-wird-nicht-erkannt</link>
		<comments>http://www.tudas.de/blog/documentation/20110124_externer-monitor-wird-nicht-erkannt#comments</comments>
		<pubDate>Mon, 24 Jan 2011 15:06:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dokumentation]]></category>
		<category><![CDATA[Mac Os X]]></category>

		<guid isPermaLink="false">http://www.tudas.de/blog/?p=161</guid>
		<description><![CDATA[Plötzlich wird mein externer Monitor nicht erkannt. In der Konsole sehe ich: 24.01.11 15:36:06 [0x0-0xbb0bb].com.apple.systempreferences[27508] objc[27508]: Class O3Panel is implemented in both /System/Library/MonitorPanels/AppleDisplay.monitorPanels/Contents/Resources/Authorization.monitorPanel/Contents/MacOS/Authorization and /System/Library/MonitorPanels/AppleDisplay.monitorPanels/Contents/Resources/TVOptions.monitorPanel/Contents/MacOS/TVOptions. Using implementation from /System/Library/MonitorPanels/AppleDisplay.monitorPanels/Contents/Resources/TVOptions.monitorPanel/Contents/MacOS/TVOptions. Das TVPanel, was auch immer es sein mag, übernimmt also einfach die Kontrolle. Da mich TV momentan wenig interessiert, schmeisse ich es einfach &#8216;raus (auf den [...]]]></description>
			<content:encoded><![CDATA[<p>Plötzlich wird mein externer Monitor nicht erkannt. In der Konsole sehe ich:</p>

<pre>24.01.11 15:36:06 [0x0-0xbb0bb].com.apple.systempreferences[27508] objc[27508]: Class O3Panel is implemented in both /System/Library/MonitorPanels/AppleDisplay.monitorPanels/Contents/Resources/Authorization.monitorPanel/Contents/MacOS/Authorization and /System/Library/MonitorPanels/AppleDisplay.monitorPanels/Contents/Resources/TVOptions.monitorPanel/Contents/MacOS/TVOptions. Using implementation from /System/Library/MonitorPanels/AppleDisplay.monitorPanels/Contents/Resources/TVOptions.monitorPanel/Contents/MacOS/TVOptions. 

</pre>

<p>Das TVPanel, was auch immer es sein mag, übernimmt also einfach die Kontrolle. Da mich TV momentan wenig interessiert, schmeisse ich es einfach &#8216;raus (auf den Schreibtisch)</p>

<pre>sudo mv /System/Library/MonitorPanels/AppleDisplay.monitorPanels/Contents/Resources/TVOptions.monitorPanel/Contents/MacOS/TVOptions ~/Desktop/</pre>

<p>und starte neu – siehe da: der Monitor scheint wieder in altem Glanz…</p>
 <p><a href="http://www.tudas.de/blog/?flattrss_redirect&amp;id=161&amp;md5=ce7aae2eeac9f30dd476b1f24110b222" title="Flattr" target="_blank"><img src="http://www.tudas.de/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.tudas.de/blog/documentation/20110124_externer-monitor-wird-nicht-erkannt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

