<?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>dpkg Archive - Serverbiz</title>
	<atom:link href="https://www.serverbiz.de/tag/dpkg/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.serverbiz.de/tag/dpkg/</link>
	<description>vServer und Rootserver mieten</description>
	<lastBuildDate>Thu, 21 Apr 2022 20:53:57 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>

<image>
	<url>https://www.serverbiz.de/wp-content/uploads/2022/04/cropped-serverbiz-icon-500-32x32.png</url>
	<title>dpkg Archive - Serverbiz</title>
	<link>https://www.serverbiz.de/tag/dpkg/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Lösung: tar: unrecognized option &#8218;&#8211;warning=no-timestamp&#8216;</title>
		<link>https://www.serverbiz.de/losung-tar-unrecognized-option-warning-no-timestamp/</link>
					<comments>https://www.serverbiz.de/losung-tar-unrecognized-option-warning-no-timestamp/#respond</comments>
		
		<dc:creator><![CDATA[Serverbiz Team]]></dc:creator>
		<pubDate>Fri, 30 Mar 2012 08:08:42 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Serveradministration]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lösung]]></category>
		<category><![CDATA[no-timestamp]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[squeeze]]></category>
		<category><![CDATA[tar]]></category>
		<category><![CDATA[update]]></category>
		<guid isPermaLink="false">http://blog.europe-gaming.eu/?p=466</guid>

					<description><![CDATA[<p>Lösung für den Fehler &#8222;tar: unrecognized option &#8218;&#8211;warning=no-timestamp'&#8220; während des Updates mittels apt-get unter Linux Debian &#8211; dpkg Problem Fix ... <a class="cz_readmore" href="https://www.serverbiz.de/losung-tar-unrecognized-option-warning-no-timestamp/"><i class="fa fa-angle-right"></i><span>Mehr lesen</span></a></p>
<p>Der Beitrag <a rel="nofollow" href="https://www.serverbiz.de/losung-tar-unrecognized-option-warning-no-timestamp/">Lösung: tar: unrecognized option &#8218;&#8211;warning=no-timestamp&#8216;</a> erschien zuerst auf <a rel="nofollow" href="https://www.serverbiz.de">Serverbiz</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>Lösung für den Fehler &#8222;tar: unrecognized option &#8218;&#8211;warning=no-timestamp'&#8220; während des Updates mittels apt-get unter Linux Debian &#8211; dpkg Problem Fix</h3>
<p>Dieser Fehler tritt vor Allem dann auf, wenn man eine alte Linux Debian Version (z.B. Lenny) Mit Testing Repos (in der sources.list) upgradet. Das dumme ist, jetzt geht praktisch gar nichts mehr. Es ist nicht mehr möglich Pakete zu installieren, zu updaten, etc.</p>
<p>Hier die Lösung für das Problem:</p>
<p>Zuerst nennen wir die Datei /bin/tar um:</p>
<p>mv /bin/tar /bin/tar.original</p>
<p>Nun erstellen wir ein einfaches aber in diesem Fall sehr nützliches Script:</p>
<p>#!/bin/bash<br />
tar.original xf &#8211;</p>
<p>Danach geben wir dem Script noch die CHMOD Berechtigung, damit es ausgeführt werden kann.<br />
<span id="more-466"></span></p>
<p>chmod a+x /bin/tar</p>
<p>Zuletzt einfach die beiden beschädigten Pakete neu installieren.</p>
<p>apt-get install &#8211;reinstall dpkg<br />
apt-get install &#8211;reinstall tar</p>
<p>Jetzt sollten wir noch unbedingt unsere sources.list überprüfen, damit der Fehler beim nächsten Update nicht wieder auftritt.</p>
<p>nano /etc/apt/sources.list</p>
<p>Hier eine Beispiel- sources.list für Debian Squeeze 6.0 mit allen Repos, die im Normalfall benötigt werden:</p>
<p>###### Squeeze Sources List by Serverbiz.de<br />
###### Debian Main Repos<br />
deb http://ftp.de.debian.org/debian/ squeeze main contrib non-free<br />
deb-src http://ftp.de.debian.org/debian/ squeeze main contrib non-free</p>
<p>###### Debian Update Repos<br />
deb http://security.debian.org/ squeeze/updates main contrib non-free<br />
deb http://ftp.de.debian.org/debian/ squeeze-proposed-updates main contrib non-free<br />
deb-src http://security.debian.org/ squeeze/updates main contrib non-free<br />
deb-src http://ftp.de.debian.org/debian/ squeeze-proposed-updates main contrib non-free</p>
<p>Nachdem wir die sources.list abgespeichert haben führen wir ein Update aus, um sicher zu gehen, dass alle Pakete aktuell sind.</p>
<p>aptitude update &amp;&amp; aptitude safe-upgrade</p>
<p>Wir bestätigen eventuelle Updates mit y<br />
Falls wir von Lenny auf Debian Squeeze 6.0 Updaten möchten, führen wir ein dist-upgrade durch.</p>
<p>apt-get update<br />
apt-get dist-upgrade</p>
<p>Nun sollte unser System wieder rund laufen und alle Fehler behoben sein!</p>
<p>Bei Problem darf gerne ein Kommentar hinterlassen werden.</p>
<p>Der Beitrag <a rel="nofollow" href="https://www.serverbiz.de/losung-tar-unrecognized-option-warning-no-timestamp/">Lösung: tar: unrecognized option &#8218;&#8211;warning=no-timestamp&#8216;</a> erschien zuerst auf <a rel="nofollow" href="https://www.serverbiz.de">Serverbiz</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.serverbiz.de/losung-tar-unrecognized-option-warning-no-timestamp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
