<?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>my knowledge rack &#187; Linux</title>
	<atom:link href="http://ww2624.awi2.de/blog2/?feed=rss2&#038;tag=linux" rel="self" type="application/rss+xml" />
	<link>http://ww2624.awi2.de/blog2</link>
	<description>Probleme aus Studium und Alltag</description>
	<lastBuildDate>Sat, 17 Jul 2010 13:04:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ubuntu 9 (Jaunty) &#8211; Dokument/Datei als PDF drucken</title>
		<link>http://ww2624.awi2.de/blog2/?p=68</link>
		<comments>http://ww2624.awi2.de/blog2/?p=68#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:34:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[drucken]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=68</guid>
		<description><![CDATA[Heute habe ich mich mal um das Problem gekümmert, dass das Drucken eines Dokuments als PDF unter Ubuntu noch nicht so funktioniert hat wie ich mir das vorstelle. Zunächst habe ich das entsprechend benötigte Paket ausfindig gemacht und installiert: # Deinstallieren, falls man davor zuviel rumgespielt hat sudo apt-get remove cups-pdf # Paket neu installieren [...]]]></description>
			<content:encoded><![CDATA[<p>Heute habe ich mich mal um das Problem gekümmert, dass das Drucken eines Dokuments als PDF unter Ubuntu noch nicht so funktioniert hat wie ich mir das vorstelle. Zunächst habe ich das entsprechend benötigte Paket ausfindig gemacht und installiert:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Deinstallieren, falls man davor zuviel rumgespielt hat</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> remove cups-pdf
<span style="color: #666666; font-style: italic;"># Paket neu installieren</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> cups-pdf</pre></div></div>

<p>In der Datei  /etc/cups/cups-pdf.conf ist der Speicherpfad gespeichert, der für die erzeugten PDF benutzt wird. Dies ist in der ersten (nicht zu den Kommentaren gehörenden) Zeile zu sehen: <code>Out ${HOME}/PDF</code>.</p>
<p>Als Standardeinstellung der Ordner PDF im Homeverzeichnis des Benutzers festgelegt.<br />
<strong>Wichtig dabei ist, dass dieser Ordner erst erstellt werden muss, damit das Drucken auch funktioniert.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: apt-get update GPG error NO_PUBKEY</title>
		<link>http://ww2624.awi2.de/blog2/?p=60</link>
		<comments>http://ww2624.awi2.de/blog2/?p=60#comments</comments>
		<pubDate>Mon, 12 Oct 2009 19:45:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[pgp]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=60</guid>
		<description><![CDATA[Problem: Nach dem hinzufügen neuer Paketquellen liefert der Kommandozeilenbefehl apt-get update die folgende Fehlermeldung: GPG error: : Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY D2BF4AA309C5B094 W: Probieren Sie »apt-get update«, um diese Probleme zu korrigieren. Lösung ist es den key manuell zu besorgen: gpg --keyserver subkeys.pgp.net --recv-keys [...]]]></description>
			<content:encoded><![CDATA[<p>Problem: Nach dem hinzufügen neuer Paketquellen liefert  der Kommandozeilenbefehl
<pre>apt-get update</pre>
<p> die folgende Fehlermeldung:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">GPG error: : Die folgenden Signaturen konnten nicht überprüft werden, 
weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY D2BF4AA309C5B094
W: Probieren Sie »<span style="color: #c20cb9; font-weight: bold;">apt-get</span> update«, um diese Probleme zu korrigieren.</pre></div></div>

<p>Lösung ist es den key manuell zu besorgen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gpg <span style="color: #660033;">--keyserver</span> subkeys.pgp.net <span style="color: #660033;">--recv-keys</span> 09C5B094   
<span style="color: #666666; font-style: italic;">#Hier die letzten 8 Ziffern der oben genannten Fehlermeldung verwenden</span>
<span style="color: #666666; font-style: italic;"># das Importieren kann nun einige Zeit dauern</span>
<span style="color: #666666; font-style: italic;"># (evtl. kann man dies durch einen anderen keyserver beschleunigen)</span>
gpg <span style="color: #660033;">--armor</span> <span style="color: #660033;">--export</span> 09C5B094 <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> add -</pre></div></div>

<p>Danach sollte der apt-get Befehl wieder durchlaufen.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=60</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
