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

  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...

NEWS

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

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

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

[gelöst]CC2531 an proxmox an LXC durchreichen scheitert...

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
proxmox lxc cc2531
62 Beiträge 15 Kommentatoren 15.2k Aufrufe 20 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.
  • XxJooOX Offline
    XxJooOX Offline
    XxJooO
    schrieb am zuletzt editiert von XxJooO
    #4

    Mmmmhhh,

    nachdem @arteck die Benamsung korrigiert hat wurde der Adapter neu installiert. Auf NUC 2 sieht die Oberfläche jetzt wieder wie die auf NUC 1 aus.

    Auch hat sich das Log jetzt komplett geändert:

    zigbee.0	2020-02-04 16:38:02.353	error	(1204) Error: Error while opening serialport 'Error: Error: Permission denied, cannot open /dev/ttyACM0' at Znp.<anonymous> (/opt/iobroker/node_modules/zigbee-herdsman/dist/adapter/z-stack/znp/znp
    zigbee.0	2020-02-04 16:38:02.352	error	(1204) Failed to start Zigbee
    

    Da steht noch viel mehr
    21fba2e9-c7dc-4f2d-b4b0-288b8852d759-image.png

    ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

    1 Antwort Letzte Antwort
    0
    • XxJooOX Offline
      XxJooOX Offline
      XxJooO
      schrieb am zuletzt editiert von
      #5

      Irgendjemand hat doch wohl seinen CC2531 unter proxmox an einen LXC durchgereicht - wenn ja wie?

      ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

      1 Antwort Letzte Antwort
      0
      • XxJooOX Offline
        XxJooOX Offline
        XxJooO
        schrieb am zuletzt editiert von
        #6

        Hallo Leute,

        ich habe die Lösung gefunden!

        Folgendes muss gemacht werden:

        root@pve:~# lsusb
        Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
        Bus 001 Device 004: ID 8087:0aaa Intel Corp. 
        Bus 001 Device 003: ID 0451:16a8 Texas Instruments, Inc. 
        Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
        Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
        root@pve:~# ls -l /dev/ttyACM0
        crw-rw-rw- 1 root dialout 166, 0 Feb  5 09:35 /dev/ttyACM0
        root@pve:~# ls -l /dev/bus/usb/001/003
        crw-rw-r-- 1 root root 189, 2 Feb  5 08:05 /dev/bus/usb/001/003
        

        Man sieht also den Stick an Bus 001 Device 003.
        Dies ergibt die ID 189:2.
        Der Stick wird als ttyACM0 angelegt und der hat die ID 166:0
        Man muss einfach beides in die .conf-Datei des LXC eintragen, das sieht dann so aus:

        arch: amd64
        cores: 4
        features: keyctl=1,nesting=1
        hostname: ioBrokerDebian10
        memory: 8192
        net0: name=eth0,bridge=vmbr0,firewall=1,gw=192.168.178.1,hwaddr=2E:81:9B:26:E3:3A,ip=192.168.178.6/24,type=veth
        onboot: 1
        ostype: debian
        rootfs: local-lvm:vm-202-disk-1,size=20G
        swap: 0
        unprivileged: 1
        lxc.cgroup.devices.allow: c 189:* rwm
        lxc.mount.entry: /dev/bus/usb/001/003 dev/bus/usb/001/003 none bind,optional,create=file
        lxc.cgroup.devices.allow: c 166:* rwm
        lxc.mount.entry: /dev/ttyACM0 dev/ttyACM0 none bind,optional,create=file
        

        Danach noch ein

        chmod o+rw /dev/ttyACM0
        

        Danach wird der Container neu gestartet und die Instanz wird grün...

        ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

        metaxaM 1 Antwort Letzte Antwort
        1
        • XxJooOX Offline
          XxJooOX Offline
          XxJooO
          schrieb am zuletzt editiert von XxJooO
          #7

          Ergänzung:

          im letzten Post ist das

          chmod o+rw /dev/ttyACM0
          

          der entscheidende Schritt, aber nicht alleine, da das zum Einen einen Reboot des proxmox-Host nicht übersteht und zum Anderen noch etwas fehlt.

          Ich habe mich deshalb schlau gemacht, wie man unter Debian 10 rc.local wieder reaktiviert und dann eine rc.local mit folgendem Inhalt erstellt:

          #!/bin/sh -e
          #
          # rc.local
          #
          # This script is executed at the end of each multiuser runlevel.
          # Make sure that the script will "exit 0" on success or any other
          # value on error.
          #
          # In order to enable or disable this script just change the execution
          # bits.
          #
          # By default this script does nothing.
          
          chmod o+rw /dev/ttyACM0
          chmod o+rw /dev/bus/usb/001/003
          exit 0
          

          jetzt wird der ganze Eingriff persistent und übersteht problemlos einen Host-Reboot!

          ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

          XxJooOX amg_666A 2 Antworten Letzte Antwort
          3
          • H Offline
            H Offline
            hoktar
            schrieb am zuletzt editiert von
            #8

            Hi,
            danke für die umfängliche Anleitung. ich habe nur noch nicht verstanden wo ich die rc.local finde/erstelle. kannst du das auch noch mal näher erklären?

            Was mir an der ganzen Sache aber auch schon aufgefallen ist und bei mir zu Problemen geführt hat, ist: wenn man den Stick abzieht und wieder in dieselbe Buchse steckt, bekommt der immer eine neue Device Nummer. Muss ich dann jedes Mal trotzdem alles neu machen?

            mfg

            1 Antwort Letzte Antwort
            0
            • XxJooOX XxJooO

              Ergänzung:

              im letzten Post ist das

              chmod o+rw /dev/ttyACM0
              

              der entscheidende Schritt, aber nicht alleine, da das zum Einen einen Reboot des proxmox-Host nicht übersteht und zum Anderen noch etwas fehlt.

              Ich habe mich deshalb schlau gemacht, wie man unter Debian 10 rc.local wieder reaktiviert und dann eine rc.local mit folgendem Inhalt erstellt:

              #!/bin/sh -e
              #
              # rc.local
              #
              # This script is executed at the end of each multiuser runlevel.
              # Make sure that the script will "exit 0" on success or any other
              # value on error.
              #
              # In order to enable or disable this script just change the execution
              # bits.
              #
              # By default this script does nothing.
              
              chmod o+rw /dev/ttyACM0
              chmod o+rw /dev/bus/usb/001/003
              exit 0
              

              jetzt wird der ganze Eingriff persistent und übersteht problemlos einen Host-Reboot!

              XxJooOX Offline
              XxJooOX Offline
              XxJooO
              schrieb am zuletzt editiert von
              #9

              @hoktar
              wenn Du dem rc.local-Link folgst, dann werden da die Verzeichnisse gezeigt, in denen die Files erstellt werden. In dem Link wird allerdings der Inhalt über den Befehl

              cat
              

              erzeugt. Das hat bei mir auch nicht funktioniert. Ich habe die Dateien dann mit

              nano
              

              erstellt und dann ging es. Auf Deine letzte Frage kann ich Dir leider keine Antwort geben. Allerdings verstehe ich gar nicht, warum dazu die Notwendigkeit besteht. Seitdem ich meinen Stick eingesteckt habe, hat er den NUC nicht mehr verlassen...
              Grüße

              ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

              Kalle BlomquistK 1 Antwort Letzte Antwort
              0
              • XxJooOX XxJooO

                @hoktar
                wenn Du dem rc.local-Link folgst, dann werden da die Verzeichnisse gezeigt, in denen die Files erstellt werden. In dem Link wird allerdings der Inhalt über den Befehl

                cat
                

                erzeugt. Das hat bei mir auch nicht funktioniert. Ich habe die Dateien dann mit

                nano
                

                erstellt und dann ging es. Auf Deine letzte Frage kann ich Dir leider keine Antwort geben. Allerdings verstehe ich gar nicht, warum dazu die Notwendigkeit besteht. Seitdem ich meinen Stick eingesteckt habe, hat er den NUC nicht mehr verlassen...
                Grüße

                Kalle BlomquistK Offline
                Kalle BlomquistK Offline
                Kalle Blomquist
                schrieb am zuletzt editiert von
                #10

                @XxJooO Dank Dir!! Hat sehr gut funktioniert. Es läuft iobroker bei mir auch im Container mit dem CC2531.
                :+1: :clap:

                1 Antwort Letzte Antwort
                0
                • XxJooOX XxJooO

                  Hallo Leute,

                  ich habe die Lösung gefunden!

                  Folgendes muss gemacht werden:

                  root@pve:~# lsusb
                  Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                  Bus 001 Device 004: ID 8087:0aaa Intel Corp. 
                  Bus 001 Device 003: ID 0451:16a8 Texas Instruments, Inc. 
                  Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
                  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                  root@pve:~# ls -l /dev/ttyACM0
                  crw-rw-rw- 1 root dialout 166, 0 Feb  5 09:35 /dev/ttyACM0
                  root@pve:~# ls -l /dev/bus/usb/001/003
                  crw-rw-r-- 1 root root 189, 2 Feb  5 08:05 /dev/bus/usb/001/003
                  

                  Man sieht also den Stick an Bus 001 Device 003.
                  Dies ergibt die ID 189:2.
                  Der Stick wird als ttyACM0 angelegt und der hat die ID 166:0
                  Man muss einfach beides in die .conf-Datei des LXC eintragen, das sieht dann so aus:

                  arch: amd64
                  cores: 4
                  features: keyctl=1,nesting=1
                  hostname: ioBrokerDebian10
                  memory: 8192
                  net0: name=eth0,bridge=vmbr0,firewall=1,gw=192.168.178.1,hwaddr=2E:81:9B:26:E3:3A,ip=192.168.178.6/24,type=veth
                  onboot: 1
                  ostype: debian
                  rootfs: local-lvm:vm-202-disk-1,size=20G
                  swap: 0
                  unprivileged: 1
                  lxc.cgroup.devices.allow: c 189:* rwm
                  lxc.mount.entry: /dev/bus/usb/001/003 dev/bus/usb/001/003 none bind,optional,create=file
                  lxc.cgroup.devices.allow: c 166:* rwm
                  lxc.mount.entry: /dev/ttyACM0 dev/ttyACM0 none bind,optional,create=file
                  

                  Danach noch ein

                  chmod o+rw /dev/ttyACM0
                  

                  Danach wird der Container neu gestartet und die Instanz wird grün...

                  metaxaM Offline
                  metaxaM Offline
                  metaxa
                  schrieb am zuletzt editiert von
                  #11

                  @XxJooO sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                  ich habe die Lösung gefunden!
                  Folgendes muss gemacht werden:

                  Servus!
                  Irgendetwas mache ich falsch, du empfiehlst:

                  root@pve:~# lsusb
                  Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                  Bus 001 Device 004: ID 8087:0aaa Intel Corp. 
                  Bus 001 Device 003: ID 0451:16a8 Texas Instruments, Inc. 
                  Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
                  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                  

                  Ich mache das auch dirket am NUC in Proxmox:

                  root@proxmox:~# lsusb
                  Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                  Bus 001 Device 003: ID 8087:0aa7 Intel Corp.
                  Bus 001 Device 005: ID 051d:0002 American Power Conversion Uninterruptible Power Supply
                  Bus 001 Device 002: ID 0451:16c8 Texas Instruments, Inc.
                  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                  

                  In meinem Fall geht es um das Durchreichen des USV USB Anschlusses Bus 001 Device 005. Gebe ich jetzt deinen nächsten Befehl ein:

                  root@proxmox:~# ls -l /dev/ttyACM0
                  ls: cannot access '/dev/ttyACM0': No such file or directory
                  

                  Kanst du mir bitte weiterhelfen?
                  LG aus Wien, mxa

                  wendy2702W 1 Antwort Letzte Antwort
                  0
                  • XxJooOX Offline
                    XxJooOX Offline
                    XxJooO
                    schrieb am zuletzt editiert von
                    #12

                    @metaxa sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                    American Power Conversion Uninterruptible Power Supply

                    Hallo @metaxa,

                    bei dem Gerät handelt es sich um ein USV. Ich bin absolut kein Linux-Kenner... es wird aber am ehesten damit zu tun haben, dass das Gerät unter Linux eben keines aus /dev/ttyACM0 sein wird. Leider kannst Du da nur weiter googeln.

                    z.B. Link Text

                    Grüße
                    Jo

                    ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

                    1 Antwort Letzte Antwort
                    0
                    • metaxaM metaxa

                      @XxJooO sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                      ich habe die Lösung gefunden!
                      Folgendes muss gemacht werden:

                      Servus!
                      Irgendetwas mache ich falsch, du empfiehlst:

                      root@pve:~# lsusb
                      Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                      Bus 001 Device 004: ID 8087:0aaa Intel Corp. 
                      Bus 001 Device 003: ID 0451:16a8 Texas Instruments, Inc. 
                      Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
                      Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                      

                      Ich mache das auch dirket am NUC in Proxmox:

                      root@proxmox:~# lsusb
                      Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                      Bus 001 Device 003: ID 8087:0aa7 Intel Corp.
                      Bus 001 Device 005: ID 051d:0002 American Power Conversion Uninterruptible Power Supply
                      Bus 001 Device 002: ID 0451:16c8 Texas Instruments, Inc.
                      Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                      

                      In meinem Fall geht es um das Durchreichen des USV USB Anschlusses Bus 001 Device 005. Gebe ich jetzt deinen nächsten Befehl ein:

                      root@proxmox:~# ls -l /dev/ttyACM0
                      ls: cannot access '/dev/ttyACM0': No such file or directory
                      

                      Kanst du mir bitte weiterhelfen?
                      LG aus Wien, mxa

                      wendy2702W Offline
                      wendy2702W Offline
                      wendy2702
                      schrieb am zuletzt editiert von wendy2702
                      #13

                      @metaxa Warum macht Ihr das nicht über den Proxmox WEBGUI?

                      Ich habe das gestern noch für meine USV gemacht.

                      Dauerte keine 5 Minuten.

                      P.S. Bin Proxmox Anfänger.

                      Bitte keine Fragen per PN, die gehören ins Forum!

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

                      metaxaM 1 Antwort Letzte Antwort
                      0
                      • wendy2702W wendy2702

                        @metaxa Warum macht Ihr das nicht über den Proxmox WEBGUI?

                        Ich habe das gestern noch für meine USV gemacht.

                        Dauerte keine 5 Minuten.

                        P.S. Bin Proxmox Anfänger.

                        metaxaM Offline
                        metaxaM Offline
                        metaxa
                        schrieb am zuletzt editiert von
                        #14

                        @wendy2702 sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                        Warum macht Ihr das nicht über den Proxmox WEBGUI?

                        Bin mir nicht sicher dich richtig zu verstehen, den USB zu einer VM durchzureichen = machbar über die Proxmox Oberfläche. Bei einem Container geht das meiner Meinung nach nicht.

                        wendy2702W 1 Antwort Letzte Antwort
                        0
                        • XxJooOX Offline
                          XxJooOX Offline
                          XxJooO
                          schrieb am zuletzt editiert von
                          #15

                          @metaxa,

                          ich habe kein USV. Allerdings ist es doch so, dass nicht der Container, in dem der ioBroker läuft, mit dem USV kommunizieren muss, sondern Proxmox selbst, da Proxmox die VMs und LXC herunterfahren muss, wenn der Strom weg geht. Siehe die Diskussion in dem von mir verlinkten Beitrag im Proxmox-Forum.

                          ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

                          oberfraggerO 1 Antwort Letzte Antwort
                          0
                          • metaxaM metaxa

                            @wendy2702 sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                            Warum macht Ihr das nicht über den Proxmox WEBGUI?

                            Bin mir nicht sicher dich richtig zu verstehen, den USB zu einer VM durchzureichen = machbar über die Proxmox Oberfläche. Bei einem Container geht das meiner Meinung nach nicht.

                            wendy2702W Offline
                            wendy2702W Offline
                            wendy2702
                            schrieb am zuletzt editiert von
                            #16

                            @metaxa Sorry, hast recht.

                            Sag ja, ich bin Anfänger. Habe das LXC nicht auf dem Schirm gehabt und das gestern für eine VM gemacht.

                            Bitte keine Fragen per PN, die gehören ins Forum!

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

                            1 Antwort Letzte Antwort
                            0
                            • metaxaM Offline
                              metaxaM Offline
                              metaxa
                              schrieb am zuletzt editiert von
                              #17

                              @XxJooO Du hast vollkommen recht mit "dirket unter Proxmox", da traue ich mich aber nicht drüber.
                              @wendy2702 Dennoch lieben Dank für deine Rückmeldung.
                              Ich habs fürs Erste aufgegeben und den NUT Dienst lt. dieser Anleitung in der VM des ioBroker gemacht. USB durchgereicht und läuft auch schon im ioBroker Adapter. Jetzt muss ich mich mal mit den gelieferten Daten beschäftigen, aufs Erste habe ich noch keinen DP "wie lange tät die Batterie bei Netzausfall aushalten" gefunden.
                              LG, mxa

                              wendy2702W 1 Antwort Letzte Antwort
                              0
                              • metaxaM metaxa

                                @XxJooO Du hast vollkommen recht mit "dirket unter Proxmox", da traue ich mich aber nicht drüber.
                                @wendy2702 Dennoch lieben Dank für deine Rückmeldung.
                                Ich habs fürs Erste aufgegeben und den NUT Dienst lt. dieser Anleitung in der VM des ioBroker gemacht. USB durchgereicht und läuft auch schon im ioBroker Adapter. Jetzt muss ich mich mal mit den gelieferten Daten beschäftigen, aufs Erste habe ich noch keinen DP "wie lange tät die Batterie bei Netzausfall aushalten" gefunden.
                                LG, mxa

                                wendy2702W Offline
                                wendy2702W Offline
                                wendy2702
                                schrieb am zuletzt editiert von
                                #18

                                @metaxa Habe im Forum noch das gefunden.

                                https://forum.iobroker.net/topic/26933/frage-zu-usv/22?page=2

                                So macht es aus meiner Sicht am meisten Sinn die USV mit dem Server zu verbinden.

                                Ich werde mein Setup auch dahingehend ändern.

                                Bitte keine Fragen per PN, die gehören ins Forum!

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

                                1 Antwort Letzte Antwort
                                0
                                • M Offline
                                  M Offline
                                  Malz1902
                                  schrieb am zuletzt editiert von
                                  #19

                                  kann man auch die dev/serial/by-id durchreichen?
                                  Hatte den Host neugestartet und lsusb sagt nun das die Geräte nicht mehr an Bus 001 Device 004 und 005 sind sonder plötzlich Device 002 und 006

                                  1 Antwort Letzte Antwort
                                  0
                                  • XxJooOX XxJooO

                                    @metaxa,

                                    ich habe kein USV. Allerdings ist es doch so, dass nicht der Container, in dem der ioBroker läuft, mit dem USV kommunizieren muss, sondern Proxmox selbst, da Proxmox die VMs und LXC herunterfahren muss, wenn der Strom weg geht. Siehe die Diskussion in dem von mir verlinkten Beitrag im Proxmox-Forum.

                                    oberfraggerO Offline
                                    oberfraggerO Offline
                                    oberfragger
                                    schrieb am zuletzt editiert von oberfragger
                                    #20

                                    @XxJooO Danke für deine Anleitungen. Ich bekomme es nicht gebacken! Ich will nur einen Lesekopf für Smartmeter durchreichen...!

                                    root@pve:~# lsusb
                                    Bus 001 Device 002: ID 8087:8000 Intel Corp. 
                                    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                                    Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                                    Bus 002 Device 005: ID 0403:6015 Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO)
                                    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                                    
                                    root@pve:~# ls -l /dev/tty*
                                    crw-rw-rw- 1 root tty       5,  0 Oct  5 00:19 /dev/tty
                                    crw--w---- 1 root tty       4,  0 Oct  4 00:59 /dev/tty0
                                    crw--w---- 1 root tty       4,  1 Oct  4 00:59 /dev/tty1
                                    crw--w---- 1 root tty       4, 10 Oct  4 00:59 /dev/tty10
                                    crw--w---- 1 root tty       4, 11 Oct  4 00:59 /dev/tty11
                                    crw--w---- 1 root tty       4, 12 Oct  4 00:59 /dev/tty12
                                    crw--w---- 1 root tty       4, 13 Oct  4 00:59 /dev/tty13
                                    crw--w---- 1 root tty       4, 14 Oct  4 00:59 /dev/tty14
                                    crw--w---- 1 root tty       4, 15 Oct  4 00:59 /dev/tty15
                                    crw--w---- 1 root tty       4, 16 Oct  4 00:59 /dev/tty16
                                    crw--w---- 1 root tty       4, 17 Oct  4 00:59 /dev/tty17
                                    crw--w---- 1 root tty       4, 18 Oct  4 00:59 /dev/tty18
                                    crw--w---- 1 root tty       4, 19 Oct  4 00:59 /dev/tty19
                                    crw--w---- 1 root tty       4,  2 Oct  4 00:59 /dev/tty2
                                    crw--w---- 1 root tty       4, 20 Oct  4 00:59 /dev/tty20
                                    crw--w---- 1 root tty       4, 21 Oct  4 00:59 /dev/tty21
                                    crw--w---- 1 root tty       4, 22 Oct  4 00:59 /dev/tty22
                                    crw--w---- 1 root tty       4, 23 Oct  4 00:59 /dev/tty23
                                    crw--w---- 1 root tty       4, 24 Oct  4 00:59 /dev/tty24
                                    crw--w---- 1 root tty       4, 25 Oct  4 00:59 /dev/tty25
                                    crw--w---- 1 root tty       4, 26 Oct  4 00:59 /dev/tty26
                                    crw--w---- 1 root tty       4, 27 Oct  4 00:59 /dev/tty27
                                    crw--w---- 1 root tty       4, 28 Oct  4 00:59 /dev/tty28
                                    crw--w---- 1 root tty       4, 29 Oct  4 00:59 /dev/tty29
                                    crw--w---- 1 root tty       4,  3 Oct  4 00:59 /dev/tty3
                                    crw--w---- 1 root tty       4, 30 Oct  4 00:59 /dev/tty30
                                    crw--w---- 1 root tty       4, 31 Oct  4 00:59 /dev/tty31
                                    crw--w---- 1 root tty       4, 32 Oct  4 00:59 /dev/tty32
                                    crw--w---- 1 root tty       4, 33 Oct  4 00:59 /dev/tty33
                                    crw--w---- 1 root tty       4, 34 Oct  4 00:59 /dev/tty34
                                    crw--w---- 1 root tty       4, 35 Oct  4 00:59 /dev/tty35
                                    crw--w---- 1 root tty       4, 36 Oct  4 00:59 /dev/tty36
                                    crw--w---- 1 root tty       4, 37 Oct  4 00:59 /dev/tty37
                                    crw--w---- 1 root tty       4, 38 Oct  4 00:59 /dev/tty38
                                    crw--w---- 1 root tty       4, 39 Oct  4 00:59 /dev/tty39
                                    crw--w---- 1 root tty       4,  4 Oct  4 00:59 /dev/tty4
                                    crw--w---- 1 root tty       4, 40 Oct  4 00:59 /dev/tty40
                                    crw--w---- 1 root tty       4, 41 Oct  4 00:59 /dev/tty41
                                    crw--w---- 1 root tty       4, 42 Oct  4 00:59 /dev/tty42
                                    crw--w---- 1 root tty       4, 43 Oct  4 00:59 /dev/tty43
                                    crw--w---- 1 root tty       4, 44 Oct  4 00:59 /dev/tty44
                                    crw--w---- 1 root tty       4, 45 Oct  4 00:59 /dev/tty45
                                    crw--w---- 1 root tty       4, 46 Oct  4 00:59 /dev/tty46
                                    crw--w---- 1 root tty       4, 47 Oct  4 00:59 /dev/tty47
                                    crw--w---- 1 root tty       4, 48 Oct  4 00:59 /dev/tty48
                                    crw--w---- 1 root tty       4, 49 Oct  4 00:59 /dev/tty49
                                    crw--w---- 1 root tty       4,  5 Oct  4 00:59 /dev/tty5
                                    crw--w---- 1 root tty       4, 50 Oct  4 00:59 /dev/tty50
                                    crw--w---- 1 root tty       4, 51 Oct  4 00:59 /dev/tty51
                                    crw--w---- 1 root tty       4, 52 Oct  4 00:59 /dev/tty52
                                    crw--w---- 1 root tty       4, 53 Oct  4 00:59 /dev/tty53
                                    crw--w---- 1 root tty       4, 54 Oct  4 00:59 /dev/tty54
                                    crw--w---- 1 root tty       4, 55 Oct  4 00:59 /dev/tty55
                                    crw--w---- 1 root tty       4, 56 Oct  4 00:59 /dev/tty56
                                    crw--w---- 1 root tty       4, 57 Oct  4 00:59 /dev/tty57
                                    crw--w---- 1 root tty       4, 58 Oct  4 00:59 /dev/tty58
                                    crw--w---- 1 root tty       4, 59 Oct  4 00:59 /dev/tty59
                                    crw--w---- 1 root tty       4,  6 Oct  4 00:59 /dev/tty6
                                    crw--w---- 1 root tty       4, 60 Oct  4 00:59 /dev/tty60
                                    crw--w---- 1 root tty       4, 61 Oct  4 00:59 /dev/tty61
                                    crw--w---- 1 root tty       4, 62 Oct  4 00:59 /dev/tty62
                                    crw--w---- 1 root tty       4, 63 Oct  4 00:59 /dev/tty63
                                    crw--w---- 1 root tty       4,  7 Oct  4 00:59 /dev/tty7
                                    crw--w---- 1 root tty       4,  8 Oct  4 00:59 /dev/tty8
                                    crw--w---- 1 root tty       4,  9 Oct  4 00:59 /dev/tty9
                                    crw------- 1 root root      5,  3 Oct  4 00:59 /dev/ttyprintk
                                    crw-rw---- 1 root dialout   4, 64 Oct  4 00:59 /dev/ttyS0
                                    crw-rw---- 1 root dialout   4, 65 Oct  4 00:59 /dev/ttyS1
                                    crw-rw---- 1 root dialout   4, 74 Oct  4 00:59 /dev/ttyS10
                                    crw-rw---- 1 root dialout   4, 75 Oct  4 00:59 /dev/ttyS11
                                    crw-rw---- 1 root dialout   4, 76 Oct  4 00:59 /dev/ttyS12
                                    crw-rw---- 1 root dialout   4, 77 Oct  4 00:59 /dev/ttyS13
                                    crw-rw---- 1 root dialout   4, 78 Oct  4 00:59 /dev/ttyS14
                                    crw-rw---- 1 root dialout   4, 79 Oct  4 00:59 /dev/ttyS15
                                    crw-rw---- 1 root dialout   4, 80 Oct  4 00:59 /dev/ttyS16
                                    crw-rw---- 1 root dialout   4, 81 Oct  4 00:59 /dev/ttyS17
                                    crw-rw---- 1 root dialout   4, 82 Oct  4 00:59 /dev/ttyS18
                                    crw-rw---- 1 root dialout   4, 83 Oct  4 00:59 /dev/ttyS19
                                    crw-rw---- 1 root dialout   4, 66 Oct  4 00:59 /dev/ttyS2
                                    crw-rw---- 1 root dialout   4, 84 Oct  4 00:59 /dev/ttyS20
                                    crw-rw---- 1 root dialout   4, 85 Oct  4 00:59 /dev/ttyS21
                                    crw-rw---- 1 root dialout   4, 86 Oct  4 00:59 /dev/ttyS22
                                    crw-rw---- 1 root dialout   4, 87 Oct  4 00:59 /dev/ttyS23
                                    crw-rw---- 1 root dialout   4, 88 Oct  4 00:59 /dev/ttyS24
                                    crw-rw---- 1 root dialout   4, 89 Oct  4 00:59 /dev/ttyS25
                                    crw-rw---- 1 root dialout   4, 90 Oct  4 00:59 /dev/ttyS26
                                    crw-rw---- 1 root dialout   4, 91 Oct  4 00:59 /dev/ttyS27
                                    crw-rw---- 1 root dialout   4, 92 Oct  4 00:59 /dev/ttyS28
                                    crw-rw---- 1 root dialout   4, 93 Oct  4 00:59 /dev/ttyS29
                                    crw-rw---- 1 root dialout   4, 67 Oct  4 00:59 /dev/ttyS3
                                    crw-rw---- 1 root dialout   4, 94 Oct  4 00:59 /dev/ttyS30
                                    crw-rw---- 1 root dialout   4, 95 Oct  4 00:59 /dev/ttyS31
                                    crw-rw---- 1 root dialout   4, 68 Oct  4 00:59 /dev/ttyS4
                                    crw-rw---- 1 root dialout   4, 69 Oct  4 00:59 /dev/ttyS5
                                    crw-rw---- 1 root dialout   4, 70 Oct  4 00:59 /dev/ttyS6
                                    crw-rw---- 1 root dialout   4, 71 Oct  4 00:59 /dev/ttyS7
                                    crw-rw---- 1 root dialout   4, 72 Oct  4 00:59 /dev/ttyS8
                                    crw-rw---- 1 root dialout   4, 73 Oct  4 00:59 /dev/ttyS9
                                    crw-rw-rw- 1 root dialout 188,  0 Oct  5 23:13 /dev/ttyUSB0
                                    
                                    root@pve:~# ls -l /dev/bus/usb/002/005
                                    crw-rw-r-- 1 root root 189, 132 Oct  5 23:13 /dev/bus/usb/002/005
                                    
                                    arch: amd64
                                    cores: 2
                                    hostname: iobroker
                                    memory: 3072
                                    net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                                    onboot: 1
                                    ostype: debian
                                    rootfs: local-lvm:vm-101-disk-0,size=15G
                                    swap: 512
                                    lxc.cgroup.devices.allow: c 189:* rwm
                                    lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                                    lxc.cgroup.devices.allow: c 189:* rwm
                                    lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                                    
                                    root@pve:~# chmod o+rw /dev/ttyUSB0
                                    
                                    oberfraggerO 1 Antwort Letzte Antwort
                                    0
                                    • oberfraggerO oberfragger

                                      @XxJooO Danke für deine Anleitungen. Ich bekomme es nicht gebacken! Ich will nur einen Lesekopf für Smartmeter durchreichen...!

                                      root@pve:~# lsusb
                                      Bus 001 Device 002: ID 8087:8000 Intel Corp. 
                                      Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                                      Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                                      Bus 002 Device 005: ID 0403:6015 Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO)
                                      Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                                      
                                      root@pve:~# ls -l /dev/tty*
                                      crw-rw-rw- 1 root tty       5,  0 Oct  5 00:19 /dev/tty
                                      crw--w---- 1 root tty       4,  0 Oct  4 00:59 /dev/tty0
                                      crw--w---- 1 root tty       4,  1 Oct  4 00:59 /dev/tty1
                                      crw--w---- 1 root tty       4, 10 Oct  4 00:59 /dev/tty10
                                      crw--w---- 1 root tty       4, 11 Oct  4 00:59 /dev/tty11
                                      crw--w---- 1 root tty       4, 12 Oct  4 00:59 /dev/tty12
                                      crw--w---- 1 root tty       4, 13 Oct  4 00:59 /dev/tty13
                                      crw--w---- 1 root tty       4, 14 Oct  4 00:59 /dev/tty14
                                      crw--w---- 1 root tty       4, 15 Oct  4 00:59 /dev/tty15
                                      crw--w---- 1 root tty       4, 16 Oct  4 00:59 /dev/tty16
                                      crw--w---- 1 root tty       4, 17 Oct  4 00:59 /dev/tty17
                                      crw--w---- 1 root tty       4, 18 Oct  4 00:59 /dev/tty18
                                      crw--w---- 1 root tty       4, 19 Oct  4 00:59 /dev/tty19
                                      crw--w---- 1 root tty       4,  2 Oct  4 00:59 /dev/tty2
                                      crw--w---- 1 root tty       4, 20 Oct  4 00:59 /dev/tty20
                                      crw--w---- 1 root tty       4, 21 Oct  4 00:59 /dev/tty21
                                      crw--w---- 1 root tty       4, 22 Oct  4 00:59 /dev/tty22
                                      crw--w---- 1 root tty       4, 23 Oct  4 00:59 /dev/tty23
                                      crw--w---- 1 root tty       4, 24 Oct  4 00:59 /dev/tty24
                                      crw--w---- 1 root tty       4, 25 Oct  4 00:59 /dev/tty25
                                      crw--w---- 1 root tty       4, 26 Oct  4 00:59 /dev/tty26
                                      crw--w---- 1 root tty       4, 27 Oct  4 00:59 /dev/tty27
                                      crw--w---- 1 root tty       4, 28 Oct  4 00:59 /dev/tty28
                                      crw--w---- 1 root tty       4, 29 Oct  4 00:59 /dev/tty29
                                      crw--w---- 1 root tty       4,  3 Oct  4 00:59 /dev/tty3
                                      crw--w---- 1 root tty       4, 30 Oct  4 00:59 /dev/tty30
                                      crw--w---- 1 root tty       4, 31 Oct  4 00:59 /dev/tty31
                                      crw--w---- 1 root tty       4, 32 Oct  4 00:59 /dev/tty32
                                      crw--w---- 1 root tty       4, 33 Oct  4 00:59 /dev/tty33
                                      crw--w---- 1 root tty       4, 34 Oct  4 00:59 /dev/tty34
                                      crw--w---- 1 root tty       4, 35 Oct  4 00:59 /dev/tty35
                                      crw--w---- 1 root tty       4, 36 Oct  4 00:59 /dev/tty36
                                      crw--w---- 1 root tty       4, 37 Oct  4 00:59 /dev/tty37
                                      crw--w---- 1 root tty       4, 38 Oct  4 00:59 /dev/tty38
                                      crw--w---- 1 root tty       4, 39 Oct  4 00:59 /dev/tty39
                                      crw--w---- 1 root tty       4,  4 Oct  4 00:59 /dev/tty4
                                      crw--w---- 1 root tty       4, 40 Oct  4 00:59 /dev/tty40
                                      crw--w---- 1 root tty       4, 41 Oct  4 00:59 /dev/tty41
                                      crw--w---- 1 root tty       4, 42 Oct  4 00:59 /dev/tty42
                                      crw--w---- 1 root tty       4, 43 Oct  4 00:59 /dev/tty43
                                      crw--w---- 1 root tty       4, 44 Oct  4 00:59 /dev/tty44
                                      crw--w---- 1 root tty       4, 45 Oct  4 00:59 /dev/tty45
                                      crw--w---- 1 root tty       4, 46 Oct  4 00:59 /dev/tty46
                                      crw--w---- 1 root tty       4, 47 Oct  4 00:59 /dev/tty47
                                      crw--w---- 1 root tty       4, 48 Oct  4 00:59 /dev/tty48
                                      crw--w---- 1 root tty       4, 49 Oct  4 00:59 /dev/tty49
                                      crw--w---- 1 root tty       4,  5 Oct  4 00:59 /dev/tty5
                                      crw--w---- 1 root tty       4, 50 Oct  4 00:59 /dev/tty50
                                      crw--w---- 1 root tty       4, 51 Oct  4 00:59 /dev/tty51
                                      crw--w---- 1 root tty       4, 52 Oct  4 00:59 /dev/tty52
                                      crw--w---- 1 root tty       4, 53 Oct  4 00:59 /dev/tty53
                                      crw--w---- 1 root tty       4, 54 Oct  4 00:59 /dev/tty54
                                      crw--w---- 1 root tty       4, 55 Oct  4 00:59 /dev/tty55
                                      crw--w---- 1 root tty       4, 56 Oct  4 00:59 /dev/tty56
                                      crw--w---- 1 root tty       4, 57 Oct  4 00:59 /dev/tty57
                                      crw--w---- 1 root tty       4, 58 Oct  4 00:59 /dev/tty58
                                      crw--w---- 1 root tty       4, 59 Oct  4 00:59 /dev/tty59
                                      crw--w---- 1 root tty       4,  6 Oct  4 00:59 /dev/tty6
                                      crw--w---- 1 root tty       4, 60 Oct  4 00:59 /dev/tty60
                                      crw--w---- 1 root tty       4, 61 Oct  4 00:59 /dev/tty61
                                      crw--w---- 1 root tty       4, 62 Oct  4 00:59 /dev/tty62
                                      crw--w---- 1 root tty       4, 63 Oct  4 00:59 /dev/tty63
                                      crw--w---- 1 root tty       4,  7 Oct  4 00:59 /dev/tty7
                                      crw--w---- 1 root tty       4,  8 Oct  4 00:59 /dev/tty8
                                      crw--w---- 1 root tty       4,  9 Oct  4 00:59 /dev/tty9
                                      crw------- 1 root root      5,  3 Oct  4 00:59 /dev/ttyprintk
                                      crw-rw---- 1 root dialout   4, 64 Oct  4 00:59 /dev/ttyS0
                                      crw-rw---- 1 root dialout   4, 65 Oct  4 00:59 /dev/ttyS1
                                      crw-rw---- 1 root dialout   4, 74 Oct  4 00:59 /dev/ttyS10
                                      crw-rw---- 1 root dialout   4, 75 Oct  4 00:59 /dev/ttyS11
                                      crw-rw---- 1 root dialout   4, 76 Oct  4 00:59 /dev/ttyS12
                                      crw-rw---- 1 root dialout   4, 77 Oct  4 00:59 /dev/ttyS13
                                      crw-rw---- 1 root dialout   4, 78 Oct  4 00:59 /dev/ttyS14
                                      crw-rw---- 1 root dialout   4, 79 Oct  4 00:59 /dev/ttyS15
                                      crw-rw---- 1 root dialout   4, 80 Oct  4 00:59 /dev/ttyS16
                                      crw-rw---- 1 root dialout   4, 81 Oct  4 00:59 /dev/ttyS17
                                      crw-rw---- 1 root dialout   4, 82 Oct  4 00:59 /dev/ttyS18
                                      crw-rw---- 1 root dialout   4, 83 Oct  4 00:59 /dev/ttyS19
                                      crw-rw---- 1 root dialout   4, 66 Oct  4 00:59 /dev/ttyS2
                                      crw-rw---- 1 root dialout   4, 84 Oct  4 00:59 /dev/ttyS20
                                      crw-rw---- 1 root dialout   4, 85 Oct  4 00:59 /dev/ttyS21
                                      crw-rw---- 1 root dialout   4, 86 Oct  4 00:59 /dev/ttyS22
                                      crw-rw---- 1 root dialout   4, 87 Oct  4 00:59 /dev/ttyS23
                                      crw-rw---- 1 root dialout   4, 88 Oct  4 00:59 /dev/ttyS24
                                      crw-rw---- 1 root dialout   4, 89 Oct  4 00:59 /dev/ttyS25
                                      crw-rw---- 1 root dialout   4, 90 Oct  4 00:59 /dev/ttyS26
                                      crw-rw---- 1 root dialout   4, 91 Oct  4 00:59 /dev/ttyS27
                                      crw-rw---- 1 root dialout   4, 92 Oct  4 00:59 /dev/ttyS28
                                      crw-rw---- 1 root dialout   4, 93 Oct  4 00:59 /dev/ttyS29
                                      crw-rw---- 1 root dialout   4, 67 Oct  4 00:59 /dev/ttyS3
                                      crw-rw---- 1 root dialout   4, 94 Oct  4 00:59 /dev/ttyS30
                                      crw-rw---- 1 root dialout   4, 95 Oct  4 00:59 /dev/ttyS31
                                      crw-rw---- 1 root dialout   4, 68 Oct  4 00:59 /dev/ttyS4
                                      crw-rw---- 1 root dialout   4, 69 Oct  4 00:59 /dev/ttyS5
                                      crw-rw---- 1 root dialout   4, 70 Oct  4 00:59 /dev/ttyS6
                                      crw-rw---- 1 root dialout   4, 71 Oct  4 00:59 /dev/ttyS7
                                      crw-rw---- 1 root dialout   4, 72 Oct  4 00:59 /dev/ttyS8
                                      crw-rw---- 1 root dialout   4, 73 Oct  4 00:59 /dev/ttyS9
                                      crw-rw-rw- 1 root dialout 188,  0 Oct  5 23:13 /dev/ttyUSB0
                                      
                                      root@pve:~# ls -l /dev/bus/usb/002/005
                                      crw-rw-r-- 1 root root 189, 132 Oct  5 23:13 /dev/bus/usb/002/005
                                      
                                      arch: amd64
                                      cores: 2
                                      hostname: iobroker
                                      memory: 3072
                                      net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                                      onboot: 1
                                      ostype: debian
                                      rootfs: local-lvm:vm-101-disk-0,size=15G
                                      swap: 512
                                      lxc.cgroup.devices.allow: c 189:* rwm
                                      lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                                      lxc.cgroup.devices.allow: c 189:* rwm
                                      lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                                      
                                      root@pve:~# chmod o+rw /dev/ttyUSB0
                                      
                                      oberfraggerO Offline
                                      oberfraggerO Offline
                                      oberfragger
                                      schrieb am zuletzt editiert von
                                      #21

                                      Ich antworte mir mal selber...das hier gefunden und es funzt:
                                      https://forum.proxmox.com/threads/werde-wahnsinnig-lxc-passthough.56632/

                                      Meine Config sieht nun so aus...Muss das nochmal anpassen. Entweder versehetlich die 188 mit der 189 verwechselt oder die Zeile 15 hats gebracht.

                                      arch: amd64
                                      cores: 2
                                      hostname: iobroker
                                      memory: 3072
                                      net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                                      onboot: 1
                                      ostype: debian
                                      rootfs: local-lvm:vm-101-disk-0,size=15G
                                      swap: 512
                                      lxc.cgroup.devices.allow: c 189:* rwm
                                      lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                                      lxc.cgroup.devices.allow: c 189:* rwm
                                      lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                                      lxc.cgroup.devices.allow: c 188:* rwm
                                      lxc.cgroup.devices.allow: c 10:200 rwm
                                      lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file
                                      
                                      M 1 Antwort Letzte Antwort
                                      1
                                      • oberfraggerO oberfragger

                                        Ich antworte mir mal selber...das hier gefunden und es funzt:
                                        https://forum.proxmox.com/threads/werde-wahnsinnig-lxc-passthough.56632/

                                        Meine Config sieht nun so aus...Muss das nochmal anpassen. Entweder versehetlich die 188 mit der 189 verwechselt oder die Zeile 15 hats gebracht.

                                        arch: amd64
                                        cores: 2
                                        hostname: iobroker
                                        memory: 3072
                                        net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                                        onboot: 1
                                        ostype: debian
                                        rootfs: local-lvm:vm-101-disk-0,size=15G
                                        swap: 512
                                        lxc.cgroup.devices.allow: c 189:* rwm
                                        lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                                        lxc.cgroup.devices.allow: c 189:* rwm
                                        lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                                        lxc.cgroup.devices.allow: c 188:* rwm
                                        lxc.cgroup.devices.allow: c 10:200 rwm
                                        lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file
                                        
                                        M Offline
                                        M Offline
                                        Malz1902
                                        schrieb am zuletzt editiert von
                                        #22

                                        @oberfragger würde lieber dev/serial/by-id durchreichen, im Falles eines reboots sicherer.

                                        lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file
                                        
                                        chmod o+rw /dev/serial/by-id/xxx
                                        
                                        oberfraggerO 2 Antworten Letzte Antwort
                                        0
                                        • M Malz1902

                                          @oberfragger würde lieber dev/serial/by-id durchreichen, im Falles eines reboots sicherer.

                                          lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file
                                          
                                          chmod o+rw /dev/serial/by-id/xxx
                                          
                                          oberfraggerO Offline
                                          oberfraggerO Offline
                                          oberfragger
                                          schrieb am zuletzt editiert von oberfragger
                                          #23

                                          @Malz1902 Danke für den Hinweis. Meinst den den reboot des gesamten Hosts oder der VM? Ansonsten- kannst du mir das am meinem Beispiel bitte konkretisieren?
                                          Serial lasse ich warscheinlich so drin stehen, by-id auch... was mus aber bei xxx stehen bzw. wie ermittel ich das?

                                          und welche zeile ist "richtiger"?

                                          lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                                          lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file
                                          

                                          Zeile 1, oder?

                                          M 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

                                          386

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          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