{"id":8379,"date":"2025-10-07T12:26:20","date_gmt":"2025-10-07T10:26:20","guid":{"rendered":"https:\/\/speefak.spdns.de\/oss_lifestyle\/?p=8379"},"modified":"2025-10-07T12:26:20","modified_gmt":"2025-10-07T10:26:20","slug":"firefox-profil-nach-einem-update-nicht-mehr-verwendbar","status":"publish","type":"post","link":"https:\/\/speefak.spdns.de\/oss_lifestyle\/firefox-profil-nach-einem-update-nicht-mehr-verwendbar\/","title":{"rendered":"Firefox-Profil nach einem Update nicht mehr verwendbar"},"content":{"rendered":"<p>Nach einem Update von Mozilla Firefox kann es vorkommen, dass das bisherige Benutzerprofil nicht mehr geladen wird. Stattdessen erscheint folgende Meldung:<\/p>\n<blockquote><p><em>Using an older version of Firefox can corrupt bookmarks and browsing history already saved to an existing Firefox profile. To protect your information, create a new profile for this installation of Firefox.<\/em><\/p><\/blockquote>\n<p>Diese Mitteilung weist darauf hin, dass das Profil bereits mit einer neueren Firefox-Version verwendet wurde. Um Datenbesch\u00e4digungen zu verhindern, blockiert Firefox den Zugriff mit einer \u00e4lteren Version. Lesezeichen, Chronik und Passw\u00f6rter bleiben jedoch weiterhin im urspr\u00fcnglichen Profil erhalten.<\/p>\n<hr \/>\n<h2>1. Ermittlung der zuletzt verwendeten Version<\/h2>\n<p>Im Profilverzeichnis befindet sich die Datei <code>compatibility.ini<\/code>. Mit folgendem Befehl l\u00e4sst sich die zuletzt verwendete Firefox-Version feststellen:<\/p>\n<pre class=\"lang:default decode:true\">for f in ~\/.mozilla\/firefox\/*\/compatibility.ini; do\r\n    echo \"Profil: $(dirname \"$f\")\"\r\n    grep -E 'LastVersion|LastPlatformDir' \"$f\"\r\n    echo \"-------------------------\"\r\ndone\r\n<\/pre>\n<p>Beispielausgabe:<\/p>\n<pre class=\"lang:default decode:true\">Profil: \/home\/speefak\/.mozilla\/firefox\/firefox-opt-default\r\nLastVersion=143.0.3_20250929153833\/20250929153833\r\nLastPlatformDir=\/home\/opt\/firefox\r\n<\/pre>\n<hr \/>\n<h2>2. Grunds\u00e4tzliche Empfehlung: Sicherung des Profils<\/h2>\n<p>Vor jeglichen \u00c4nderungen am Profilverzeichnis sollte eine vollst\u00e4ndige Sicherung erstellt werden. Dies verhindert Datenverlust im Falle eines Fehlers. Eine einfache M\u00f6glichkeit ist die Archivierung mit <code>tar<\/code>:<\/p>\n<pre class=\"lang:default decode:true \">tar -czf firefox-profile-backup.tar.gz ~\/.mozilla\/firefox\/<\/pre>\n<p>&nbsp;<\/p>\n<p>Damit wird das gesamte Firefox-Verzeichnis komprimiert und gesichert.<\/p>\n<hr \/>\n<h2>3. Vorgehensm\u00f6glichkeiten<\/h2>\n<h3>a) Installation der passenden oder einer neueren Firefox-Version<\/h3>\n<p>Die zuverl\u00e4ssigste Methode besteht darin, diejenige Firefox-Version zu installieren, mit der das Profil zuletzt genutzt wurde \u2013 oder eine aktuellere.<br \/>\nBeispiel f\u00fcr Version\u00a0143.0.3<\/p>\n<pre class=\"lang:default decode:true\">wget https:\/\/ftp.mozilla.org\/pub\/firefox\/releases\/119.0.1\/linux-x86_64\/de\/firefox-143.0.3.tar.bz2\r\ntar xjf firefox-143.0.3.tar.bz2 \r\n.\/firefox\/firefox -P<\/pre>\n<hr \/>\n<h3>b) Erzwingen der Nutzung mit einer \u00e4lteren Version (nicht empfohlen)<\/h3>\n<p>Soll weiterhin eine \u00e4ltere ESR-Version genutzt werden, kann Firefox mit folgender Option gestartet werden:<\/p>\n<pre><code class=\"language-bash\">firefox --allow-downgrade -P\r\n<\/code><\/pre>\n<p>Dabei besteht jedoch das Risiko, dass Datenbanken (z. B. f\u00fcr Lesezeichen oder Chronik) besch\u00e4digt werden.<\/p>\n<hr \/>\n<h3>c) Anlegen eines neuen Profils und Import vorhandener Daten<\/h3>\n<p>Falls ein Wechsel auf die aktuelle ESR-Version dauerhaft gew\u00fcnscht ist, empfiehlt sich das Anlegen eines neuen Profils mit anschlie\u00dfendem Import der wichtigsten Dateien aus dem alten Profil:<\/p>\n<ul>\n<li><code>places.sqlite<\/code> (Lesezeichen und Chronik)<\/li>\n<li><code>logins.json<\/code> und <code>key4.db<\/code> (gespeicherte Zugangsdaten)<\/li>\n<li><code>extensions\/<\/code> (installierte Add-ons)<\/li>\n<\/ul>\n<hr \/>\n<h2>4. Schnelll\u00f6sung f\u00fcr erfahrene Anwender<\/h2>\n<p>F\u00fcr ge\u00fcbte Nutzer, die nur die wesentlichen Befehle ben\u00f6tigen:<\/p>\n<pre class=\"\"># Backup anlegen\r\ntar -czf firefox-profile-backup.tar.gz ~\/.mozilla\/firefox\/\r\n\r\n# letzte Version ermitteln\r\nver=$(grep LastAppVersion ~\/.mozilla\/firefox\/*.default*\/compatibility.ini | cut -d= -f2)\r\n\r\n# Firefox-Version laden und starten\r\nwget https:\/\/ftp.mozilla.org\/pub\/firefox\/releases\/$ver\/linux-x86_64\/de\/firefox-$ver.tar.bz2\r\ntar xjf firefox-$ver.tar.bz2\r\n.\/firefox\/firefox -P\r\n<\/pre>\n<p>Optional (nicht empfohlen):<\/p>\n<pre class=\"\">firefox --allow-downgrade -P\r\n<\/pre>\n<p>Vor jeder Bearbeitung sollte das Profil vollst\u00e4ndig gesichert werden. Die bevorzugte L\u00f6sung ist die Installation derselben oder einer aktuelleren Firefox-Version. Das Erzwingen mit &#8211;allow-downgrade sollte nur im Ausnahmefall in Betracht gezogen werden.<\/p>\n<hr \/>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-2821 alignleft\" src=\"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-content\/uploads\/2014\/08\/CC_BY_NC_SA.png\" alt=\"CC_BY_NC_SA\" width=\"65\" height=\"23\" \/>by Speefak<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nach einem Update von Mozilla Firefox kann es vorkommen, dass das bisherige Benutzerprofil nicht mehr geladen wird. Stattdessen erscheint folgende Meldung: Using an older version of Firefox can corrupt bookmarks and browsing history already saved to an existing Firefox profile. To protect your information, create a new profile for this installation of Firefox. Diese Mitteilung [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-8379","post","type-post","status-publish","format-standard","hentry","category-anleitungen"],"rttpg_featured_image_url":null,"rttpg_author":{"display_name":"speefak","author_link":"https:\/\/speefak.spdns.de\/oss_lifestyle\/author\/speefak_oss\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/speefak.spdns.de\/oss_lifestyle\/category\/anleitungen\/\" rel=\"category tag\">Anleitungen<\/a>","rttpg_excerpt":"Nach einem Update von Mozilla Firefox kann es vorkommen, dass das bisherige Benutzerprofil nicht mehr geladen wird. Stattdessen erscheint folgende Meldung: Using an older version of Firefox can corrupt bookmarks and browsing history already saved to an existing Firefox profile. To protect your information, create a new profile for this installation of Firefox. Diese Mitteilung&hellip;","_links":{"self":[{"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/posts\/8379","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/comments?post=8379"}],"version-history":[{"count":0,"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/posts\/8379\/revisions"}],"wp:attachment":[{"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/media?parent=8379"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/categories?post=8379"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/speefak.spdns.de\/oss_lifestyle\/wp-json\/wp\/v2\/tags?post=8379"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}