Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Iobroker auf intel Nuc

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    Iobroker auf intel Nuc

    This topic has been deleted. Only users with topic management privileges can see it.
    • crunchip
      crunchip Forum Testing Most Active @Kusi last edited by

      @kusi sagte in Iobroker auf intel Nuc:

      aber Proxmox etwa 10 mal neu installiert.

      Warum?
      man muss nur die bios Einstellung vorher entsprechend anpassen, danach läuft die Proxmox Installation von ganz alleine.

      so nebenbei, verwende doch debian anstatt ubuntu

      K 1 Reply Last reply Reply Quote 0
      • K
        Kusi @crunchip last edited by Kusi

        @crunchip Ich lerne gerne, wenn du mir sagst was ich wo einstellen kann/soll. Wichtiger ist aber dass ich endlich auch mit LXC und VM eine Netzverbindung bekomme. Dasselbe Problem habe ich auch mit Debian. Ich habe Ubuntu und Debian versucht, sowie auch Debian in der VM, was ebenfalls wegen nicht vorhandener Netzverbindung scheiterte.

        Betreffend debian und ubuntu, ich bin kein linux-Crack, mir ist es egal welches linux installiert ist. Ich kenne auch nicht die Unterschiede, sowie Vor-/Nachteile.

        crunchip BBTown 2 Replies Last reply Reply Quote 0
        • D
          darkiop Most Active @crunchip last edited by

          @crunchip sagte in Iobroker auf intel Nuc:

          Wobei ich trotzdem dazu tendiere, das man Server einer festen IP zuweisen sollte und nicht per DHCP

          Absolut, das war zum Testen.

          @crunchip sagte in Iobroker auf intel Nuc:

          ch habe auf dem Proxmox direkt (ohne VM und LXC) den ioBroker installiert (für Tests).

          Bitte nochmal zurück auf Los mit der Installation 🙂

          @kusi sagte in Iobroker auf intel Nuc:

          @crunchip Ich lerne gerne, wenn du mir sagst was ich wo einstellen kann/soll. Wichtiger ist aber dass ich endlich auch mit LXC und VM eine Netzverbindung bekomme. Dasselbe Problem habe ich auch mit Debian. Ich habe Ubuntu und Debian versucht, sowie auch Debian in der VM, was ebenfalls wegen nicht vorhandener Netzverbindung scheiterte.

          Ich verstehs gerade nicht, denke das liegt am NUC11 + Proxmox:

          https://www.reddit.com/r/intelnuc/comments/n2ogdn/guide_to_installing_proxmox_on_nuc11/

          Schau mal hier #17 und #18

          K 1 Reply Last reply Reply Quote 0
          • crunchip
            crunchip Forum Testing Most Active @Kusi last edited by crunchip

            @kusi sagte in Iobroker auf intel Nuc:

            wenn du mir sagst was ich wo einstellen kann/soll

            ich kenne das Bios vom Nuc nicht, wie das genau aussieht, das sieht bei jedem PC anders aus. Letztendlich müssen die Virtualisierungsfunktionen (VT-d, VT-x...) des Prozessors aktiviert werden und möglichrweise auf Legacy Boot gestellt werden

            wie schon geschrieben, würde ich eine feste IP (ausserhalb des DHCP Bereichs) zuweisen für Proxmox.
            Am besten nochmal Proxmox neu installieren, dann ein debian iso und template hochladen.
            Anschliessend wahlweise, VM oder LXC iobroker installieren, wobei ich dir dann zu einer VM rate, da du zigbee erwähntest

            kurz mal google ...dann müsste dir scheinbar ja bei der Installation von proxmox schon diverse Meldungen zwecks Firmware (iwlwifi) angezeigt worden sein.
            scheinbar gibt es da ein Kernel Problem , siehe https://forum.proxmox.com/threads/install-on-a-11th-gen-intel-nuc.89287/

            1 Reply Last reply Reply Quote 1
            • K
              Kusi @darkiop last edited by

              @darkiop sagte in Iobroker auf intel Nuc:

              Schau mal hier #17 und #18

              04d56a72-f43e-4113-b546-498cd3098fbd-image.png
              Habe ich es falsch verstanden?

              1 Reply Last reply Reply Quote 0
              • BBTown
                BBTown @Kusi last edited by BBTown

                @kusi
                nach der Installation eines neuen, sauberen Proxmox gehst Du auf die Konsole des Proxmox:

                Proxmox Einstellungen

                nano /etc/apt/sources.list.d/pve-enterprise.list
                

                folgenden Eintrag mit "#" auskommentieren

                # deb https://enterprise.proxmox.com/debian/pve buster pve-enterprise
                

                anschließend Updates holen

                apt update && apt dist-upgrade -y
                

                Erweiterungen installieren

                apt install sudo
                apt install curl -y
                apt install lm-sensors -y
                apt install gparted -y
                

                Hardwareunterstützung VTD / amdIOMMUiommu

                nano /etc/default/grub
                

                nachfolgenden Eintrag suchen und so wie unten anpassen

                GRUB_CMDLINE_LINUX_DAFAULT="quiet intel_iommu=on"
                

                speichern und danach

                update-grub
                
                nano -w /etc/modules
                

                folgende Einträge für PCIe Passthrough hinzufügen

                vfio
                vfio_iommu_type1
                vfio_pci
                vfio_virqfd
                

                speichern und danach

                reboot
                
                dmesg | grep -e DMAR -e IOMMU
                lsmod | grep vfio
                

                danach setzt Du eine VM auf Basis von debian v.10 (Buster) auf
                dann ioBroker installieren:

                curl -sLf https://iobroker.net/install.sh | bash -
                

                und Du bist auf der sicheren Seite

                [Nachtrag]
                Einer VM eine feste IP zuweisen (klick mich)

                nano /etc/network/interfaces
                

                folgende Einträge gemäß der eigen IP-Adressbereiche anpassen

                # The loopback network interface
                auto lo
                iface lo inet loopback
                
                # The primary network interface
                allow-hotplug ens192
                # iface ens192 inet <- Das wäre DHCP
                iface ens192 inet static
                   address 192.168.178.150
                   netmask 255.255.255.0
                   gateway 192.168.178.1
                   dns-nameservers 192.168.178.1 8.8.8.8
                
                K Homoran 5 Replies Last reply Reply Quote 2
                • K
                  Kusi @BBTown last edited by

                  @bbtown sagte in Iobroker auf intel Nuc:

                  apt update && apt dist-upgrade -y

                  Proxmox neu installiert.
                  pve-enterprise.list angepasst.

                  root@Proxmox:~# nano /etc/apt/sources.list.d/pve-enterprise.list
                  
                  root@Proxmox:~# apt update && apt dist-upgrade -y
                  Err:1 http://ftp.ch.debian.org/debian buster InRelease
                    Temporary failure resolving 'ftp.ch.debian.org'
                  Err:2 http://ftp.ch.debian.org/debian buster-updates InRelease
                    Temporary failure resolving 'ftp.ch.debian.org'
                  Err:3 http://security.debian.org buster/updates InRelease
                    Temporary failure resolving 'security.debian.org'
                  Reading package lists... Done         
                  Building dependency tree       
                  Reading state information... Done
                  All packages are up to date.
                  W: Failed to fetch http://ftp.ch.debian.org/debian/dists/buster/InRelease  Temporary failure resolving 'ftp.ch.debian.org'
                  W: Failed to fetch http://ftp.ch.debian.org/debian/dists/buster-updates/InRelease  Temporary failure resolving 'ftp.ch.debian.org'
                  W: Failed to fetch http://security.debian.org/dists/buster/updates/InRelease  Temporary failure resolving 'security.debian.org'
                  W: Some index files failed to download. They have been ignored, or old ones used instead.
                  Reading package lists... Done
                  Building dependency tree       
                  Reading state information... Done
                  Calculating upgrade... Done
                  0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
                  
                  BBTown 1 Reply Last reply Reply Quote 0
                  • Homoran
                    Homoran Global Moderator Administrators @BBTown last edited by

                    @bbtown Super Anleitung! Danke!

                    @bbtown sagte in Iobroker auf intel Nuc:

                    folgende Einträge gemäß der eigen IP-Adressbereiche anpassen

                    insbesondere auch darauf achten, dass die gewählte IP nicht im DHCP-Bereich des Routers liegt.

                    1 Reply Last reply Reply Quote 1
                    • BBTown
                      BBTown @Kusi last edited by

                      @kusi
                      Du hast kein Internet

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

                        @bbtown War da nicht noch was mit dem no-subscription repo

                        edit:
                        https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_no_subscription_repo

                        BBTown 1 Reply Last reply Reply Quote 0
                        • K
                          Kusi @BBTown last edited by

                          @bbtown DNS war falsch. Nun lädt er.

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

                            @homoran sagte in Iobroker auf intel Nuc:

                            @bbtown War da nicht noch was mit dem no-subscription repo

                            edit:
                            https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_no_subscription_repo

                            dafür war mein erster Eintrag, das Auskommentieren der Zeile

                            # deb https://enterprise.proxmox.com/debian/pve buster pve-enterprise
                            
                            Homoran 1 Reply Last reply Reply Quote 0
                            • K
                              Kusi @BBTown last edited by Kusi

                              @bbtown wo und welche Debian v.10 soll ich herunterladen?

                              debian-10.10.0-amd64-netinst <--- ist dies die korrekte?

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

                                @bbtown sagte in Iobroker auf intel Nuc:

                                dafür war mein erster Eintrag, das Auskommentieren der Zeile

                                ich hab das in meinen Notizen zusätzlich

                                und unbedingt enterprise deaktivieren:
                                root@pve:~# nano /etc/apt/sources.list.d/pve-enterprise.list

                                aber soweit ich es in Erinnerung habe funktionieren ohne das no-subscription repo die automatischen nächtlichen Updates nicht

                                BBTown 1 Reply Last reply Reply Quote 0
                                • BBTown
                                  BBTown @Kusi last edited by

                                  @kusi sagte in Iobroker auf intel Nuc:

                                  @bbtown wo und welche Debian v.10 soll ich herunterladen?

                                  debian-10.10.0-amd64-netinst <--- ist dies die korrekte?

                                  sieht gut aus 👍

                                  K 1 Reply Last reply Reply Quote 1
                                  • K
                                    Kusi @BBTown last edited by

                                    @bbtown
                                    1ae9bcf1-357d-4182-9a43-2215453ba0ab-image.png

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

                                      @homoran
                                      funktionieren denn "automatischen Updates" mittlerweile ohne Subscription?
                                      Mir werden mögliche Updates angezeigt, jedoch stoße ich diese immer manuell an?!?

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

                                        @bbtown sagte in Iobroker auf intel Nuc:

                                        funktionieren denn "automatischen Updates" mittlerweile ohne Subscription?

                                        ja!
                                        aber nur mit dem no-subscription repo, sonst kommt ne rote Fehlermeldung

                                        EDIT:
                                        proxmox_updates.png

                                        oder reden wir von verschiedenen Dingen?

                                        EDIT2:

                                        root@iobroker-pve:~# apt update
                                        Hit:1 http://security.debian.org stretch/updates InRelease
                                        Ign:2 http://ftp.de.debian.org/debian stretch InRelease                     
                                        Hit:3 http://ftp.de.debian.org/debian stretch Release                       
                                        Hit:5 http://download.proxmox.com/debian/pve stretch InRelease    
                                        Reading package lists... Done          
                                        Building dependency tree       
                                        Reading state information... Done
                                        142 packages can be upgraded. Run 'apt list --upgradable' to see them.
                                        root@iobroker-pve:~# apt list --upgradeable
                                        Listing... Done
                                        

                                        Das sieht allerdings anders aus 😞

                                        crunchip 1 Reply Last reply Reply Quote 0
                                        • BBTown
                                          BBTown @Kusi last edited by

                                          @kusi sagte in Iobroker auf intel Nuc:

                                          @bbtown
                                          1ae9bcf1-357d-4182-9a43-2215453ba0ab-image.png

                                          2 cores sind mehr als genug
                                          4 GB RAM
                                          15 GB HDD

                                          K 1 Reply Last reply Reply Quote 0
                                          • K
                                            Kusi @BBTown last edited by

                                            @bbtown
                                            9d028d55-6497-4ffd-8e81-06ff36dd3f8f-image.png

                                            Ich habe Schweiz --> deb.debian.org --> kein Proxy gewählt

                                            BBTown crunchip 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

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

                                            985
                                            Online

                                            31.9k
                                            Users

                                            80.2k
                                            Topics

                                            1.3m
                                            Posts

                                            iobroker nuc
                                            13
                                            192
                                            21522
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo