<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[iobroker fehler bei installation]]></title><description><![CDATA[<p dir="auto">Hallo Zusammen</p>
<p dir="auto">habe iobroker gerade auf einen rock64 installiert, Grundsystem ist ein Armbian 21.02.03<br />
bekomme bei der Installation folgenden Fehler, an was kann das liegen?</p>
<p dir="auto">Danke für eure Rückmeldung</p>
<pre><code>root@rock64:~# node -v
v12.21.0
root@rock64:~# nodejs -v
v12.21.0
root@rock64:~# npm -v
6.14.11
root@rock64:~# curl -sLf https://iobroker.net/install.sh | bash -
library: loaded
Library version=2021-01-23

==========================================================================

    Welcome to the ioBroker installer!
    Installer version: 2020-12-07

==========================================================================


==========================================================================
    Installing prerequisites (1/4)
==========================================================================

Hit:1 http://security.debian.org buster/updates InRelease
Hit:2 http://deb.debian.org/debian buster InRelease
Hit:3 http://deb.debian.org/debian buster-updates InRelease
Hit:4 http://deb.debian.org/debian buster-backports InRelease
Hit:5 https://deb.nodesource.com/node_12.x buster InRelease
Hit:6 https://armbian.systemonachip.net/apt buster InRelease
Reading package lists... Done
Changing npm registry to https://registry.npmjs.org
Installed acl
Installed gcc-c++
Installed libavahi-compat-libdnssd-dev
Installed libudev-dev
Installed libpam0g-dev
Installed libcairo2-dev
Installed libpango1.0-dev
Installed libjpeg-dev
Installed libgif-dev
Installed librsvg2-dev
Installed python-dev

==========================================================================
    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 ../../nan/nan.h:56,
                 from ../src/main.cpp:3:
/root/.cache/node-gyp/12.21.0/include/node/node.h:737:43: warning: cast between incompatible function types from ‘void (*)(v8::Local&lt;v8::Object&gt;)’ to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local&lt;v8::Object&gt;, v8::Local&lt;v8::Value&gt;, void*)’} [-Wcast-function-type]
       (node::addon_register_func) (regfunc),                          \
                                           ^
/root/.cache/node-gyp/12.21.0/include/node/node.h:771: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 ../../nan/nan.h:56,
                 from ../src/unix_dgram.cc:5:
/root/.cache/node-gyp/12.21.0/include/node/node.h:737:43: warning: cast between incompatible function types from ‘void (*)(v8::Local&lt;v8::Object&gt;)’ to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local&lt;v8::Object&gt;, v8::Local&lt;v8::Value&gt;, void*)’} [-Wcast-function-type]
       (node::addon_register_func) (regfunc),                          \
                                           ^
/root/.cache/node-gyp/12.21.0/include/node/node.h:771:3: note: in expansion of macro ‘NODE_MODULE_X’
   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
   ^~~~~~~~~~~~~
../src/unix_dgram.cc:404:1: note: in expansion of macro ‘NODE_MODULE’
 NODE_MODULE(unix_dgram, Initialize)
 ^~~~~~~~~~~
../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Open(Nan::NAN_METHOD_ARGS_TYPE)’:
../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 ‘Nan::NAN_METHOD_RETURN_TYPE Update(Nan::NAN_METHOD_ARGS_TYPE)’:
../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 ‘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 ‘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 ‘Nan::NAN_METHOD_RETURN_TYPE Set(Nan::NAN_METHOD_ARGS_TYPE)’:
../src/serialport.cpp:271: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_AfterSe );
                                                                    ^~~~~~~~~~~
../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Get(Nan::NAN_METHOD_ARGS_TYPE)’:
../src/serialport.cpp:316: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_AfterGe );
                                                                    ^~~~~~~~~~~
../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE GetBaudRate(Nan::NAN_METHOD_ARGS_TYPE)’:
../src/serialport.cpp:366: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 ‘Nan::NAN_METHOD_RETURN_TYPE Drain(Nan::NAN_METHOD_ARGS_TYPE)’:
../src/serialport.cpp:412: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: At global scope:
../src/serialport.cpp:433:28: warning: unnecessary parentheses in declaration of ‘ToParityEnum’ [-Wparentheses]
 SerialPortParity NAN_INLINE(ToParityEnum(const v8::Local&lt;v8::String&gt;&amp; v8str)) {
                            ^
../src/serialport.cpp:452:30: warning: unnecessary parentheses in declaration of ‘ToStopBitEnum’ [-Wparentheses]
 SerialPortStopBits NAN_INLINE(ToStopBitEnum(double stopBits)) {
                              ^
In file included from ../../../nan/nan.h:56,
                 from ../src/./serialport.h:6,
                 from ../src/serialport.cpp:1:
/root/.cache/node-gyp/12.21.0/include/node/node.h:737:43: warning: cast between incompatible function types from ‘void (*)(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE)’ {aka ‘void (*)(v8::Local&lt;v8::Object&gt;)’} to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local&lt;v8::Object&gt;, v8::Local&lt;v8::Value&gt;, void*)’} [-Wcast-function-type]
       (node::addon_register_func) (regfunc),                          \
                                           ^
/root/.cache/node-gyp/12.21.0/include/node/node.h:771:3: note: in expansion of macro ‘NODE_MODULE_X’
   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
   ^~~~~~~~~~~~~
../src/serialport.cpp:486:1: note: in expansion of macro ‘NODE_MODULE’
 NODE_MODULE(serialport, init);
 ^~~~~~~~~~~
../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-&gt;errorString, sizeof(data-&gt;errorString), "Error %s Cannot open %s", strerror(errno), data-&gt;path);
                                                            ^~~~~~~~~~~~~~~~~~~~~~~~~
../src/serialport_unix.cpp:176:13: note: ‘snprintf’ output 20 or more bytes (assuming 1043) into a destination of size 1024
     snprintf(data-&gt;errorString, sizeof(data-&gt;errorString), "Error %s Cannot open %s", strerror(errno), data-&gt;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-&gt;errorString, sizeof(data-&gt;errorString), "Error: %s, cannot open %s", strerror(errno), data-&gt;path);
                                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/serialport_unix.cpp:86:13: note: ‘snprintf’ output 22 or more bytes (assuming 1045) into a destination of size 1024
     snprintf(data-&gt;errorString, sizeof(data-&gt;errorString), "Error: %s, cannot open %s", strerror(errno), data-&gt;path);
     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ATTENTION: Error reporting via Sentry will be activated on next start of ioBroker

ioBroker wants to make sure to deliver the most stable smart home system.
To allow this we decided to implement an automatic error and crash reporting solution into the js-controller and also into adapters.

THIS REPORTING WILL BE ENABLED WITH THE NEXT START OF YOUR IOBROKER!

For any error that leads to the crash of the js-controller or one of the relevant adapters the error details are send to a server. For the js-controller and core adapters this server is located and operated in germany. For community adapters please check the Github Readme of the affected adapter for details which Sentry server is used.

If you want to disable the error reporting you can use the command
'iobroker plugin disable sentry'
This command will also make sure that no adapter that runs on this host will send crash reporting data to sentry.

</code></pre>
]]></description><link>https://forum.iobroker.net/topic/43113/iobroker-fehler-bei-installation</link><generator>RSS for Node</generator><lastBuildDate>Thu, 21 May 2026 23:21:05 GMT</lastBuildDate><atom:link href="https://forum.iobroker.net/topic/43113.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 10 Mar 2021 14:39:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 21:42:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> sagte in <a href="/post/596457">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a> ok alles klar dann muss ich mir ja keine Sorgen machen wenn es so ok ist</p>
</blockquote>
<p dir="auto">Ja, alles richtig. Unix/Linux ist ja schon immer ein Multiuser system gewesen. Da soll nicht jeder Dödel-User den Server herunterfahren dürfen.</p>
]]></description><link>https://forum.iobroker.net/post/596460</link><guid isPermaLink="true">https://forum.iobroker.net/post/596460</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 21:42:13 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 21:38:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a> Ja, grace time. Gibt da mehrere Ansätze. uid 1000 darf mehr als uid 1001 oder so. Kann man alles konfigurieren. Der User iobroker darf ja auch nicht viel. Außerhalb von /opt/iobroker fast nix.</p>
]]></description><link>https://forum.iobroker.net/post/596459</link><guid isPermaLink="true">https://forum.iobroker.net/post/596459</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 21:38:31 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 21:37:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a> ok alles klar dann muss ich mir ja keine Sorgen machen wenn es so ok ist</p>
]]></description><link>https://forum.iobroker.net/post/596457</link><guid isPermaLink="true">https://forum.iobroker.net/post/596457</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 21:37:03 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 21:35:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thomas-braun" aria-label="Profile: thomas-braun">@<bdi>thomas-braun</bdi></a> sagte in <a href="/post/596454">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">. Für gewöhnlich wird dem ersten User (uid 1000) der root-gleiche Zugriff gewährt.</p>
</blockquote>
<p dir="auto">ist bei raspbian so. Hat mich immer gestört.</p>
<p dir="auto">Bei Armbian kann man immer eine zeitlang mit sudo arbeiten ohne nochmal ein Passwort eingeben zu müssen.</p>
]]></description><link>https://forum.iobroker.net/post/596456</link><guid isPermaLink="true">https://forum.iobroker.net/post/596456</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Wed, 10 Mar 2021 21:35:13 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 21:32:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> sagte in <a href="/post/596449">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">ich muss jetzt zum Beispiel bei sudo reboot das passwort eingeben ist das so i.o?</p>
</blockquote>
<p dir="auto">das ist u.a. der sinn eines unprivilegierten Users.<br />
Sicherheit!</p>
]]></description><link>https://forum.iobroker.net/post/596455</link><guid isPermaLink="true">https://forum.iobroker.net/post/596455</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Wed, 10 Mar 2021 21:32:36 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 21:34:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> Das kommt darauf an welche Rechte dem User via sudo zugestanden werden. Kann man alles einstellen. Für gewöhnlich wird dem ersten User (uid 1000) der root-gleiche Zugriff gewährt. Wie das bei armbian Default ist weiß ich nicht.<br />
Oder es gibt eine 'grace time', in der nach erstmaligen eingeben des Passwortes nicht mehr gefragt wird.</p>
]]></description><link>https://forum.iobroker.net/post/596454</link><guid isPermaLink="true">https://forum.iobroker.net/post/596454</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 21:34:04 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 21:24:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thomas-braun" aria-label="Profile: thomas-braun">@<bdi>thomas-braun</bdi></a> hab wahrscheinlich den reboot zu früh durchgeführt die Installation war noch nicht fertig denke ich.<br />
Ansonsten hätte ich noch ne Frage :ich muss jetzt zum Beispiel bei sudo reboot das passwort eingeben ist das so i.o?</p>
]]></description><link>https://forum.iobroker.net/post/596449</link><guid isPermaLink="true">https://forum.iobroker.net/post/596449</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 21:24:05 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 20:51:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a><br />
Hast du es jetzt anders gemacht und der admin war sofort vorhanden?</p>
]]></description><link>https://forum.iobroker.net/post/596435</link><guid isPermaLink="true">https://forum.iobroker.net/post/596435</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 20:51:42 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 20:50:38 GMT]]></title><description><![CDATA[<p dir="auto">So alles läuft wieder danke</p>
]]></description><link>https://forum.iobroker.net/post/596432</link><guid isPermaLink="true">https://forum.iobroker.net/post/596432</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 20:50:38 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 18:57:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a> nein glaube de_De hab ich genommen kam mir am besten vor<br />
Edit habe es eben neu aufgesetzt ausgewählt habe ich de_De_utf8</p>
]]></description><link>https://forum.iobroker.net/post/596361</link><guid isPermaLink="true">https://forum.iobroker.net/post/596361</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 18:57:38 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 18:13:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> sagte in <a href="/post/596357">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">de_de</p>
</blockquote>
<p dir="auto">hast du hoffentlich utf-8 genommen, nicht das seltsame, was da alternativ war</p>
]]></description><link>https://forum.iobroker.net/post/596360</link><guid isPermaLink="true">https://forum.iobroker.net/post/596360</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Wed, 10 Mar 2021 18:13:02 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 18:12:52 GMT]]></title><description><![CDATA[<p dir="auto">Hab nur nicht den benutzerwechsel vollzogen</p>
]]></description><link>https://forum.iobroker.net/post/596359</link><guid isPermaLink="true">https://forum.iobroker.net/post/596359</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 18:12:52 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 18:12:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> Kann nicht sein. Dann wäre /root nicht genutzt worden.</p>
]]></description><link>https://forum.iobroker.net/post/596358</link><guid isPermaLink="true">https://forum.iobroker.net/post/596358</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 18:12:15 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 18:11:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a> hab es genauso gemacht.</p>
<p dir="auto">Zeitzonen und de_de wurde auch abgefragt</p>
]]></description><link>https://forum.iobroker.net/post/596357</link><guid isPermaLink="true">https://forum.iobroker.net/post/596357</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 18:11:41 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 18:05:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thomas-braun" aria-label="Profile: thomas-braun">@<bdi>thomas-braun</bdi></a> sagte in <a href="/post/596346">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">Vielleicht hatte das Modul noch den root als owner und kann dann vom user iobroker nicht angefasst werden.</p>
</blockquote>
<p dir="auto">ich hab schon ewig nicht mehr iobroker als root installiert. Ganz früher war das notwendig und hält sich immer noch.<br />
Wobei es <strong>auch</strong> unter root installierbar sein sollte.</p>
<p dir="auto">ich habe gar nicht vor sooo langer Zeit nochmal einen Rock64 aufgesetzt, aus dem Nichts - ohne Probleme</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a><br />
Einfach nur armbian - da werden die locales und Zeitzonen jetzt sogar während der Installation abgefragt - anschließend ein Userwechsel, dann <code>sudo apt update &amp;&amp; sudo apt upgrade</code> und dann nur noch den Einzeiler <code>curl -sLf https://iobroker.net/install.sh | bash -</code></p>
<p dir="auto">Danach <strong>muss</strong> iobroker laufen</p>
]]></description><link>https://forum.iobroker.net/post/596355</link><guid isPermaLink="true">https://forum.iobroker.net/post/596355</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Wed, 10 Mar 2021 18:05:35 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 17:48:27 GMT]]></title><description><![CDATA[<p dir="auto">Ok alles klar ich Bügel morgen nochmal armbian neu drauf und dann wechsel ich den Benutzer und lege neu los.</p>
<p dir="auto">Grund warum ich das eigentlich gemacht habe, war weil ich nur Probleme mit jarvis hatte welches andauernd einen red screen brachte und erhoffe mir durch eine neuinstallation Besserung.</p>
]]></description><link>https://forum.iobroker.net/post/596347</link><guid isPermaLink="true">https://forum.iobroker.net/post/596347</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 17:48:27 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 17:45:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a><br />
Vielleicht hatte das Modul noch den root als owner und kann dann vom user iobroker nicht angefasst werden. :-)</p>
]]></description><link>https://forum.iobroker.net/post/596346</link><guid isPermaLink="true">https://forum.iobroker.net/post/596346</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 17:45:51 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 17:41:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> sagte in <a href="/post/596327">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">der admin Adapter war nicht installiert.</p>
</blockquote>
<p dir="auto">das ist aber wirklich strange!<br />
der admin ist Standard</p>
]]></description><link>https://forum.iobroker.net/post/596342</link><guid isPermaLink="true">https://forum.iobroker.net/post/596342</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Wed, 10 Mar 2021 17:41:13 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 17:33:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> sagte in <a href="/post/596327">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">Sollte ich nochmal von vorne anfangen und iobroker unter den angelegten Benutzer neu installieren?</p>
</blockquote>
<p dir="auto">Ich würd's auch von vorneherein ordentlich machen.</p>
]]></description><link>https://forum.iobroker.net/post/596338</link><guid isPermaLink="true">https://forum.iobroker.net/post/596338</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 17:33:29 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 17:26:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> Vielleicht besser.</p>
<p dir="auto">Und spar dir die manuelle Installation von Node und NPM.</p>
<p dir="auto">Das wird automatisch durch den installer erledigt.</p>
]]></description><link>https://forum.iobroker.net/post/596332</link><guid isPermaLink="true">https://forum.iobroker.net/post/596332</guid><dc:creator><![CDATA[wendy2702]]></dc:creator><pubDate>Wed, 10 Mar 2021 17:26:02 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 17:24:16 GMT]]></title><description><![CDATA[<p dir="auto">Ok alles klar, hatte das Problem das iobroker nicht erreichbar war. bin dann die Seite durchgegangen was ist wenn iobroker nicht erreichbar ist und das Ergebnis war der admin Adapter war nicht installiert. Habe dann auf Port 8091 einen neuen angelegt, dann konnte ich iobroker über den Browser erreichen habe einen neuen admin installiert und den 8091 gelöscht.<br />
Sollte ich nochmal von vorne anfangen und iobroker unter den angelegten Benutzer neu installieren?</p>
]]></description><link>https://forum.iobroker.net/post/596327</link><guid isPermaLink="true">https://forum.iobroker.net/post/596327</guid><dc:creator><![CDATA[eule66]]></dc:creator><pubDate>Wed, 10 Mar 2021 17:24:16 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 15:46:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a> Das habe ich ganz stark vermutet, das ist ja auch durch die Bank so üblich bei allem was mit *bian zutun hat.<br />
Im Gegensatz zum root-Login, das ist ganz und gar unüblich und falsch.</p>
]]></description><link>https://forum.iobroker.net/post/596262</link><guid isPermaLink="true">https://forum.iobroker.net/post/596262</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 15:46:36 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 15:44:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thomas-braun" aria-label="Profile: thomas-braun">@<bdi>thomas-braun</bdi></a> sagte in <a href="/post/596257">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">Am root-login...</p>
</blockquote>
<p dir="auto">Dabei zwingt auch Armbian inzwischen den User einen Normalo-User anzulegen und fordert auf, sich danach als dieser anzumelden <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f602.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--joy" style="height:23px;width:auto;vertical-align:middle" title=":joy:" alt="😂" /></p>
]]></description><link>https://forum.iobroker.net/post/596261</link><guid isPermaLink="true">https://forum.iobroker.net/post/596261</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Wed, 10 Mar 2021 15:44:19 GMT</pubDate></item><item><title><![CDATA[Reply to iobroker fehler bei installation on Wed, 10 Mar 2021 15:40:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eule66" aria-label="Profile: eule66">@<bdi>eule66</bdi></a> sagte in <a href="/post/596228">iobroker fehler bei installation</a>:</p>
<blockquote>
<p dir="auto">an was kann das liegen?</p>
</blockquote>
<p dir="auto">Am root-login...</p>
<p dir="auto">Keine Fehler zu sehen, man installiert es trotzdem nicht als root.</p>
]]></description><link>https://forum.iobroker.net/post/596257</link><guid isPermaLink="true">https://forum.iobroker.net/post/596257</guid><dc:creator><![CDATA[Thomas Braun]]></dc:creator><pubDate>Wed, 10 Mar 2021 15:40:29 GMT</pubDate></item></channel></rss>