Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Off Topic
    4. Pflege des Betriebssystems
    5. Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie'

    NEWS

    • Neues Video "KI im Smart Home" - ioBroker plus n8n

    • Neues Video über Aliase, virtuelle Geräte und Kategorien

    • Wir empfehlen: Node.js 22.x

    Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie'

    This topic has been deleted. Only users with topic management privileges can see it.
    • Michael Schmitt
      Michael Schmitt @Thomas Braun last edited by Michael Schmitt

      @thomas-braun

      was bedeutet denn diese Meldung? Hab ich gerade bei einem update erhalten.

      pi@raspberrypi:~ $ sudo apt update
      Hit:1 http://deb.debian.org/debian trixie InRelease
      Hit:2 http://deb.debian.org/debian-security trixie-security InRelease
      Hit:3 http://deb.debian.org/debian trixie-updates InRelease
      Hit:4 http://phoscon.de/apt/deconz generic InRelease
      Hit:5 http://archive.raspberrypi.com/debian trixie InRelease
      Hit:6 https://deb.nodesource.com/node_22.x nodistro InRelease
      All packages are up to date.
      Warning: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
      Notice: Missing Signed-By in the sources.list(5) entry for 'http://phoscon.de/apt/deconz'
      Notice: Missing Signed-By in the sources.list(5) entry for 'http://archive.raspberrypi.com/debian'
      
      
      Thomas Braun 1 Reply Last reply Reply Quote 0
      • Thomas Braun
        Thomas Braun Most Active @Michael Schmitt last edited by Thomas Braun

        @michael-schmitt

        Deine Quellen sind nicht richtig aufgesetzt und es gibt Probleme mit den Signaturen.
        Bei nodesource kannst du noch nichts machen, da gibt es noch keinen aktuellen Signaturschlüssel.

        Bei den anderen beiden Dateien musste mal schauen was drin steht.

        cat /etc/apt/sources.list.d/deconz*
        cat /etc/apt/sources.list.d/raspi*
        
        Michael Schmitt 1 Reply Last reply Reply Quote 0
        • Michael Schmitt
          Michael Schmitt @Thomas Braun last edited by Michael Schmitt

          @thomas-braun

          pi@raspberrypi:~ $ cat /etc/apt/sources.list.d/deconz*
          deb http://phoscon.de/apt/deconz             generic main
          Types: deb
          URIs: http://phoscon.de/apt/deconz/
          Suites: generic
          Components: main
          Signed-By:
          
          
          
          pi@raspberrypi:~ $ cat /etc/apt/sources.list.d/raspi*
          deb http://archive.raspberrypi.com/debian/ trixie main
          # Uncomment line below then 'apt-get update' to enable 'apt-get source'
          #deb-src http://archive.raspberrypi.com/debian/ trixie main
          Types: deb
          URIs: http://archive.raspberrypi.com/debian/
          Suites: trixie
          Components: main
          Signed-By:
          
          

          EDIT: war wohl ein "cat" zuviel

          Thomas Braun 1 Reply Last reply Reply Quote 0
          • Thomas Braun
            Thomas Braun Most Active @Michael Schmitt last edited by Thomas Braun

            @michael-schmitt

            Das sind Doubletten und Dateien im neuen Format.
            Lösch die deconz.list und deconz.sources und leg die neu an:

            wget -qO- http://phoscon.de/apt/deconz.pub.key | sudo gpg --dearmor -o /etc/apt/keyrings/deconz.gpg > /dev/null
            sudo sh -c "echo 'deb [signed-by=/etc/apt/keyrings/deconz.gpg] http://phoscon.de/apt/deconz $(lsb_release -cs) main' > /etc/apt/sources.list.d/deconz.list"
            

            Bei der raspi.sources fehlt der Eintrag zur Signatur. Und es ist wohl auch eine Doublette, es wird da auch noch eine raspi.list geben.

            raspi.sources schaut bei mir so aus:

            Types: deb
            URIs: http://archive.raspberrypi.com/debian/
            Suites: trixie
            Components: main
            Signed-By: /usr/share/keyrings/raspberrypi-archive-keyring.pgp
            
            Michael Schmitt 1 Reply Last reply Reply Quote 0
            • Michael Schmitt
              Michael Schmitt @Thomas Braun last edited by

              @thomas-braun

              muß dann die raspi.list auch weg ? und wie ändere ich die raspi.sources?

              Thomas Braun 1 Reply Last reply Reply Quote 0
              • Thomas Braun
                Thomas Braun Most Active @Michael Schmitt last edited by Thomas Braun

                @michael-schmitt sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                muß dann die raspi.list auch weg ?

                Ja, entweder .list oder .sources. Beides gleichzeitig führt zu Chaos.

                und wie ändere ich die raspi.sources?

                Mit einem Editor? nano?

                Michael Schmitt 1 Reply Last reply Reply Quote 0
                • Michael Schmitt
                  Michael Schmitt @Thomas Braun last edited by Michael Schmitt

                  @thomas-braun

                  pi@raspberrypi:~ $ sudo apt update
                  Ign:1 http://phoscon.de/apt/deconz trixie InRelease
                  Hit:2 http://archive.raspberrypi.com/debian trixie InRelease
                  Hit:3 http://deb.debian.org/debian trixie InRelease
                  Hit:4 http://deb.debian.org/debian-security trixie-security InRelease
                  Hit:5 http://deb.debian.org/debian trixie-updates InRelease
                  Err:6 http://phoscon.de/apt/deconz trixie Release
                    404  Not Found [IP: 144.76.96.194 80]
                  Hit:7 https://deb.nodesource.com/node_22.x nodistro InRelease
                  Error: The repository 'http://phoscon.de/apt/deconz trixie Release' does not have a Release file.
                  Notice: Updating from such a repository can't be done securely, and is therefore disabled by default.
                  Notice: See apt-secure(8) manpage for repository creation and user configuration details.
                  Warning: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                  pi@raspberrypi:~ $
                  
                  Thomas Braun 1 Reply Last reply Reply Quote 0
                  • Thomas Braun
                    Thomas Braun Most Active @Michael Schmitt last edited by

                    @michael-schmitt sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                    Error: The repository 'http://phoscon.de/apt/deconz trixie Release' does not have a Release file.

                    Es gibt noch keine Veröffentlichung für trixie. Stell da einstweilen bookworm ein.

                    Michael Schmitt Thomas Braun 2 Replies Last reply Reply Quote 0
                    • Michael Schmitt
                      Michael Schmitt @Thomas Braun last edited by Michael Schmitt

                      @thomas-braun

                      so aber jetzt

                      pi@raspberrypi:~ $ sudo apt update
                      Hit:1 http://phoscon.de/apt/deconz bookworm InRelease
                      Hit:2 http://deb.debian.org/debian trixie InRelease
                      Hit:3 http://deb.debian.org/debian-security trixie-security InRelease
                      Hit:4 http://archive.raspberrypi.com/debian trixie InRelease
                      Hit:5 http://deb.debian.org/debian trixie-updates InRelease
                      Hit:6 https://deb.nodesource.com/node_22.x nodistro InRelease
                      All packages are up to date.
                      Warning: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                      pi@raspberrypi:~ $
                      
                      
                      
                      Thomas Braun 1 Reply Last reply Reply Quote 0
                      • Thomas Braun
                        Thomas Braun Most Active @Michael Schmitt last edited by

                        @michael-schmitt

                        Jetzt passt es.

                        Michael Schmitt 1 Reply Last reply Reply Quote 1
                        • Michael Schmitt
                          Michael Schmitt @Thomas Braun last edited by

                          @thomas-braun viiieeeelllleeen Dank

                          da ist noch eine nodesource.list.bak drin, kann die auch weg ?

                          J 1 Reply Last reply Reply Quote 0
                          • J
                            Jan1 @Michael Schmitt last edited by

                            @michael-schmitt
                            Das ist da Buckup der vorherigen nodesource.list, kann weg, muss aber nicht.

                            1 Reply Last reply Reply Quote 1
                            • Thomas Braun
                              Thomas Braun Most Active @Thomas Braun last edited by Thomas Braun

                              @thomas-braun sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                              @michael-schmitt sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                              Error: The repository 'http://phoscon.de/apt/deconz trixie Release' does not have a Release file.

                              Es gibt noch keine Veröffentlichung für trixie. Stell da einstweilen bookworm ein.

                              Hab gerade nochmal geschaut, das Repo verwendet nun keine release names mehr sondern nur noch generische Pakete.
                              Ersetze also den Eintrag bookworm durch generic.

                              Michael Schmitt 1 Reply Last reply Reply Quote 1
                              • Michael Schmitt
                                Michael Schmitt @Thomas Braun last edited by

                                @thomas-braun erledigt 😉

                                pi@raspberrypi:~ $ sudo apt update
                                Hit:1 http://deb.debian.org/debian trixie InRelease
                                Hit:2 http://deb.debian.org/debian-security trixie-security InRelease
                                Hit:3 http://phoscon.de/apt/deconz generic InRelease
                                Hit:4 http://archive.raspberrypi.com/debian trixie InRelease
                                Hit:5 http://deb.debian.org/debian trixie-updates InRelease
                                Hit:6 https://deb.nodesource.com/node_22.x nodistro InRelease
                                All packages are up to date.
                                Warning: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                pi@raspberrypi:~ $
                                
                                
                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post

                                Support us

                                ioBroker
                                Community Adapters
                                Donate

                                878
                                Online

                                32.1k
                                Users

                                80.6k
                                Topics

                                1.3m
                                Posts

                                30
                                145
                                14342
                                Loading More Posts
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes
                                Reply
                                • Reply as topic
                                Log in to reply
                                Community
                                Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                The ioBroker Community 2014-2023
                                logo