Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Off Topic
    4. [solved] RaspPi: wlan dauerhaft aktivieren

    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

    [solved] RaspPi: wlan dauerhaft aktivieren

    This topic has been deleted. Only users with topic management privileges can see it.
    • Meister Mopper
      Meister Mopper @paul53 last edited by

      @paul53

      Das Hinzufügen von rfkill.default_state=1 in /boot/cmdline.txt hat leider auch nichts gebracht.
      Nach einem reboot erhalte ich noch immer:

      Wi-Fi is currently blocked by rfkill.
      Use raspi-config to set the country before use.
      
      1 Reply Last reply Reply Quote 0
      • Thomas Braun
        Thomas Braun Most Active last edited by

        @meister-mopper
        Ich glaube da könnte man per dtoverlay was machen.
        Schau mal in die /boot/overlays/README rein.

        1 Reply Last reply Reply Quote 0
        • V
          volbuss last edited by

          hast du schon in der 'sudo nano /boot/config.txt' nachgeschaut, ob da nicht 'dtoverlay=disable-wifi' steht.

          Meister Mopper 1 Reply Last reply Reply Quote 0
          • Meister Mopper
            Meister Mopper @volbuss last edited by Meister Mopper

            @volbuss

            Ist leider auch nicht:

            thomas@rpi8G64:~ $ cat /boot/config.txt
            # For more options and information see
            # http://rpf.io/configtxt
            # Some settings may impact device functionality. See link above for details
            
            # uncomment if you get no picture on HDMI for a default "safe" mode
            #hdmi_safe=1
            
            # uncomment this if your display has a black border of unused pixels visible
            # and your display can output without overscan
            disable_overscan=1
            
            # uncomment the following to adjust overscan. Use positive numbers if console
            # goes off screen, and negative if there is too much border
            #overscan_left=16
            #overscan_right=16
            #overscan_top=16
            #overscan_bottom=16
            
            # uncomment to force a console size. By default it will be display's size minus
            # overscan.
            #framebuffer_width=1280
            #framebuffer_height=720
            
            # uncomment if hdmi display is not detected and composite is being output
            #hdmi_force_hotplug=1
            
            # uncomment to force a specific HDMI mode (this will force VGA)
            #hdmi_group=1
            #hdmi_mode=1
            
            # uncomment to force a HDMI mode rather than DVI. This can make audio work in
            # DMT (computer monitor) modes
            #hdmi_drive=2
            
            # uncomment to increase signal to HDMI, if you have interference, blanking, or
            # no display
            #config_hdmi_boost=4
            
            # uncomment for composite PAL
            #sdtv_mode=2
            
            #uncomment to overclock the arm. 700 MHz is the default.
            #arm_freq=800
            
            # Uncomment some or all of these to enable the optional hardware interfaces
            dtparam=i2c_arm=on
            #dtparam=i2s=on
            #dtparam=spi=on
            
            # Uncomment this to enable infrared communication.
            #dtoverlay=gpio-ir,gpio_pin=17
            #dtoverlay=gpio-ir-tx,gpio_pin=18
            
            # Additional overlays and parameters are documented /boot/overlays/README
            
            # Enable audio (loads snd_bcm2835)
            dtparam=audio=on
            
            # Enable DRM VC4 V3D driver
            dtoverlay=vc4-fkms-v3d
            max_framebuffers=2
            arm_64bit=1
            enable_uart=1
            

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

              @meister-mopper sagte in RaspPi: wlan dauerhaft aktivieren:

              0: phy0: Wireless LAN

              für Wlan
              rfkill unblock 0

              Meister Mopper 1 Reply Last reply Reply Quote 0
              • Meister Mopper
                Meister Mopper @crunchip last edited by

                @crunchip sagte in RaspPi: wlan dauerhaft aktivieren:

                rfkill unblock 0

                Hast Recht, wenn ich das eingebe sudo rfkill unblock 0 und ich nicht zu ungeduldig bin, wird das wlan eingeschaltet.

                Meine Probleme sind:

                • Leider weiß ich nicht, wie es permanent eingeschaltet wird, da es nach jedem reboot wieder deaktiviert ist.

                • Zudem verstehe ich nicht, warum die Netzwerkkonfiguration in raspi-config nicht mehr vorhanden ist.

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

                  @meister-mopper sagte in RaspPi: wlan dauerhaft aktivieren:

                  Leider weiß ich nicht, wie es permanent eingeschaltet wird

                  Deaktivierung vom Energiesparmodus des WLAN-Adapters
                  eventuell in der /etc/dhcpcd.conf eintragen

                  wireless-power off
                  
                  Meister Mopper 1 Reply Last reply Reply Quote 0
                  • Meister Mopper
                    Meister Mopper @crunchip last edited by

                    So, ich habe das jetzt nochmal rekapituliert und konnte die Ursache ermitteln.

                    Das Laden der Treiber für wlan und auch bluetooth war in der /etc/modprobe.d/raspi-blacklist.conf deaktiviert.

                    # WLAN abschalten
                    blacklist brcmfmac
                    blacklist brcmutil
                    
                    Thomas Braun 1 Reply Last reply Reply Quote 0
                    • Thomas Braun
                      Thomas Braun Most Active @Meister Mopper last edited by

                      @meister-mopper
                      Die Datei ist bei mir leer, da wird nix geblacklisted.

                      Meister Mopper 1 Reply Last reply Reply Quote 0
                      • Meister Mopper
                        Meister Mopper @Thomas Braun last edited by

                        @thomas-braun Dann ist es vielleicht bei Dir in der /boot/config.txt mit dtoverlay=pi3-disable-bt deaktiviert.

                        Es gibt ja, wie ich mittlerweile gelernt habe, verschiedene Wege.

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

                          @meister-mopper
                          Nö, die config.txt ist auch nicht Schuld.

                          Meister Mopper 1 Reply Last reply Reply Quote 0
                          • Meister Mopper
                            Meister Mopper @Thomas Braun last edited by

                            @thomas-braun Dann ahnt der Kleine, dass Du wlan nicht magst und benötigst. 😂 😂

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

                              @meister-mopper
                              Der ist bestimmt in der WLAN-Gewerkschaft und streikt! 😄

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

                              Support us

                              ioBroker
                              Community Adapters
                              Donate

                              739
                              Online

                              31.9k
                              Users

                              80.1k
                              Topics

                              1.3m
                              Posts

                              6
                              27
                              3855
                              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