Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. TESTER gesucht / Backup auf Fritz.nas - node 18.18.0

    NEWS

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    • Minor js-controller 7.0.7 Update in latest repo

    TESTER gesucht / Backup auf Fritz.nas - node 18.18.0

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

      @o-s

      Besser habe ich es nicht gekonnt!
      Gruß Otto

      1 Reply Last reply Reply Quote 0
      • F
        fastfoot last edited by

        ui, sind ja doch einige mit Fehlern. Ich bin gerade dabei ein Skript zu schreiben welches neben dem derzeitigen Verfahren(backitup/iobroker cli) auch eine evtl. Lösung anbieten soll. Diese Lösung ist zur Zeit noch nicht wirklich brauchbar da sie mehr Zeit benötigt, dient aber dazu zu prüfen ob der Fehler damit erstmal weg ist. Das Skript erstellt kein Backup sondern nutzt nur dessen Mechanismus, es werden auch keine Änderungen am System vorgenommen, man könnte es also auch in einer Produktivumgebung nutzen

        Ich hoffe es finden sich einige die Lust zum Testen haben, am Ende wird das hoffentlich gute Ergebnis als Grundlage für einen PR verwendet welcher dann das Problem im iobroker fixt.

        schonmal Danke im Voraus, stay tuned

        F 1 Reply Last reply Reply Quote 0
        • F
          fastfoot @fastfoot last edited by fastfoot

          hier das Skript für diejenigen die testen wollen

          • das Skript läuft nur auf Linux Systemen
          • das Skript ist für die cifs Verbindung zur Fritz Box konzipiert
            • für andere Systeme kann der mount-Befehl aus dem LOG des backitup Adapters gelesen werden
          • LXC Container benötigen für cifs den Privileged Mode
          • Docker Container benötigen Privileged Mode oder
            • cap_add:
              • SYS_ADMIN
              • DAC_READ_SEARCH

          Kleine Anleitung zur Erstellung und Aufruf

          • Das Skript muss in /opt/iobroker erstellt werden, wegen der Pfade
          • Der Name ist egal, z.B. cifs_test.js, die Endung .js ist wichtig
          • Die Einstellungen in den Zeilen 33-37 vornehmen
          • Aufruf von der Konsole in /opt/iobroker mit node cifs_test
          • umount und mount erfolgen im Skript

          "use strict";
          /**
           * Name:    cifs.js
           * Zweck:   Dient ausschliesslich dem Test von Fehlern im Zusammenhang mit
           *          cifs(smb) mit Fritz Box, Node >= 18.18.0 und BackitUp-Adapter
           *          bzw. iobroker-cli(iob backup)
           * Datum:   2023-10-08
           * Author:  @fastfoot
           * Forum:   https://forum.iobroker.net/post/1054910
           */
          
          const fs_extra_1 = require("fs-extra");
          const path_1 = require("path");
          const promisify_child_process_1 = require("promisify-child-process");
          const { pipeline } = require("node:stream/promises");
          const tar_1 = require("tar");
          const zlib = require("node:zlib");
          const os = require("os");
          const { exit } = require("process");
          const { createWriteStream } = require("fs");
          if (os.platform != "linux") {
            console.log("This script can only work under Linux OS, terminating now...");
            exit(1);
          }
          
          //
          //                                 fixe Einstellungen, möglichst nicht ändern
          //
          const tmpDir = "/opt/iobroker/node_modules"; // simuliert den tmp Ordner des Backitup-Adapters, NICHT ändern!
          const targetDir = "/opt/iobroker/backups"; // Standard Ordner für Backup Dateien, NICHT ändern!
          const fritzNasShare = "//fritz.box/fritz.nas"; // Standard Share der FritzBox, NICHT ändern!
          
          //
          //                                 Einstellungen
          //
          const fritzNasDir = "Backup"; // Individueller Ordner des Fritz!NAS
          const fritzPasswd = "iobrokertest"; // Passwort
          const fritzUser = "iobroker"; // User
          const fritzSMBVers = "3.1.1"; // gültige SMB Version ("1.0","2.0","3.0","3.0.2","3.1.1")oder ""
          const noserverinoOpt = true; // Verwendung noserverino Option true/false
          //
          //                                           Ab hier Finger weg!
          //
          const umountCmd = `sudo umount ${targetDir}`;
          const mountCmd = `sudo mount -t cifs -o username=${fritzUser},password=${fritzPasswd}${
            noserverinoOpt ? ",noserverino" : ""
          },rw,file_mode=0777,dir_mode=0777${
            fritzSMBVers ? ",vers=3.1.1" : ""
          } ${fritzNasShare}/${fritzNasDir} ${targetDir}`;
          
          test();
          
          async function test() {
            console.log("Copy output from below \n\n```");
            try {
              const { stdout } = await promisify_child_process_1.exec(umountCmd);
              console.log(`${targetDir} unmounted`);
            } catch (e) {
              console.log("umount not possible");
            }
            try {
              await promisify_child_process_1.exec(mountCmd);
              console.log(`${fritzNasShare}/${fritzNasDir} mounted into ${targetDir}\n`);
            } catch (e) {
              console.log("mount not possible: " + e + "\n");
            }
            try {
              let res1 = await alternative2(`test_pipeline_compressed_tar.tar.gz`, true);
              console.log(`file ${res1} done`);
              await countFilesInTar(res1);
          
              res1 = await alternative3(`test_pipeline_compressed_zlib.tar.gz`, false);
              console.log(`file ${res1} done`);
              await countFilesInTar(res1);
          
              res1 = await alternative4(`test_pipeline_uncompressed.tar`, false);
              console.log(`file ${res1} done`);
              await countFilesInTar(res1);
          
          
              const { stdout } = await promisify_child_process_1.exec(
                `ls -lt ${targetDir}/test_*`
              );
              console.log(`listing of created files in ${targetDir}\n` + stdout);
            } catch (e) {
              console.log(e);
            }
            console.error("```\n\nEnd of output to copy");
          }
          /*
          function standard(name, compression) {
            return new Promise((resolve, reject) => {
              const f = fs_extra_1.createWriteStream(`${targetDir}/${name}`);
              f.on("finish", () => {
                resolve(path_1.normalize(name));
              });
              f.on("error", (e) => {
                console.error("error! : " + e);
                reject("Fehler im Stream");
              });
              try {
                tar_1
                  .create({ gzip: compression, cwd: `${tmpDir}/` }, [
                    "iobroker.js-controller",
                  ])
                  .pipe(f);
                console.log(`file ${name} created`);
              } catch (e) {
                console.error("error! : " + e);
                reject(e);
              }
            });
          }
          
          function alternative(name, compression = true) {
            return new Promise((resolve, reject) => {
              try {
                tar_1
                  .create(
                    {
                      //file: `${targetDir}/${name}`,
                      file: `${name}`,
                      gzip: compression,
                      cwd: `${tmpDir}/`,
                    },
                    ["iobroker.js-controller"]
                  )
                  .then(async () => {
                    await promisify_child_process_1.exec(`mv ${name} ${targetDir}`);
                    console.log(`file ${name} created`);
                    resolve(path_1.normalize(name));
                  });
              } catch (e) {
                console.error("error! : " + e);
                reject(e);
              }
            });
          }
          */
          function alternative2(name, compression = true) {
            return new Promise(async (resolve, reject) => {
              try {
                await pipeline(
                  tar_1.create(
                    {
                      gzip: compression,
                      cwd: `${tmpDir}/`,
                    },
                    ["iobroker.js-controller"]
                  ),
                  //zlib.createGzip(),
                  fs_extra_1.createWriteStream(`${targetDir}/${name}`),
                );
                console.log(`file ${name} created`);
                resolve(name);
              } catch (e) {
                console.error("error! : " + e);
                reject(e);
              }
            });
          }
          
          function alternative3(name, compression = true) {
            return new Promise(async (resolve, reject) => {
              try {
                await pipeline(
                  tar_1.create(
                    {
                      gzip: compression,
                      cwd: `${tmpDir}/`,
                    },
                    ["iobroker.js-controller"]
                  ),
                  zlib.createGzip(),
                  fs_extra_1.createWriteStream(`${targetDir}/${name}`),
                );
                console.log(`file ${name} created`);
                resolve(name);
              } catch (e) {
                console.error("error! : " + e);
                reject(e);
              }
            });
          }
          
          function alternative4(name, compression = true) {
            const { pipeline } = require("node:stream/promises");
          
            return new Promise(async (resolve, reject) => {
              //const f = fs_extra_1.createWriteStream(`${targetDir}/${name}`);
              //f.on("finish", () => {
              //  resolve(path_1.normalize(name));
              //});
              //f.on("error", (e) => {
              //  console.error("error! : " + e);
              //  reject("Fehler im Stream");
              //});
              try {
                await pipeline(
                  tar_1.create(
                    {
                      //file: `${targetDir}/${name}`,
                      //file: `${name}`,
                      gzip: compression,
                      cwd: `${tmpDir}/`,
                    },
                    ["iobroker.js-controller"]
                  ),
                  //zlib.createGzip(),
                  fs_extra_1.createWriteStream(`${targetDir}/${name}`),
                );
                console.log(`file ${name} created`);
                resolve(name);
              } catch (e) {
                console.error("error! : " + e);
                reject(e);
              }
            });
          }
          
          async function countFilesInTar(name) {
            let { stdout } = await promisify_child_process_1.exec(
              `tar -tf ${targetDir}/${name}|wc -l`
            );
            console.log(`number of files in ${name}: ${stdout}`);
          }
          

          Bei Fagen, fragen!

          R O S 3 Replies Last reply Reply Quote 0
          • R
            Radi @fastfoot last edited by Radi

            @fastfoot sagte in TESTER gesucht / Backup auf Fritz.nas - node 18.18.0:

            node cifs_test

            Hier mal die Ausgabe deines Testscripts auf meinem System:

            /opt/iobroker/backups unmounted
            //192.168.69.254/fritz.nas/Volume/backup2 mounted into /opt/iobroker/backups
            
            file test_standard.tar.gz created
            file test_standard.tar.gz done
            number of files in test_standard.tar.gz: 0
            
            file test_nocompression.tar created
            file test_nocompression.tar done
            number of files in test_nocompression.tar: 5
            
            file test_alternative.tar.gz created
            file test_alternative.tar.gz done
            number of files in test_alternative.tar.gz: 0
            
            listing of created files in /opt/iobroker/backups
            -rwxrwxrwx 1 root root  16384  4. Okt 09:01 /opt/iobroker/backups/test_alternative.tar.gz
            -rwxrwxrwx 1 root root 251392  4. Okt 09:01 /opt/iobroker/backups/test_nocompression.tar
            -rwxrwxrwx 1 root root  16394  4. Okt 09:01 /opt/iobroker/backups/test_standard.tar.gz
            
            

            End of output to copy

            Ich hoffe, es hilft weiter, den Fehler einzugrenzen.

            Achtung, habe den Artikel noch mal bearbeitet.

            F 1 Reply Last reply Reply Quote 0
            • O S
              O S @fastfoot last edited by

              @fastfoot
              Hier meine Ausgabe deines Testscriptes:

              umount not possible
              mount not possible: Error: Command failed: sudo mount -t cifs -o username=iobroker,password=iobrokertest,noserverino,rw,file_mode=0777,dir_mode=0777,vers=3.1.1 //fritz.box/fritz.nas/Backup /opt/iobroker/backups
              mount error(13): Permission denied
              Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)

              file test_standard.tar.gz created
              file test_standard.tar.gz done
              number of files in test_standard.tar.gz: 155

              file test_nocompression.tar created
              file test_nocompression.tar done
              number of files in test_nocompression.tar: 155

              file test_alternative.tar.gz created
              file test_alternative.tar.gz done
              number of files in test_alternative.tar.gz: 155

              listing of created files in /opt/iobroker/backups
              -rw-rw-r--+ 1 pi pi 10724080 Oct 4 12:50 /opt/iobroker/backups/test_alternative.tar.gz
              -rw-rw-r--+ 1 pi pi 41432576 Oct 4 12:50 /opt/iobroker/backups/test_nocompression.tar
              -rw-rw-r--+ 1 pi pi 10724080 Oct 4 12:50 /opt/iobroker/backups/test_standard.tar.gz

              Gruß Otto

              End of output to copy
              1 Reply Last reply Reply Quote 0
              • O S
                O S @fastfoot last edited by

                @fastfoot

                hier die korrigierte Fassung:


                umount not possible
                //fritz.box/fritz.nas/intenso/iobroker mounted into /opt/iobroker/backups

                file test_standard.tar.gz created
                file test_standard.tar.gz done
                number of files in test_standard.tar.gz: 155

                file test_nocompression.tar created
                file test_nocompression.tar done
                number of files in test_nocompression.tar: 155

                file test_alternative.tar.gz created
                file test_alternative.tar.gz done
                number of files in test_alternative.tar.gz: 155

                listing of created files in /opt/iobroker/backups
                -rwxrwxrwx 1 root root 10724083 Oct 4 13:36 /opt/iobroker/backups/test_alternative.tar.gz
                -rwxrwxrwx 1 root root 41432576 Oct 4 13:35 /opt/iobroker/backups/test_nocompression.tar
                -rwxrwxrwx 1 root root 10724083 Oct 4 13:35 /opt/iobroker/backups/test_standard.tar.gz

                F 1 Reply Last reply Reply Quote 0
                • F
                  fastfoot @Radi last edited by

                  @radi Das sieht mir sehr nach Schrott aus, ich denke da werden die falschen Parameter für das mounten benutzt. Bitte schau mal in deinen Backitup Adapter welche Settings du da benutzt, es geht um die SMB version und die noserverino Option, einzustellen im Skript in den Zeilen 36 + 37

                  const fritzSMBVers = "3.1.1"; // gültige SMB Version ("1.0","2.0","3.0","3.0.2","3.1.1")oder ""
                  const noserverinoOpt = true; // Verwendung noserverino Option true/false
                  

                  bitte abändern und nochmal laufen lassen

                  1 Reply Last reply Reply Quote 0
                  • F
                    fastfoot @O S last edited by

                    @o-s sagte in TESTER gesucht / Backup auf Fritz.nas - node 18.18.0:

                    hier die korrigierte Fassung:

                    Das sieht aber nicht nach irgendwelchen Problemen aus. Falls Du im Backitup Adapter Probleme hast dann passe dort mal die SMB - Version und die noserverino entsprechend den Einstellungen im Skript an und lasse nochmal ein Backup über den Adapter laufen

                    O S Thomas Braun 2 Replies Last reply Reply Quote 0
                    • O S
                      O S @fastfoot last edited by

                      @fastfoot
                      05f44d2e-7fab-4a2b-b5da-833d9cc8c369-grafik.png

                      Bei diesen Einstellungen erhalte ich:

                      d550f5c9-5f0e-4538-b9d1-6800a7ce2830-grafik.png

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

                        @fastfoot

                        umount not possible
                        //fritz.box/fritz.nas/Hitachi-HTS545012B9SA00-01/iobbackups/chet mounted into /opt/iobroker/backups
                        
                        file test_standard.tar.gz created
                        file test_standard.tar.gz done
                        number of files in test_standard.tar.gz: 0
                        
                        file test_nocompression.tar created
                        file test_nocompression.tar done
                        number of files in test_nocompression.tar: 0
                        
                        file test_alternative.tar.gz created
                        file test_alternative.tar.gz done
                        number of files in test_alternative.tar.gz: 0
                        
                        listing of created files in /opt/iobroker/backups
                        -rwxrwxrwx 1 root root  16384 Oct  4 17:32 /opt/iobroker/backups/test_alternative.tar.gz
                        -rwxrwxrwx 1 root root 251392 Oct  4 17:32 /opt/iobroker/backups/test_nocompression.tar
                        -rwxrwxrwx 1 root root  16384 Oct  4 17:32 /opt/iobroker/backups/test_standard.tar.gz
                        
                        

                        Von mir auch nochmal.

                        mount schaut so aus:

                        
                        //fritz.box/fritz.nas/Hitachi-HTS545012B9SA00-01/iobbackups/chet on /opt/iobroker/backups type cifs (rw,relatime,vers=3.1.1,cache=strict,username=iobroker,uid=0,noforceuid,gid=0,noforcegid,addr=2a02:0908:0391:30e0:1eed:6fff:fe57:f042,file_mode=0777,dir_mode=0777,soft,nounix,mapposix,rsize=65536,wsize=65536,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=5)
                        
                        F 1 Reply Last reply Reply Quote 0
                        • F
                          fastfoot @O S last edited by

                          @o-s ok, 16KB im Fehlerfall ist das eigentlich erwartete Ergebnis. Was mich sehr wundert ist dass beim Skript alles funktioniert. Das Skript verwendet zum Erstellen der Testdateien die gleiche Methodik wie der Adapter und sollte deshalb auch einen Fehler zumindest bei der test_standard.tar.gz zeigen. Was mich dennoch wundert ist die geringe Anzahl an Files.

                          • Nutzt du als tmpDir = "/opt/iobroker/node_modules"; ?
                          • welche controller version iob -v ?
                          • welche Backitup Version?

                          Ich ändere später noch das Skript um mehr Infos zu bekommen

                          O S 1 Reply Last reply Reply Quote 0
                          • F
                            fastfoot @Thomas Braun last edited by

                            @thomas-braun ist das die gleiche Config mit der wir die Tage getestet hatten? Da hatte nämlich sowohl die alternative Methode als auch die unkomprimierte Version funktioniert. Die unkomprimierte Version ist zwar grösser aber ich denke mal dass sie auch korrupt ist(tar -tf backups/test_nocompression.tar).
                            Hier mein Output mit aktuellem js-controller

                            /opt/iobroker/backups unmounted
                            //fritz.box/fritz.nas/Backup mounted into /opt/iobroker/backups
                            
                            file test_standard.tar.gz created
                            file test_standard.tar.gz done
                            number of files in test_standard.tar.gz: 292
                            
                            file test_nocompression.tar created
                            file test_nocompression.tar done
                            number of files in test_nocompression.tar: 292
                            
                            file test_alternative.tar.gz created
                            file test_alternative.tar.gz done
                            number of files in test_alternative.tar.gz: 292
                            
                            listing of created files in /opt/iobroker/backups
                            -rwxrwxrwx 1 root root  7109435 Okt  4 18:02 /opt/iobroker/backups/test_alternative.tar.gz
                            -rwxrwxrwx 1 root root 42487808 Okt  4 18:02 /opt/iobroker/backups/test_nocompression.tar
                            -rwxrwxrwx 1 root root  7109456 Okt  4 18:02 /opt/iobroker/backups/test_standard.tar.gz
                            
                            
                            Thomas Braun 2 Replies Last reply Reply Quote 0
                            • Thomas Braun
                              Thomas Braun Most Active @fastfoot last edited by

                              @fastfoot sagte in TESTER gesucht / Backup auf Fritz.nas - node 18.18.0:

                              ist das die gleiche Config mit der wir die Tage getestet hatten?

                              Ja, im Grund schon. Ich mounte über die fstab allerdings mit smbcredentials statt user/pw, aber das sollte keinen Unterschied machen, die Freigabe landet ja im Mountpunkt.

                              F 1 Reply Last reply Reply Quote 0
                              • O S
                                O S @fastfoot last edited by

                                @fastfoot

                                Ich nutze opt/iobroker/node_modules
                                Controller: 5.0.12
                                Backitup: 2.8.1

                                F 1 Reply Last reply Reply Quote 0
                                • F
                                  fastfoot @O S last edited by

                                  @o-s sagte in TESTER gesucht / Backup auf Fritz.nas - node 18.18.0:

                                  @fastfoot

                                  Ich nutze opt/iobroker/node_modules
                                  Controller: 5.0.12
                                  Backitup: 2.8.1

                                  ja das passt, es gibt in der Beta eine 2.8.2 aber ich glaube nicht dass das einen Unterschied macht.

                                  Das macht mich erstmal etwas rarlos...

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

                                    @fastfoot
                                    Output des check-skripts, anschließen manuelles backup in das lokale FS.

                                    echad@chet:/opt/iobroker $ ls -lAh backups/
                                    total 280K
                                    -rwxrwxrwx 1 root root    0 Oct  4 18:16 01_FREIGABE_FRITZ_NAS
                                    -rwxrwxrwx 1 root root  16K Oct  4 18:17 test_alternative.tar.gz
                                    -rwxrwxrwx 1 root root 246K Oct  4 18:17 test_nocompression.tar
                                    -rwxrwxrwx 1 root root  16K Oct  4 18:17 test_standard.tar.gz
                                    echad@chet:/opt/iobroker $ sudo umount /opt/iobroker/backups
                                    echad@chet:/opt/iobroker $ iob backup
                                    host.chet 8105 states saved
                                    host.chet 9932 objects saved
                                    Backup created: /opt/iobroker/backups/2023_10_04-18_18_01_backupiobroker.tar.gz
                                    This backup can only be restored with js-controller version up from 4.1
                                    echad@chet:/opt/iobroker $ ls -lAh backups/
                                    total 5.8M
                                    -rw-rw-r--+ 1 iobroker iobroker 5.8M Oct  4 18:18 2023_10_04-18_18_01_backupiobroker.tar.gz
                                    
                                    simatec 1 Reply Last reply Reply Quote 0
                                    • simatec
                                      simatec Developer Most Active last edited by

                                      Wir können für den Anfang erstmal festhalten, dass es nicht an Backitup liegt und mir aktuell bekannt, nur in Verbindung mit der FRITZ!Box die Probleme auftreten.

                                      Wäre gut, wenn andere ohne Fritz NAS hier auch noch Ihre Ergebnisse teilen könnten. So können wir gezielt eingrenzen..

                                      @Thomas-Braun
                                      Hast du noch ne Idee, ob wir im Mount noch zusätzliche Parameter testen können?

                                      Thomas Braun F 2 Replies Last reply Reply Quote 0
                                      • F
                                        fastfoot @Thomas Braun last edited by

                                        @thomas-braun sagte in TESTER gesucht / Backup auf Fritz.nas - node 18.18.0:

                                        @fastfoot sagte in TESTER gesucht / Backup auf Fritz.nas - node 18.18.0:

                                        ist das die gleiche Config mit der wir die Tage getestet hatten?

                                        Ja, im Grund schon. Ich mounte über die fstab allerdings mit smbcredentials statt user/pw, aber das sollte keinen Unterschied machen, die Freigabe landet ja im Mountpunkt.

                                        ich dachte da eher an andere(ältere) Hardware. Für die Alternate Methode habe ich ne Erklärung, wir hatten mit Erstellen und dann kopieren getestet, jetzt schreibe ich das gleich in den mount, werde ich ändern. Aber uncompressed im Adapter hatte funktioniert und mit Skript nicht.

                                        Wenn der Mount immer besteht, wie handelst du das im Adapter, der mounted doch auch immer? Dazu könntest du aber NAS/COPY ausschalten und 'normal' ein Backup machen, geht ja dann als Standard in den mountpoint. Als Alternative dazu NAS/COPY von cifs auf copy umstellen und als Pfad /opt/iobroker/backups einstellen. Wäre interessant zu sehen ob das einen Unterschied macht.

                                        OT: Wie sieht denn der Eintrag im fstab aus? incl. der smb-credentials bitte, ohne PW narürlich

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

                                          @thomas-braun

                                          Kannst du mal bitte den Mount manuell setzen und die Optionen probieren?

                                          • cache: Die Deaktivierung des Caches cache=none kann helfen, falls die SMB-Freigaben nicht korrekt eingehangen werden.
                                          • nobrl: Deaktivierung der Bytebereich-Sperrung (Byte-Range Lock). Einige Programme kommen mit dem Byte-Range Lock nicht zurecht und können deshalb auf gemountete SMB-Freigaben trotz korrekter Berechtigungen nicht schreiben. Abhilfe schafft hier die Mount-Option nobrl.
                                          F 1 Reply Last reply Reply Quote 0
                                          • Thomas Braun
                                            Thomas Braun Most Active @simatec last edited by

                                            @simatec sagte in TESTER gesucht / Backup auf Fritz.nas - node 18.18.0:

                                            Hast du noch ne Idee, ob wir im Mount noch zusätzliche Parameter testen können?

                                            Ich bin komplett ratlos. Es muss aber mit tar und/oder gzip in Verbindung stehen. Bereits gepackte Backup kann ich z. B. auf die Freigabe schieben.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            738
                                            Online

                                            31.6k
                                            Users

                                            79.5k
                                            Topics

                                            1.3m
                                            Posts

                                            10
                                            204
                                            14944
                                            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