Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. [gelöst]Backup & Restore klappt nicht

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.7k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    2.2k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    16
    1
    3.0k

[gelöst]Backup & Restore klappt nicht

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
39 Beiträge 11 Kommentatoren 6.7k Aufrufe 3 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • D Offline
    D Offline
    DirtyAtze
    schrieb am zuletzt editiert von
    #23

    Ne, als "pi".

    Hatte beim ersten versuch mal die ganze prozedur mit neuem Benutzer anlegen etc. durchgemacht. Hat aber auch nicht funktioniert. Darum hab ich mir das dieses mal gespart und den standard benutzer beibehalten.

    1 Antwort Letzte Antwort
    0
    • D Offline
      D Offline
      DirtyAtze
      schrieb am zuletzt editiert von
      #24

      Wenn ich jetzt nochmal mit einem jungfräulichen system anfange, dann inslliere ich iobroker nach dieser Anleitung:
      https://www.iobroker.net/#de/documentation/install/linux.md

      einziger Unterschied:
      curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
      wird durch:
      curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

      ersetzt.

      ist das so weit richtig?

      HomoranH 1 Antwort Letzte Antwort
      0
      • D DirtyAtze

        Wenn ich jetzt nochmal mit einem jungfräulichen system anfange, dann inslliere ich iobroker nach dieser Anleitung:
        https://www.iobroker.net/#de/documentation/install/linux.md

        einziger Unterschied:
        curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
        wird durch:
        curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

        ersetzt.

        ist das so weit richtig?

        HomoranH Nicht stören
        HomoranH Nicht stören
        Homoran
        Global Moderator Administrators
        schrieb am zuletzt editiert von
        #25

        @DirtyAtze sagte in [gelöst]Backup & Restore klappt nicht:

        ist das so weit richtig?

        Ja!
        habe ich doch in der Anleitung bereits geändert :scream:

        kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

        Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

        der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

        1 Antwort Letzte Antwort
        0
        • D Offline
          D Offline
          DirtyAtze
          schrieb am zuletzt editiert von
          #26

          Installation node etc:

          pi@raspberrypi:~ $ node -v
          -bash: node: Kommando nicht gefunden.
          pi@raspberrypi:~ $ nodejs -v
          -bash: nodejs: Kommando nicht gefunden.
          pi@raspberrypi:~ $ npm -v
          -bash: npm: Kommando nicht gefunden.
          pi@raspberrypi:~ $ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
          
          ## Installing the NodeSource Node.js 10.x repo...
          
          
          ## Populating apt-get cache...
          
          + apt-get update
          OK:1 http://raspbian.raspberrypi.org/raspbian buster InRelease
          OK:2 http://archive.raspberrypi.org/debian buster InRelease
          Paketlisten werden gelesen... Fertig
          
          ## Confirming "buster" is supported...
          
          + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_10.x/dists/buster/Release'
          
          ## Adding the NodeSource signing key to your keyring...
          
          + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
          OK
          
          ## Creating apt sources list file for the NodeSource Node.js 10.x repo...
          
          + echo 'deb https://deb.nodesource.com/node_10.x buster main' > /etc/apt/sources.list.d/nodesource.list
          + echo 'deb-src https://deb.nodesource.com/node_10.x buster main' >> /etc/apt/sources.list.d/nodesource.list
          Holen:4 https://deb.nodesource.com/node_10.x buster/main armhf Packages [765 B]
          Es wurden 5.349 B in 1 s geholt (3.688 B/s).
          Paketlisten werden gelesen... Fertig
          
          ## Run `sudo apt-get install -y nodejs` to install Node.js 10.x and npm
          ## You may also need development tools to build native addons:
               sudo apt-get install gcc g++ make
          ## To install the Yarn package manager, run:
               curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
               echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
               sudo apt-get update && sudo apt-get install yarn
          
          
          pi@raspberrypi:~ $ sudo apt install -y nodejs
          Paketlisten werden gelesen... Fertig
          Abhängigkeitsbaum wird aufgebaut.
          Statusinformationen werden eingelesen.... Fertig
          Die folgenden NEUEN Pakete werden installiert:
            nodejs
          0 aktualisiert, 1 neu installiert, 0 zu entfernen und 27 nicht aktualisiert.
          Es müssen 14,2 MB an Archiven heruntergeladen werden.
          Nach dieser Operation werden 72,7 MB Plattenplatz zusätzlich benutzt.
          Holen:1 https://deb.nodesource.com/node_10.x buster/main armhf nodejs armhf 10.16.0-1nodesource1 [14,2 MB]
          Es wurden 14,2 MB in 1 s geholt (9.603 kB/s).
          Vormals nicht ausgewähltes Paket nodejs wird gewählt.
          (Lese Datenbank ... 37607 Dateien und Verzeichnisse sind derzeit installiert.)
          Vorbereitung zum Entpacken von .../nodejs_10.16.0-1nodesource1_armhf.deb ...
          Entpacken von nodejs (10.16.0-1nodesource1) ...
          nodejs (10.16.0-1nodesource1) wird eingerichtet ...
          Trigger für man-db (2.8.5-2) werden verarbeitet ...
          pi@raspberrypi:~ $ node -v
          v10.16.0
          pi@raspberrypi:~ $ nodejs -v
          v10.16.0
          pi@raspberrypi:~ $ npm -v
          6.9.0
          pi@raspberrypi:~ $
          
          HomoranH 1 Antwort Letzte Antwort
          0
          • D DirtyAtze

            Installation node etc:

            pi@raspberrypi:~ $ node -v
            -bash: node: Kommando nicht gefunden.
            pi@raspberrypi:~ $ nodejs -v
            -bash: nodejs: Kommando nicht gefunden.
            pi@raspberrypi:~ $ npm -v
            -bash: npm: Kommando nicht gefunden.
            pi@raspberrypi:~ $ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
            
            ## Installing the NodeSource Node.js 10.x repo...
            
            
            ## Populating apt-get cache...
            
            + apt-get update
            OK:1 http://raspbian.raspberrypi.org/raspbian buster InRelease
            OK:2 http://archive.raspberrypi.org/debian buster InRelease
            Paketlisten werden gelesen... Fertig
            
            ## Confirming "buster" is supported...
            
            + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_10.x/dists/buster/Release'
            
            ## Adding the NodeSource signing key to your keyring...
            
            + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
            OK
            
            ## Creating apt sources list file for the NodeSource Node.js 10.x repo...
            
            + echo 'deb https://deb.nodesource.com/node_10.x buster main' > /etc/apt/sources.list.d/nodesource.list
            + echo 'deb-src https://deb.nodesource.com/node_10.x buster main' >> /etc/apt/sources.list.d/nodesource.list
            Holen:4 https://deb.nodesource.com/node_10.x buster/main armhf Packages [765 B]
            Es wurden 5.349 B in 1 s geholt (3.688 B/s).
            Paketlisten werden gelesen... Fertig
            
            ## Run `sudo apt-get install -y nodejs` to install Node.js 10.x and npm
            ## You may also need development tools to build native addons:
                 sudo apt-get install gcc g++ make
            ## To install the Yarn package manager, run:
                 curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
                 echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
                 sudo apt-get update && sudo apt-get install yarn
            
            
            pi@raspberrypi:~ $ sudo apt install -y nodejs
            Paketlisten werden gelesen... Fertig
            Abhängigkeitsbaum wird aufgebaut.
            Statusinformationen werden eingelesen.... Fertig
            Die folgenden NEUEN Pakete werden installiert:
              nodejs
            0 aktualisiert, 1 neu installiert, 0 zu entfernen und 27 nicht aktualisiert.
            Es müssen 14,2 MB an Archiven heruntergeladen werden.
            Nach dieser Operation werden 72,7 MB Plattenplatz zusätzlich benutzt.
            Holen:1 https://deb.nodesource.com/node_10.x buster/main armhf nodejs armhf 10.16.0-1nodesource1 [14,2 MB]
            Es wurden 14,2 MB in 1 s geholt (9.603 kB/s).
            Vormals nicht ausgewähltes Paket nodejs wird gewählt.
            (Lese Datenbank ... 37607 Dateien und Verzeichnisse sind derzeit installiert.)
            Vorbereitung zum Entpacken von .../nodejs_10.16.0-1nodesource1_armhf.deb ...
            Entpacken von nodejs (10.16.0-1nodesource1) ...
            nodejs (10.16.0-1nodesource1) wird eingerichtet ...
            Trigger für man-db (2.8.5-2) werden verarbeitet ...
            pi@raspberrypi:~ $ node -v
            v10.16.0
            pi@raspberrypi:~ $ nodejs -v
            v10.16.0
            pi@raspberrypi:~ $ npm -v
            6.9.0
            pi@raspberrypi:~ $
            
            HomoranH Nicht stören
            HomoranH Nicht stören
            Homoran
            Global Moderator Administrators
            schrieb am zuletzt editiert von
            #27

            @DirtyAtze
            :+1:

            kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

            Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

            der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

            1 Antwort Letzte Antwort
            0
            • D Offline
              D Offline
              DirtyAtze
              schrieb am zuletzt editiert von
              #28

              installation ioBroker:

              pi@raspberrypi:~ $ curl -sL https://iobroker.net/install.sh | bash -
              
              ==========================================================================
              
                  Welcome to the ioBroker installer!
                  Installer version: 2019-07-03
              
                  You might need to enter your password a couple of times.
              
              ==========================================================================
              
              
              ==========================================================================
                  Installing prerequisites (1/4)
              ==========================================================================
              
              Installed acl
              Installed libavahi-compat-libdnssd-dev
              Installed libudev-dev
              Installed libpam0g-dev
              Installed git
              
              ==========================================================================
                  Creating ioBroker user and directory (2/4)
              ==========================================================================
              
              User iobroker created
              Created /etc/sudoers.d/iobroker
              Directory /opt/iobroker created
              
              ==========================================================================
                  Installing ioBroker (3/4)
              ==========================================================================
              
              In file included from ../src/main.cpp:3:
              ../../nan/nan.h: In function ‘void Nan::AsyncQueueWorker(Nan::AsyncWorker*)’:
              ../../nan/nan.h:2298:62: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   , reinterpret_cast<uv_after_work_cb>(AsyncExecuteComplete)
                                                                            ^
              ../src/main.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE GetDiskUsage(Nan::NAN_METHOD_ARGS_TYPE)’:
              ../src/main.cpp:26:71: warning: ‘v8::String::Utf8Value::Utf8Value(v8::Local<v8::Value>)’ is deprecated: Use Isolate version [-Wdeprecated-declarations]
                       DiskUsage result = GetDiskUsage(*v8::String::Utf8Value(info[0]));
                                                                                     ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../../nan/nan.h:54,
                               from ../src/main.cpp:3:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2892:28: note: declared here
                                 explicit Utf8Value(Local<v8::Value> obj));
                                          ^~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              In file included from ../../nan/nan.h:54,
                               from ../src/main.cpp:3:
              ../src/main.cpp: At global scope:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:573:43: warning: cast between incompatible function types from ‘void (*)(v8::Handle<v8::Object>)’ {aka ‘void (*)(v8::Local<v8::Object>)’} to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
                     (node::addon_register_func) (regfunc),                          \
                                                         ^
              /home/pi/.node-gyp/10.16.0/include/node/node.h:607:3: note: in expansion of macro ‘NODE_MODULE_X’
                 NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
                 ^~~~~~~~~~~~~
              ../src/main.cpp:42:1: note: in expansion of macro ‘NODE_MODULE’
               NODE_MODULE(diskusage, Init)
               ^~~~~~~~~~~
              In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../../nan/nan.h:54,
                               from ../src/main.cpp:3:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
              /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                              reinterpret_cast<Callback>(callback), type);
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
              ../../nan/nan_object_wrap.h:65:61:   required from here
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
              In file included from ../node_modules/nan/nan.h:190,
                               from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan_maybe_43_inl.h: In function ‘Nan::Maybe<bool> Nan::ForceSet(v8::Local<v8::Object>, v8::Local<v8::Value>, v8::Local<v8::Value>, v8::PropertyAttribute)’:
              ../node_modules/nan/nan_maybe_43_inl.h:88:15: error: ‘class v8::Object’ has no member named ‘ForceSet’
                 return obj->ForceSet(GetCurrentContext(), key, value, attribs);
                             ^~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h: In function ‘v8::Local<v8::Value> Nan::MakeCallback(v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*)’:
              ../node_modules/nan/nan.h:817:60: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                       v8::Isolate::GetCurrent(), target, func, argc, argv);
                                                                          ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:177:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h:817:60: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                       v8::Isolate::GetCurrent(), target, func, argc, argv);
                                                                          ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:177:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h: In function ‘v8::Local<v8::Value> Nan::MakeCallback(v8::Local<v8::Object>, v8::Local<v8::String>, int, v8::Local<v8::Value>*)’:
              ../node_modules/nan/nan.h:831:62: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::String>, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                       v8::Isolate::GetCurrent(), target, symbol, argc, argv);
                                                                            ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:170:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h:831:62: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::String>, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                       v8::Isolate::GetCurrent(), target, symbol, argc, argv);
                                                                            ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:170:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h: In function ‘v8::Local<v8::Value> Nan::MakeCallback(v8::Local<v8::Object>, const char*, int, v8::Local<v8::Value>*)’:
              ../node_modules/nan/nan.h:845:62: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, const char*, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                       v8::Isolate::GetCurrent(), target, method, argc, argv);
                                                                            ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:163:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h:845:62: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, const char*, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                       v8::Isolate::GetCurrent(), target, method, argc, argv);
                                                                            ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:163:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h: In member function ‘v8::Local<v8::Value> Nan::Callback::Call_(v8::Isolate*, v8::Local<v8::Object>, int, v8::Local<v8::Value>*) const’:
              ../node_modules/nan/nan.h:1463:5: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                   ));
                   ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:177:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h:1463:5: warning: ‘v8::Local<v8::Value> node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*)’ is deprecated: Use MakeCallback(..., async_context) [-Wdeprecated-declarations]
                   ));
                   ^
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:177:50: note: declared here
                               NODE_EXTERN v8::Local<v8::Value> MakeCallback(
                                                                ^~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/node.h:91:42: note: in definition of macro ‘NODE_DEPRECATED’
                   __attribute__((deprecated(message))) declarator
                                                        ^~~~~~~~~~
              In file included from ../src/unix_dgram.cc:5:
              ../node_modules/nan/nan.h: In function ‘void Nan::AsyncQueueWorker(Nan::AsyncWorker*)’:
              ../node_modules/nan/nan.h:1706:62: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   , reinterpret_cast<uv_after_work_cb>(AsyncExecuteComplete)
                                                                            ^
              ../src/unix_dgram.cc: In function ‘Nan::NAN_METHOD_RETURN_TYPE {anonymous}::Socket(Nan::NAN_METHOD_ARGS_TYPE)’:
              ../src/unix_dgram.cc:189:37: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 domain      = info[0]->Int32Value();
                                                   ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:190:37: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 type        = info[1]->Int32Value();
                                                   ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:191:37: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 protocol    = info[2]->Int32Value();
                                                   ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc: In function ‘Nan::NAN_METHOD_RETURN_TYPE {anonymous}::Bind(Nan::NAN_METHOD_ARGS_TYPE)’:
              ../src/unix_dgram.cc:230:28: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 fd = info[0]->Int32Value();
                                          ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:231:33: warning: ‘v8::String::Utf8Value::Utf8Value(v8::Local<v8::Value>)’ is deprecated: Use Isolate version [-Wdeprecated-declarations]
                 String::Utf8Value path(info[1]);
                                               ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2892:28: note: declared here
                                 explicit Utf8Value(Local<v8::Value> obj));
                                          ^~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc: In function ‘Nan::NAN_METHOD_RETURN_TYPE {anonymous}::SendTo(Nan::NAN_METHOD_ARGS_TYPE)’:
              ../src/unix_dgram.cc:258:28: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 fd = info[0]->Int32Value();
                                          ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:259:27: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 buf = info[1]->ToObject();
                                         ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
               Local<Object> Value::ToObject() const {
                             ^~~~~
              ../src/unix_dgram.cc:260:33: warning: ‘uint32_t v8::Value::Uint32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 offset = info[2]->Uint32Value();
                                               ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2477:47: note: declared here
                 V8_DEPRECATED("Use maybe version", uint32_t Uint32Value() const);
                                                             ^~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:261:33: warning: ‘uint32_t v8::Value::Uint32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 length = info[3]->Uint32Value();
                                               ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2477:47: note: declared here
                 V8_DEPRECATED("Use maybe version", uint32_t Uint32Value() const);
                                                             ^~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:262:33: warning: ‘v8::String::Utf8Value::Utf8Value(v8::Local<v8::Value>)’ is deprecated: Use Isolate version [-Wdeprecated-declarations]
                 String::Utf8Value path(info[4]);
                                               ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2892:28: note: declared here
                                 explicit Utf8Value(Local<v8::Value> obj));
                                          ^~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc: In function ‘Nan::NAN_METHOD_RETURN_TYPE {anonymous}::Send(Nan::NAN_METHOD_ARGS_TYPE)’:
              ../src/unix_dgram.cc:302:28: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 fd = info[0]->Int32Value();
                                          ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:303:27: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 buf = info[1]->ToObject();
                                         ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
               Local<Object> Value::ToObject() const {
                             ^~~~~
              ../src/unix_dgram.cc: In function ‘Nan::NAN_METHOD_RETURN_TYPE {anonymous}::Connect(Nan::NAN_METHOD_ARGS_TYPE)’:
              ../src/unix_dgram.cc:340:28: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 fd = info[0]->Int32Value();
                                          ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc:341:33: warning: ‘v8::String::Utf8Value::Utf8Value(v8::Local<v8::Value>)’ is deprecated: Use Isolate version [-Wdeprecated-declarations]
                 String::Utf8Value path(info[1]);
                                               ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2892:28: note: declared here
                                 explicit Utf8Value(Local<v8::Value> obj));
                                          ^~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              ../src/unix_dgram.cc: In function ‘Nan::NAN_METHOD_RETURN_TYPE {anonymous}::Close(Nan::NAN_METHOD_ARGS_TYPE)’:
              ../src/unix_dgram.cc:361:28: warning: ‘int32_t v8::Value::Int32Value() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                 fd = info[0]->Int32Value();
                                          ^
              In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                               from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:2478:46: note: declared here
                 V8_DEPRECATED("Use maybe version", int32_t Int32Value() const);
                                                            ^~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                 declarator __attribute__((deprecated(message)))
                 ^~~~~~~~~~
              In file included from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              ../src/unix_dgram.cc: At global scope:
              /home/pi/.node-gyp/10.16.0/include/node/node.h:573:43: warning: cast between incompatible function types from ‘void (*)(v8::Local<v8::Object>)’ to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
                     (node::addon_register_func) (regfunc),                          \
                                                         ^
              /home/pi/.node-gyp/10.16.0/include/node/node.h:607:3: note: in expansion of macro ‘NODE_MODULE_X’
                 NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
                 ^~~~~~~~~~~~~
              ../src/unix_dgram.cc:420:1: note: in expansion of macro ‘NODE_MODULE’
               NODE_MODULE(unix_dgram, Initialize)
               ^~~~~~~~~~~
              In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                               from ../node_modules/nan/nan.h:47,
                               from ../src/unix_dgram.cc:5:
              /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
              /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                              reinterpret_cast<Callback>(callback), type);
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
              /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
              ../node_modules/nan/nan_object_wrap.h:66:61:   required from here
              /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
              make: *** [unix_dgram.target.mk:99: Release/obj.target/unix_dgram/src/unix_dgram.o] Fehler 1
              gyp ERR! build error
              gyp ERR! stack Error: `make` failed with exit code: 2
              gyp ERR! stack     at ChildProcess.onExit (/usr/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:262:23)
              gyp ERR! stack     at ChildProcess.emit (events.js:198:13)
              gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:248:12)
              gyp ERR! System Linux 4.19.50-v7l+
              gyp ERR! command "/usr/bin/node" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
              gyp ERR! cwd /opt/iobroker/node_modules/unix-dgram
              gyp ERR! node -v v10.16.0
              gyp ERR! node-gyp -v v3.8.0
              gyp ERR! not ok
              In file included from ../src/./serialport.h:6,
                               from ../src/serialport.cpp:1:
              ../../nan/nan.h: In function ‘void Nan::AsyncQueueWorker(Nan::AsyncWorker*)’:
              ../../nan/nan.h:2298:62: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   , reinterpret_cast<uv_after_work_cb>(AsyncExecuteComplete)
              
              
               fortsetzung folgt...
              1 Antwort Letzte Antwort
              0
              • D Offline
                D Offline
                DirtyAtze
                schrieb am zuletzt editiert von DirtyAtze
                #29
                                                                              ^
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Open(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:41:49: warning: ‘v8::String::Utf8Value::Utf8Value(v8::Local<v8::Value>)’ is deprecated: Use Isolate version [-Wdeprecated-declarations]
                   v8::String::Utf8Value path(info[0]->ToString());
                                                                 ^
                In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                                 from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                 from ../../nan/nan.h:54,
                                 from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:2892:28: note: declared here
                                   explicit Utf8Value(Local<v8::Value> obj));
                                            ^~~~~~~~~
                /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                   declarator __attribute__((deprecated(message)))
                   ^~~~~~~~~~
                ../src/serialport.cpp:48:53: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                   v8::Local<v8::Object> options = info[1]->ToObject();
                                                                     ^
                In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                 from ../../nan/nan.h:54,
                                 from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
                 Local<Object> Value::ToObject() const {
                               ^~~~~
                ../src/serialport.cpp:78:69: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_Open, (uv_after_work_cb)EIO_AfterOpen);
                                                                                     ^~~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterOpen(uv_work_t*)’:
                ../src/serialport.cpp:95:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(2, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Update(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:113:53: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                   v8::Local<v8::Object> options = info[1]->ToObject();
                                                                     ^
                In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                 from ../../nan/nan.h:54,
                                 from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
                 Local<Object> Value::ToObject() const {
                               ^~~~~
                ../src/serialport.cpp:135:71: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_Update, (uv_after_work_cb)EIO_AfterUpdate);
                                                                                       ^~~~~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterUpdate(uv_work_t*)’:
                ../src/serialport.cpp:150:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(1, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Close(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:175:70: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_Close, (uv_after_work_cb)EIO_AfterClose);
                                                                                      ^~~~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterClose(uv_work_t*)’:
                ../src/serialport.cpp:188:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(1, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Flush(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:215:70: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_Flush, (uv_after_work_cb)EIO_AfterFlush);
                                                                                      ^~~~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterFlush(uv_work_t*)’:
                ../src/serialport.cpp:231:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(1, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Set(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:250:53: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                   v8::Local<v8::Object> options = info[1]->ToObject();
                                                                     ^
                In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                 from ../../nan/nan.h:54,
                                 from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
                 Local<Object> Value::ToObject() const {
                               ^~~~~
                ../src/serialport.cpp:270:68: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_Set, (uv_after_work_cb)EIO_AfterSet);
                                                                                    ^~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterSet(uv_work_t*)’:
                ../src/serialport.cpp:285:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(1, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Get(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:314:68: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_Get, (uv_after_work_cb)EIO_AfterGet);
                                                                                    ^~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterGet(uv_work_t*)’:
                ../src/serialport.cpp:336:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(2, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE GetBaudRate(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:363:76: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_GetBaudRate, (uv_after_work_cb)EIO_AfterGetBaudRate);
                                                                                            ^~~~~~~~~~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterGetBaudRate(uv_work_t*)’:
                ../src/serialport.cpp:383:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(2, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Drain(Nan::NAN_METHOD_ARGS_TYPE)’:
                ../src/serialport.cpp:409:70: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                   uv_queue_work(uv_default_loop(), req, EIO_Drain, (uv_after_work_cb)EIO_AfterDrain);
                                                                                      ^~~~~~~~~~~~~~
                ../src/serialport.cpp: In function ‘void EIO_AfterDrain(uv_work_t*)’:
                ../src/serialport.cpp:424:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   data->callback.Call(1, argv);
                                              ^
                In file included from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                ../src/serialport.cpp: At global scope:
                ../src/serialport.cpp:430:28: warning: unnecessary parentheses in declaration of ‘ToParityEnum’ [-Wparentheses]
                 SerialPortParity NAN_INLINE(ToParityEnum(const v8::Local<v8::String>& v8str)) {
                                            ^
                ../src/serialport.cpp:449:30: warning: unnecessary parentheses in declaration of ‘ToStopBitEnum’ [-Wparentheses]
                 SerialPortStopBits NAN_INLINE(ToStopBitEnum(double stopBits)) {
                                              ^
                In file included from ../../nan/nan.h:54,
                                 from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                /home/pi/.node-gyp/10.16.0/include/node/node.h:573:43: warning: cast between incompatible function types from ‘void (*)(v8::Handle<v8::Object>)’ {aka ‘void (*)(v8::Local<v8::Object>)’} to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
                       (node::addon_register_func) (regfunc),                          \
                                                           ^
                /home/pi/.node-gyp/10.16.0/include/node/node.h:607:3: note: in expansion of macro ‘NODE_MODULE_X’
                   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
                   ^~~~~~~~~~~~~
                ../src/serialport.cpp:485:1: note: in expansion of macro ‘NODE_MODULE’
                 NODE_MODULE(serialport, init);
                 ^~~~~~~~~~~
                In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                 from ../../nan/nan.h:54,
                                 from ../src/./serialport.h:6,
                                 from ../src/serialport.cpp:1:
                /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
                /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                                reinterpret_cast<Callback>(callback), type);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
                ../../nan/nan_object_wrap.h:65:61:   required from here
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                In file included from ../src/serialport.h:6,
                                 from ../src/serialport_unix.cpp:2:
                ../../nan/nan.h: In function ‘void Nan::AsyncQueueWorker(Nan::AsyncWorker*)’:
                ../../nan/nan.h:2298:62: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     , reinterpret_cast<uv_after_work_cb>(AsyncExecuteComplete)
                                                                              ^
                In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                 from ../../nan/nan.h:54,
                                 from ../src/serialport.h:6,
                                 from ../src/serialport_unix.cpp:2:
                /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
                /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                                reinterpret_cast<Callback>(callback), type);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
                ../../nan/nan_object_wrap.h:65:61:   required from here
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                ../src/serialport_unix.cpp: In function ‘int setup(int, OpenBaton*)’:
                ../src/serialport_unix.cpp:176:60: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1005 [-Wformat-truncation=]
                     snprintf(data->errorString, sizeof(data->errorString), "Error %s Cannot open %s", strerror(errno), data->path);
                                                                            ^~~~~~~~~~~~~~~~~~~~~~~~~
                ../src/serialport_unix.cpp:176:13: note: ‘snprintf’ output 20 or more bytes (assuming 1043) into a destination of size 1024
                     snprintf(data->errorString, sizeof(data->errorString), "Error %s Cannot open %s", strerror(errno), data->path);
                     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                ../src/serialport_unix.cpp: In function ‘void EIO_Open(uv_work_t*)’:
                ../src/serialport_unix.cpp:86:60: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1003 [-Wformat-truncation=]
                     snprintf(data->errorString, sizeof(data->errorString), "Error: %s, cannot open %s", strerror(errno), data->path);
                                                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                ../src/serialport_unix.cpp:86:13: note: ‘snprintf’ output 22 or more bytes (assuming 1045) into a destination of size 1024
                     snprintf(data->errorString, sizeof(data->errorString), "Error: %s, cannot open %s", strerror(errno), data->path);
                     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                In file included from ../src/poller.cpp:1:
                ../../nan/nan.h: In function ‘void Nan::AsyncQueueWorker(Nan::AsyncWorker*)’:
                ../../nan/nan.h:2298:62: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     , reinterpret_cast<uv_after_work_cb>(AsyncExecuteComplete)
                                                                              ^
                ../src/poller.cpp: In static member function ‘static void Poller::onData(uv_poll_t*, int, int)’:
                ../src/poller.cpp:69:29: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                   obj->callback.Call(2, argv);
                                             ^
                In file included from ../src/poller.cpp:1:
                ../../nan/nan.h:1740:3: note: declared here
                   Call(int argc, v8::Local<v8::Value> argv[]) const {
                   ^~~~
                In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                 from ../../nan/nan.h:54,
                                 from ../src/poller.cpp:1:
                /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
                /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                                reinterpret_cast<Callback>(callback), type);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
                ../../nan/nan_object_wrap.h:65:61:   required from here
                /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                
                ==========================================================================
                    Finalizing installation (4/4)
                ==========================================================================
                
                Enabling autostart...
                Created symlink /etc/systemd/system/multi-user.target.wants/iobroker.service → /lib/systemd/system/iobroker.service.
                Autostart enabled!
                Fixing directory permissions...
                
                ==========================================================================
                
                    ioBroker was installed successfully
                    Open http://192.168.178.79:8081 in a browser and start configuring!
                
                ==========================================================================
                
                
                You need to re-login before doing anything else on the console!
                
                pi@raspberrypi:~ $
                
                HomoranH 1 Antwort Letzte Antwort
                0
                • D DirtyAtze
                                                                                ^
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Open(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:41:49: warning: ‘v8::String::Utf8Value::Utf8Value(v8::Local<v8::Value>)’ is deprecated: Use Isolate version [-Wdeprecated-declarations]
                     v8::String::Utf8Value path(info[0]->ToString());
                                                                   ^
                  In file included from /home/pi/.node-gyp/10.16.0/include/node/v8.h:26,
                                   from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                   from ../../nan/nan.h:54,
                                   from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:2892:28: note: declared here
                                     explicit Utf8Value(Local<v8::Value> obj));
                                              ^~~~~~~~~
                  /home/pi/.node-gyp/10.16.0/include/node/v8config.h:324:3: note: in definition of macro ‘V8_DEPRECATED’
                     declarator __attribute__((deprecated(message)))
                     ^~~~~~~~~~
                  ../src/serialport.cpp:48:53: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                     v8::Local<v8::Object> options = info[1]->ToObject();
                                                                       ^
                  In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                   from ../../nan/nan.h:54,
                                   from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
                   Local<Object> Value::ToObject() const {
                                 ^~~~~
                  ../src/serialport.cpp:78:69: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_Open, (uv_after_work_cb)EIO_AfterOpen);
                                                                                       ^~~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterOpen(uv_work_t*)’:
                  ../src/serialport.cpp:95:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(2, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Update(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:113:53: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                     v8::Local<v8::Object> options = info[1]->ToObject();
                                                                       ^
                  In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                   from ../../nan/nan.h:54,
                                   from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
                   Local<Object> Value::ToObject() const {
                                 ^~~~~
                  ../src/serialport.cpp:135:71: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_Update, (uv_after_work_cb)EIO_AfterUpdate);
                                                                                         ^~~~~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterUpdate(uv_work_t*)’:
                  ../src/serialport.cpp:150:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(1, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Close(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:175:70: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_Close, (uv_after_work_cb)EIO_AfterClose);
                                                                                        ^~~~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterClose(uv_work_t*)’:
                  ../src/serialport.cpp:188:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(1, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Flush(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:215:70: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_Flush, (uv_after_work_cb)EIO_AfterFlush);
                                                                                        ^~~~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterFlush(uv_work_t*)’:
                  ../src/serialport.cpp:231:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(1, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Set(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:250:53: warning: ‘v8::Local<v8::Object> v8::Value::ToObject() const’ is deprecated: Use maybe version [-Wdeprecated-declarations]
                     v8::Local<v8::Object> options = info[1]->ToObject();
                                                                       ^
                  In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                   from ../../nan/nan.h:54,
                                   from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:10046:15: note: declared here
                   Local<Object> Value::ToObject() const {
                                 ^~~~~
                  ../src/serialport.cpp:270:68: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_Set, (uv_after_work_cb)EIO_AfterSet);
                                                                                      ^~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterSet(uv_work_t*)’:
                  ../src/serialport.cpp:285:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(1, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Get(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:314:68: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_Get, (uv_after_work_cb)EIO_AfterGet);
                                                                                      ^~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterGet(uv_work_t*)’:
                  ../src/serialport.cpp:336:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(2, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE GetBaudRate(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:363:76: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_GetBaudRate, (uv_after_work_cb)EIO_AfterGetBaudRate);
                                                                                              ^~~~~~~~~~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterGetBaudRate(uv_work_t*)’:
                  ../src/serialport.cpp:383:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(2, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Drain(Nan::NAN_METHOD_ARGS_TYPE)’:
                  ../src/serialport.cpp:409:70: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                     uv_queue_work(uv_default_loop(), req, EIO_Drain, (uv_after_work_cb)EIO_AfterDrain);
                                                                                        ^~~~~~~~~~~~~~
                  ../src/serialport.cpp: In function ‘void EIO_AfterDrain(uv_work_t*)’:
                  ../src/serialport.cpp:424:30: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     data->callback.Call(1, argv);
                                                ^
                  In file included from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  ../src/serialport.cpp: At global scope:
                  ../src/serialport.cpp:430:28: warning: unnecessary parentheses in declaration of ‘ToParityEnum’ [-Wparentheses]
                   SerialPortParity NAN_INLINE(ToParityEnum(const v8::Local<v8::String>& v8str)) {
                                              ^
                  ../src/serialport.cpp:449:30: warning: unnecessary parentheses in declaration of ‘ToStopBitEnum’ [-Wparentheses]
                   SerialPortStopBits NAN_INLINE(ToStopBitEnum(double stopBits)) {
                                                ^
                  In file included from ../../nan/nan.h:54,
                                   from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  /home/pi/.node-gyp/10.16.0/include/node/node.h:573:43: warning: cast between incompatible function types from ‘void (*)(v8::Handle<v8::Object>)’ {aka ‘void (*)(v8::Local<v8::Object>)’} to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
                         (node::addon_register_func) (regfunc),                          \
                                                             ^
                  /home/pi/.node-gyp/10.16.0/include/node/node.h:607:3: note: in expansion of macro ‘NODE_MODULE_X’
                     NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
                     ^~~~~~~~~~~~~
                  ../src/serialport.cpp:485:1: note: in expansion of macro ‘NODE_MODULE’
                   NODE_MODULE(serialport, init);
                   ^~~~~~~~~~~
                  In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                   from ../../nan/nan.h:54,
                                   from ../src/./serialport.h:6,
                                   from ../src/serialport.cpp:1:
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
                  /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                                  reinterpret_cast<Callback>(callback), type);
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
                  ../../nan/nan_object_wrap.h:65:61:   required from here
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                  In file included from ../src/serialport.h:6,
                                   from ../src/serialport_unix.cpp:2:
                  ../../nan/nan.h: In function ‘void Nan::AsyncQueueWorker(Nan::AsyncWorker*)’:
                  ../../nan/nan.h:2298:62: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                       , reinterpret_cast<uv_after_work_cb>(AsyncExecuteComplete)
                                                                                ^
                  In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                   from ../../nan/nan.h:54,
                                   from ../src/serialport.h:6,
                                   from ../src/serialport_unix.cpp:2:
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
                  /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                                  reinterpret_cast<Callback>(callback), type);
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
                  ../../nan/nan_object_wrap.h:65:61:   required from here
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                  ../src/serialport_unix.cpp: In function ‘int setup(int, OpenBaton*)’:
                  ../src/serialport_unix.cpp:176:60: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1005 [-Wformat-truncation=]
                       snprintf(data->errorString, sizeof(data->errorString), "Error %s Cannot open %s", strerror(errno), data->path);
                                                                              ^~~~~~~~~~~~~~~~~~~~~~~~~
                  ../src/serialport_unix.cpp:176:13: note: ‘snprintf’ output 20 or more bytes (assuming 1043) into a destination of size 1024
                       snprintf(data->errorString, sizeof(data->errorString), "Error %s Cannot open %s", strerror(errno), data->path);
                       ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                  ../src/serialport_unix.cpp: In function ‘void EIO_Open(uv_work_t*)’:
                  ../src/serialport_unix.cpp:86:60: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1003 [-Wformat-truncation=]
                       snprintf(data->errorString, sizeof(data->errorString), "Error: %s, cannot open %s", strerror(errno), data->path);
                                                                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                  ../src/serialport_unix.cpp:86:13: note: ‘snprintf’ output 22 or more bytes (assuming 1045) into a destination of size 1024
                       snprintf(data->errorString, sizeof(data->errorString), "Error: %s, cannot open %s", strerror(errno), data->path);
                       ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                  In file included from ../src/poller.cpp:1:
                  ../../nan/nan.h: In function ‘void Nan::AsyncQueueWorker(Nan::AsyncWorker*)’:
                  ../../nan/nan.h:2298:62: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
                       , reinterpret_cast<uv_after_work_cb>(AsyncExecuteComplete)
                                                                                ^
                  ../src/poller.cpp: In static member function ‘static void Poller::onData(uv_poll_t*, int, int)’:
                  ../src/poller.cpp:69:29: warning: ‘v8::Local<v8::Value> Nan::Callback::Call(int, v8::Local<v8::Value>*) const’ is deprecated [-Wdeprecated-declarations]
                     obj->callback.Call(2, argv);
                                               ^
                  In file included from ../src/poller.cpp:1:
                  ../../nan/nan.h:1740:3: note: declared here
                     Call(int argc, v8::Local<v8::Value> argv[]) const {
                     ^~~~
                  In file included from /home/pi/.node-gyp/10.16.0/include/node/node.h:63,
                                   from ../../nan/nan.h:54,
                                   from ../src/poller.cpp:1:
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = node::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)]’:
                  /home/pi/.node-gyp/10.16.0/include/node/node_object_wrap.h:84:78:   required from here
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<node::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<node::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                                  reinterpret_cast<Callback>(callback), type);
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h: In instantiation of ‘void v8::PersistentBase<T>::SetWeak(P*, typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType) [with P = Nan::ObjectWrap; T = v8::Object; typename v8::WeakCallbackInfo<P>::Callback = void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)]’:
                  ../../nan/nan_object_wrap.h:65:61:   required from here
                  /home/pi/.node-gyp/10.16.0/include/node/v8.h:9502:16: warning: cast between incompatible function types from ‘v8::WeakCallbackInfo<Nan::ObjectWrap>::Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’} to ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’} [-Wcast-function-type]
                  
                  ==========================================================================
                      Finalizing installation (4/4)
                  ==========================================================================
                  
                  Enabling autostart...
                  Created symlink /etc/systemd/system/multi-user.target.wants/iobroker.service → /lib/systemd/system/iobroker.service.
                  Autostart enabled!
                  Fixing directory permissions...
                  
                  ==========================================================================
                  
                      ioBroker was installed successfully
                      Open http://192.168.178.79:8081 in a browser and start configuring!
                  
                  ==========================================================================
                  
                  
                  You need to re-login before doing anything else on the console!
                  
                  pi@raspberrypi:~ $
                  
                  HomoranH Nicht stören
                  HomoranH Nicht stören
                  Homoran
                  Global Moderator Administrators
                  schrieb am zuletzt editiert von Homoran
                  #30

                  @DirtyAtze

                  und?

                  @DirtyAtze sagte in [gelöst]Backup & Restore klappt nicht:

                  Open http://192.168.178.79:8081 in a browser and start configuring!

                  kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                  Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                  der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                  1 Antwort Letzte Antwort
                  0
                  • D Offline
                    D Offline
                    DirtyAtze
                    schrieb am zuletzt editiert von
                    #31

                    Das sagt der fix:

                    pi@raspberrypi:~ $ curl -sL https://iobroker.net/fix.sh | bash -
                    
                    ==========================================================================
                    
                        Welcome to the ioBroker installation fixer!
                        Script version: 2019-07-03
                    
                        You might need to enter your password a couple of times.
                    
                    ==========================================================================
                    
                    
                    ==========================================================================
                        Installing prerequisites (1/3)
                    ==========================================================================
                    
                    
                    ==========================================================================
                        Checking ioBroker user and directory permissions (2/3)
                    ==========================================================================
                    
                    Created /etc/sudoers.d/iobroker
                    Fixing directory permissions...
                    
                    ==========================================================================
                        Checking autostart (3/3)
                    ==========================================================================
                    
                    bash: Zeile 667: /opt/iobroker/iobroker: Keine Berechtigung
                    chmod: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden
                    chown: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden
                    Enabling autostart...
                    Autostart enabled!
                    
                    ==========================================================================
                    
                        Your installation was fixed successfully
                        Run iobroker start to start ioBroker again!
                    
                    ==========================================================================
                    
                    pi@raspberrypi:~ $
                    

                    ist das in Ordnung?

                    HomoranH AlCalzoneA 2 Antworten Letzte Antwort
                    0
                    • D DirtyAtze

                      Das sagt der fix:

                      pi@raspberrypi:~ $ curl -sL https://iobroker.net/fix.sh | bash -
                      
                      ==========================================================================
                      
                          Welcome to the ioBroker installation fixer!
                          Script version: 2019-07-03
                      
                          You might need to enter your password a couple of times.
                      
                      ==========================================================================
                      
                      
                      ==========================================================================
                          Installing prerequisites (1/3)
                      ==========================================================================
                      
                      
                      ==========================================================================
                          Checking ioBroker user and directory permissions (2/3)
                      ==========================================================================
                      
                      Created /etc/sudoers.d/iobroker
                      Fixing directory permissions...
                      
                      ==========================================================================
                          Checking autostart (3/3)
                      ==========================================================================
                      
                      bash: Zeile 667: /opt/iobroker/iobroker: Keine Berechtigung
                      chmod: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden
                      chown: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden
                      Enabling autostart...
                      Autostart enabled!
                      
                      ==========================================================================
                      
                          Your installation was fixed successfully
                          Run iobroker start to start ioBroker again!
                      
                      ==========================================================================
                      
                      pi@raspberrypi:~ $
                      

                      ist das in Ordnung?

                      HomoranH Nicht stören
                      HomoranH Nicht stören
                      Homoran
                      Global Moderator Administrators
                      schrieb am zuletzt editiert von
                      #32

                      @DirtyAtze sagte in [gelöst]Backup & Restore klappt nicht:

                      Das sagt der fix:

                      ein fix sollte jetzt nicht mehr nötig sein, aber:

                      @DirtyAtze sagte in [gelöst]Backup & Restore klappt nicht:

                      bash: Zeile 667: /opt/iobroker/iobroker: Keine Berechtigung
                      chmod: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden
                      chown: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden

                      das muss sich @AlCalzone ansehen.

                      kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                      1 Antwort Letzte Antwort
                      1
                      • D Offline
                        D Offline
                        DirtyAtze
                        schrieb am zuletzt editiert von
                        #33

                        Und da ist auch schon der "trim fehler":

                        pi@raspberrypi:~ $ iobroker status
                        iobroker is running
                        
                        Objects type: file
                        States  type: file
                        pi@raspberrypi:~ $ iobroker stop
                        pi@raspberrypi:~ $ iobroker restore
                        Please specify one of the backup names:
                        minimal_2019_07_07-20_35_35_backupiobroker.tar.gz or minimal_2019_07_07-20_35_35 or 0
                        minimal_2019_07_05-09_15_24_std_backupiobroker.tar.gz or minimal_2019_07_05-09_15_24_std or 1
                        pi@raspberrypi:~ $ iobroker restore 1
                        /opt/iobroker/node_modules/iobroker.js-controller/lib/setup/setupBackup.js:568
                                if (parseInt(name.trim(), 10).toString() === name.trim().toString()) {
                                                  ^
                        
                        TypeError: name.trim is not a function
                            at BackupRestore.restoreBackup (/opt/iobroker/node_modules/iobroker.js-controller/lib/setup/setupBackup.js:568:27)
                            at dbConnect (/opt/iobroker/node_modules/iobroker.js-controller/lib/setup.js:1474:28)
                            at Object.connected (/opt/iobroker/node_modules/iobroker.js-controller/lib/setup.js:3087:29)
                            at Immediate.<anonymous> (/opt/iobroker/node_modules/iobroker.js-controller/lib/states/statesInMemServer.js:184:26)
                            at runCallback (timers.js:705:18)
                            at tryOnImmediate (timers.js:676:5)
                            at processImmediate (timers.js:658:5)
                        pi@raspberrypi:~ $
                        
                        
                        1 Antwort Letzte Antwort
                        0
                        • D Offline
                          D Offline
                          DirtyAtze
                          schrieb am zuletzt editiert von
                          #34

                          OK, nach änder der backupSetup.js ist es jetzt tatsächlich durchgelaufen!

                          dann mal vielen Dank für die Unterstützung!!!
                          :+1: :kissing_heart:

                          1 Antwort Letzte Antwort
                          0
                          • D DirtyAtze

                            Das sagt der fix:

                            pi@raspberrypi:~ $ curl -sL https://iobroker.net/fix.sh | bash -
                            
                            ==========================================================================
                            
                                Welcome to the ioBroker installation fixer!
                                Script version: 2019-07-03
                            
                                You might need to enter your password a couple of times.
                            
                            ==========================================================================
                            
                            
                            ==========================================================================
                                Installing prerequisites (1/3)
                            ==========================================================================
                            
                            
                            ==========================================================================
                                Checking ioBroker user and directory permissions (2/3)
                            ==========================================================================
                            
                            Created /etc/sudoers.d/iobroker
                            Fixing directory permissions...
                            
                            ==========================================================================
                                Checking autostart (3/3)
                            ==========================================================================
                            
                            bash: Zeile 667: /opt/iobroker/iobroker: Keine Berechtigung
                            chmod: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden
                            chown: Zugriff auf '/opt/iobroker/iobroker' nicht möglich: Datei oder Verzeichnis nicht gefunden
                            Enabling autostart...
                            Autostart enabled!
                            
                            ==========================================================================
                            
                                Your installation was fixed successfully
                                Run iobroker start to start ioBroker again!
                            
                            ==========================================================================
                            
                            pi@raspberrypi:~ $
                            

                            ist das in Ordnung?

                            AlCalzoneA Offline
                            AlCalzoneA Offline
                            AlCalzone
                            Developer
                            schrieb am zuletzt editiert von
                            #35

                            @DirtyAtze welche Ausgabe liefert

                            ls -la /opt/iobroker 
                            

                            ?

                            Warum `sudo` böse ist: https://forum.iobroker.net/post/17109

                            1 Antwort Letzte Antwort
                            0
                            • D Offline
                              D Offline
                              DirtyAtze
                              schrieb am zuletzt editiert von
                              #36

                              Werd ich heute Abend mal schauen.

                              1 Antwort Letzte Antwort
                              0
                              • D Offline
                                D Offline
                                DirtyAtze
                                schrieb am zuletzt editiert von
                                #37

                                Sorry, etwas verspätet...

                                Screenshot_20190709-162937.png

                                AlCalzoneA 1 Antwort Letzte Antwort
                                0
                                • D DirtyAtze

                                  Sorry, etwas verspätet...

                                  Screenshot_20190709-162937.png

                                  AlCalzoneA Offline
                                  AlCalzoneA Offline
                                  AlCalzone
                                  Developer
                                  schrieb am zuletzt editiert von AlCalzone
                                  #38

                                  @DirtyAtze Ok danke ich hab ne Idee woran es liegt. Kannst du bitte noch die Ausgabe von folgendem Befehl posten?

                                  sudo getfacl /opt/iobroker/iobroker

                                  Warum `sudo` böse ist: https://forum.iobroker.net/post/17109

                                  1 Antwort Letzte Antwort
                                  0
                                  • D Offline
                                    D Offline
                                    DirtyAtze
                                    schrieb am zuletzt editiert von
                                    #39
                                    Last login: Sun Jul 14 11:14:57 2019 from 192.168.178.12
                                    pi@raspberrypi:~ $ sudo getfacl /opt/iobroker/iobroker
                                    getfacl: Entferne führende '/' von absoluten Pfadnamen
                                    # file: opt/iobroker/iobroker
                                    # owner: iobroker
                                    # group: iobroker
                                    user::rwx
                                    group::r-x
                                    group:iobroker:rwx              #effective:r-x
                                    mask::r-x
                                    other::r-x
                                    
                                    pi@raspberrypi:~ $
                                    
                                    1 Antwort Letzte Antwort
                                    0
                                    Antworten
                                    • In einem neuen Thema antworten
                                    Anmelden zum Antworten
                                    • Älteste zuerst
                                    • Neuste zuerst
                                    • Meiste Stimmen


                                    Support us

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

                                    432

                                    Online

                                    32.4k

                                    Benutzer

                                    81.5k

                                    Themen

                                    1.3m

                                    Beiträge
                                    Community
                                    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                    ioBroker Community 2014-2025
                                    logo
                                    • Anmelden

                                    • Du hast noch kein Konto? Registrieren

                                    • Anmelden oder registrieren, um zu suchen
                                    • Erster Beitrag
                                      Letzter Beitrag
                                    0
                                    • Home
                                    • Aktuell
                                    • Tags
                                    • Ungelesen 0
                                    • Kategorien
                                    • Unreplied
                                    • Beliebt
                                    • GitHub
                                    • Docu
                                    • Hilfe