Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. ioBroker Raspberry Pi 4 und SSD

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    ioBroker Raspberry Pi 4 und SSD

    This topic has been deleted. Only users with topic management privileges can see it.
    • AxelF1977
      AxelF1977 @paul53 last edited by

      @paul53 said in ioBroker Raspberry Pi 4 und SSD:

      @AxelF1977 sagte:

      Ich sehe nirgends die PARTUUID der SSD?

      Also ist es die PARTUUID, die vorher schon drin stand. Somit wurde wieder von SD Card gebootet.

      @AxelF1977 sagte in ioBroker Raspberry Pi 4 und SSD:

      sudo blkid ergibt:

      Hat die SSD keine Partitionen ? Du musst erst eine Partition erstellen ! (Schritte 4 - 8 ) und die Partition anschließend formatieren (Schritt 9).

      Ich glaube, ich hatte in dem Prozess keine Partition angelegt, danke für den Hinweis. Ich habe den Wald vor lauter Bäumen nicht gesehen. Ich berichte ob es das gelöst hat.

      1 Reply Last reply Reply Quote 0
      • AxelF1977
        AxelF1977 last edited by AxelF1977

        Ich kappier es nicht. ich habe jeden Schritt einzeln befolgt. Eine Partition ist da auf der SSD

        Disk /dev/sda: 119,2 GiB, 128035676160 bytes, 250069680 sectors
        Disk model: Portable SSD
        Units: sectors of 1 * 512 = 512 bytes
        Sector size (logical/physical): 512 bytes / 4096 bytes
        I/O size (minimum/optimal): 4096 bytes / 4096 bytes
        Disklabel type: dos
        Disk identifier: 0xd32ff59b
        
        Device     Boot Start       End   Sectors   Size Id Type
        /dev/sda1        2048 250069679 250067632 119,2G 83 Linux
        

        der neue Ordner erstellt und gemountet (Ordner hat anderen Namen). Und trotzdem nutzt er wieder die PARTUUID der SD Karte.

        sudo blkid
        /dev/mmcblk0p1: LABEL_FATBOOT="boot" LABEL="boot" UUID="F661-303B" TYPE="vfat" PARTUUID="52e4cf4c-01"
        /dev/mmcblk0p2: LABEL="rootfs" UUID="8d008fde-f12a-47f7-8519-197ea707d3d4" TYPE="ext4" PARTUUID="52e4cf4c-02"
        /dev/sda1: UUID="1ddb967e-9538-47ef-ada3-1b94069c74ea" TYPE="ext4" PARTUUID="d32ff59b-01"
        /dev/mmcblk0: PTUUID="52e4cf4c" PTTYPE="dos"
        
        
        cat /boot/cmdline.txt
        dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=PARTUUID=52e4cf4c-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
        

        Obwohl darin steht

        root=/dev/sda1 rootfstype=ext4 rootwait
        

        Auch das ansprechen direkt der PARTUUID ändert das nicht

        root=PARTUUID=d32ff59b-01 rootfstype=ext4 rootwait
        
        
        paul53 1 Reply Last reply Reply Quote 0
        • paul53
          paul53 @AxelF1977 last edited by paul53

          @AxelF1977 sagte in ioBroker Raspberry Pi 4 und SSD

          cat /boot/cmdline.txt
          dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=PARTUUID=52e4cf4c-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait

          Das root-Verzeichnis hast du nach dem Formatieren auf die SSD kopiert (Schritte 10 - 12) ?
          Dann ändere die /boot/cmdline.txt in

          dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=/dev/sda1 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
          

          Du musst die Datei beim Verlassen von nano auch speichern: CTRL + X und Y (when prompted to save).

          AxelF1977 1 Reply Last reply Reply Quote 0
          • AxelF1977
            AxelF1977 @paul53 last edited by

            @paul53 said in ioBroker Raspberry Pi 4 und SSD:

            @AxelF1977 sagte in ioBroker Raspberry Pi 4 und SSD

            cat /boot/cmdline.txt
            dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=PARTUUID=52e4cf4c-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait

            Das root-Verzeichnis hast du nach dem Formatieren auf die SSD kopiert (Schritte 10 - 12) ?
            Dann ändere die /boot/cmdline.txt in

            dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=/dev/sda1 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
            

            Du musst die Datei beim Verlassen von nano auch speichern: CTRL + X und Y (when prompted to save).

            Ich habe es mal in die von Dir gepostete Zeile geändert in der cmdline.txt

            Ergebnis

            dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=PARTUUID=52e4cf4c-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
            

            Also wieder die SD Karte.

            Ich habe das root Verzeichnis mit

            sudo rsync -avx / /media/meinordnername
            

            entsprechend in den neuen Ordner verschoben.

            paul53 2 Replies Last reply Reply Quote 0
            • paul53
              paul53 @AxelF1977 last edited by paul53

              @AxelF1977 sagte:

              geändert in der cmdline.txt
              Ergebnis

              Aber nicht erfolgreich gespeichert (Rechteproblem ?)

              sudo nano /boot/cmdline.txt
              cat /boot/cmdline.txt
              
              1 Reply Last reply Reply Quote 0
              • paul53
                paul53 @AxelF1977 last edited by paul53

                @AxelF1977 sagte in ioBroker Raspberry Pi 4 und SSD:

                Ich habe das root Verzeichnis mit
                sudo rsync -avx / /media/meinordnername
                entsprechend in den neuen Ordner verschoben.

                Dann müssen die root-Verzeichnisse zu sehen sein, wenn /dev/sda1 mounted ist.

                ls -l /media/meinordnername
                
                1 Reply Last reply Reply Quote 0
                • AxelF1977
                  AxelF1977 last edited by AxelF1977

                  Ich bin jetzt nochmal alles durchgegengen, von anfang an.

                  SD Karte neu aufgesetzt, neue Partition, gemountet

                  ls -l /media/SSDBroker
                  

                  ausgeführt, und die Abfrage war positiv.

                  cmdline.txt angepasst, geprüft, gespeichert.

                  Reboot

                  Jetzt sagt

                  ls -l /media/SSDBroker
                  

                  folgendes: insgesamt 0

                  Wenn das Laufwerk erneut mounte, dann kommt nach

                  ls -l /media/SSDBroker
                  

                  folgendes

                  insgesamt 88
                  drwxr-xr-x  2 root root  4096 Sep 27 23:10 bin
                  drwxr-xr-x  2 root root  4096 Sep 27 23:12 boot
                  drwxr-xr-x  2 root root  4096 Sep 27 23:18 dev
                  drwxr-xr-x 81 root root  4096 Sep 27 23:12 etc
                  drwxr-xr-x  4 root root  4096 Jul 23 18:30 home
                  drwxr-xr-x 16 root root  4096 Jul 10 02:09 lib
                  drwx------  2 root root 16384 Jul 10 02:20 lost+found
                  drwxr-xr-x  3 root root  4096 Sep 27 23:19 media
                  drwxr-xr-x  2 root root  4096 Jul 10 02:03 mnt
                  drwxr-xr-x  4 root root  4096 Jul 23 18:30 opt
                  dr-xr-xr-x  2 root root  4096 Jan  1  1970 proc
                  drwx------  2 root root  4096 Jul 10 02:03 root
                  drwxr-xr-x  2 root root  4096 Jul 23 18:41 run
                  drwxr-xr-x  2 root root  4096 Sep 27 23:10 sbin
                  drwxr-xr-x  2 root root  4096 Jul 10 02:03 srv
                  dr-xr-xr-x  2 root root  4096 Jan  1  1970 sys
                  drwxrwxrwt  8 root root  4096 Sep 27 23:12 tmp
                  drwxr-xr-x 10 root root  4096 Jul 10 02:03 usr
                  drwxr-xr-x 11 root root  4096 Jul 10 02:21 var
                  
                  

                  Also muss ich das Laufwerk bei jedem Neustart neu mounten? Hier lag wohl den ganzen Tag schon das Problem...

                  Allerdings ändert das nichts, an dem angezeigten verfügbaren Speicher in ioBroker

                  paul53 1 Reply Last reply Reply Quote 0
                  • paul53
                    paul53 @AxelF1977 last edited by

                    @AxelF1977 sagte:

                    Also muss ich das Laufwerk bei jedem Neustart neu mounten?

                    Nein, das ist nur die Kontrolle, ob das Kopieren des root-Verzeichnisses auf die SSD erfolgreich war.

                    @AxelF1977 sagte in ioBroker Raspberry Pi 4 und SSD:

                    Allerdings ändert das nichts, an dem angezeigten verfügbaren Speicher in ioBroker

                    Dann wird immer noch von SD Card gebootet. Was sagt ?

                    cat /boot/cmdline.txt
                    
                    AxelF1977 1 Reply Last reply Reply Quote 0
                    • AxelF1977
                      AxelF1977 @paul53 last edited by AxelF1977

                      @paul53 said in ioBroker Raspberry Pi 4 und SSD:

                      @AxelF1977 sagte:

                      Also muss ich das Laufwerk bei jedem Neustart neu mounten?

                      Nein, das ist nur die Kontrolle, ob das Kopieren des root-Verzeichnisses auf die SSD erfolgreich war.

                      @AxelF1977 sagte in ioBroker Raspberry Pi 4 und SSD:

                      Allerdings ändert das nichts, an dem angezeigten verfügbaren Speicher in ioBroker

                      Dann wird immer noch von SD Card gebootet. Was sagt ?

                      cat /boot/cmdline.txt
                      

                      Das gleiche wie vorher, es bleibt bei der PARTUUID von der SD Karte.

                      paul53 1 Reply Last reply Reply Quote 0
                      • paul53
                        paul53 @AxelF1977 last edited by paul53

                        @AxelF1977
                        Da die Bootpartition der SD Card FAT32-formatiert ist, kann die Datei cmdline.txt auch unter Windows mit Notepad++ (kein Notepad oder Wordpad !!) geändert werden.
                        Bitte auf die Statuszeile unten achten:
                        Notepad++LF.JPG

                        AxelF1977 1 Reply Last reply Reply Quote 0
                        • AxelF1977
                          AxelF1977 @paul53 last edited by AxelF1977

                          @paul53 said in ioBroker Raspberry Pi 4 und SSD:

                          @AxelF1977
                          Da die Bootpartition der SD Card FAT32-formatiert ist, kann die Datei cmdline.txt auch unter Windows mit Notepad++ (kein Notepad oder Wordpad !!) geändert werden.
                          Bitte auf die Statuszeile unten achten:
                          Notepad++LF.JPG

                          Ich hab mir die Datei mal im PSPAD Editor angesehen. Es steht genau das, was in der Konsole eingegeben wurde per SSH. Also an falschen Schreibrechten liegt es leider auch nicht .

                          Ich habe es erneut nochmal nach neu aufgesetzt, alles wieder von vorne. Es bleibt bei dem Ergebnis, es scheint nicht zuu funktionieren.

                          ioBroker ist erhablich schneller, aber der Speicherplatz der zur Verfügung steht, ist laut ioBroker immer nocvh der selber von der SD Karte.
                          Belügt mich ioBroker? Gibt es andere Wege das zu prüfen?

                          Es kann doch nicht sein, dass das System so so dagegen wehrt?

                          Was mir noch aufgefallen ist, mache ich den Raspi per WINSCP und SSH auf, dann ist da zwar der angelegte und gemountete Ordner SSDBroker, aber der ist leer...

                          d40f6d02-ed63-431e-bb92-9926a6d0147e-image.png

                          1 Reply Last reply Reply Quote 0
                          • AxelF1977
                            AxelF1977 last edited by

                            Ich habe es jetzt mit dieser Videoanleitung gemacht, ES GEHT.

                            https://www.youtube.com/watch?v=FM9wuFLufyA

                            Vielen Vielen Dank an @paul53 für die Ausdauer und Hilfe.

                            1 Reply Last reply Reply Quote 0
                            • R
                              RalfEngelberth last edited by RalfEngelberth

                              Hallo,
                              ich benötige mal eure Hilfe.

                              Ich habe ein bestehendes IoBroker mit einem auf einen Raspberry Pi 4
                              Mit diesem wollte ich auf eine neue SSD mit 400GB umziehen.

                              Als Vorlage zum Umziehen habe ich dieses Anleitung durchgeführt.

                              https://www.tomshardware.com/news/boot-raspberry-pi-from-usb,39782.html

                              1. Ich habe mir meine Device anzeigen lassen sudo fdisk -l

                              2. Dann habe ich mit sudo fdisk /dev/sda meine neue SSD (Disk /dev/sda: 440 GiB) formatiert.
                                Mit P ,d,n,p,1 und 2X Enter anschl. w

                              3. Mit sudo mkfs.ext4 /dev/sda1 habe ich meine SSD partitioniert

                              4. Mit sudo mkdir /media/newdrive habe ich das Verzeichnis newdrive unter media angelget

                              5. Anschl. habe ich mit sudo rsync -avx / /media/newdrive die Daten aus dem Root in das newdrive Verzeichnis kopiert.

                              6. Dann habe ich die cmdline.txt erweitert mit root=/dev/sda1 rootfstype=ext4 rootwait
                                Gesamt steht da jetzt console=serial0,115200 console=tty1 root=PARTUUID=5e3da3da-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles root=/dev/sda1 rootfstype=ext4 rootwait

                              7. Als letztes dann noch ein reboot

                              Das Raspberry bootet aber jetzt nicht durch.
                              Ein Kontakt über SSH ist nicht möglich

                              Homoran paul53 2 Replies Last reply Reply Quote 0
                              • Homoran
                                Homoran Global Moderator Administrators @RalfEngelberth last edited by

                                @RalfEngelberth sagte in ioBroker Raspberry Pi 4 und SSD:

                                Das Raspberry bootet aber jetzt nicht durch.

                                Beim Pi4 muss man noch von SD booten.
                                Die Funktion direkt von SSD zu booten ist noch nicht implementiert

                                R 1 Reply Last reply Reply Quote 0
                                • R
                                  RalfEngelberth @Homoran last edited by

                                  @Homoran sagte in ioBroker Raspberry Pi 4 und SSD:

                                  @RalfEngelberth sagte in ioBroker Raspberry Pi 4 und SSD:

                                  Das Raspberry bootet aber jetzt nicht durch.

                                  Beim Pi4 muss man noch von SD booten.
                                  Die Funktion direkt von SSD zu booten ist noch nicht implementiert

                                  Die Anleitung ist doch für Boot über SD
                                  Oder ist das nicht die richtige.

                                  Homoran 1 Reply Last reply Reply Quote 0
                                  • Homoran
                                    Homoran Global Moderator Administrators @RalfEngelberth last edited by Homoran

                                    @RalfEngelberth sagte in ioBroker Raspberry Pi 4 und SSD:

                                    Die Anleitung ist doch für Boot über SD

                                    Aber nicht für Pi4. oder?

                                    bei Pi2 und 3 klappt das

                                    R Homoran 2 Replies Last reply Reply Quote 0
                                    • R
                                      RalfEngelberth @Homoran last edited by

                                      @Homoran sagte in ioBroker Raspberry Pi 4 und SSD:

                                      @RalfEngelberth sagte in ioBroker Raspberry Pi 4 und SSD:

                                      Die Anleitung ist doch für Boot über SD

                                      Aber nicht für Pi4. oder?

                                      bei Pi2 und 3 klappt das

                                      Was wäre denn der richtige Weg?

                                      1 Reply Last reply Reply Quote 0
                                      • Homoran
                                        Homoran Global Moderator Administrators @Homoran last edited by

                                        @Homoran sagte in ioBroker Raspberry Pi 4 und SSD:

                                        Aber nicht für Pi4. oder?

                                        Habe mir jetzt doch die Anleitung selber angesehen.

                                        How to Run a Raspberry Pi 4 Off an SSD
                                        The first thing you need to do is prepare your external drive so that all of the appropriate data is on it. To get started:

                                        1. Connect your external drive to the Pi. Make sure to attach your drive to one of the blue-colored USB 3.0 ports.

                                        Also doch für den Pi4.

                                        Wenn du genau nach deren Anleitung vorgegangen bist kann ich dir auch nicht helfen

                                        Homoran 1 Reply Last reply Reply Quote 0
                                        • paul53
                                          paul53 @RalfEngelberth last edited by paul53

                                          @RalfEngelberth sagte:

                                          Dann habe ich die cmdline.txt erweitert

                                          Das ist falsch. Der Eintrag

                                          root=PARTUUID=5e3da3da-02
                                          

                                          hätte ersetzt werden müssen durch

                                          root=/dev/sda1
                                          

                                          oder durch die PARTUUID der SSD, was sicherer funktioniert als /dev/sda1.

                                          R 1 Reply Last reply Reply Quote 0
                                          • R
                                            RalfEngelberth @paul53 last edited by RalfEngelberth

                                            @paul53 sagte in ioBroker Raspberry Pi 4 und SSD:

                                            @RalfEngelberth sagte:

                                            Dann habe ich die cmdline.txt erweitert

                                            Das ist falsch. Der Eintrag

                                            root=PARTUUID=5e3da3da-02
                                            

                                            hätte ersetzt werden müssen durch

                                            root=/dev/sda1
                                            

                                            oder durch die PARTUUID der SSD, was sicherer funktioniert als /dev/sda1.

                                            Dann steht als jetzt in der cmdline.txt
                                            console=serial0,115200 console=tty1 root=/dev/sda1 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles rootwait

                                            Was ist mit rootwait beibt das auch drin?

                                            paul53 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate
                                            FAQ Cloud / IOT
                                            HowTo: Node.js-Update
                                            HowTo: Backup/Restore
                                            Downloads
                                            BLOG

                                            742
                                            Online

                                            31.9k
                                            Users

                                            80.1k
                                            Topics

                                            1.3m
                                            Posts

                                            raspberry pi 4 ssd usb
                                            6
                                            41
                                            5952
                                            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