Posts by Sodan

    Code
    echo "options cfg80211 ieee80211_regdom=DE" > /storage/.config/wifi.conf
    reboot

    ^^ If you set wireless regulatory domain to somewhere that supports channels 12/13 they will appear. It defaults to the General world regdomain though, which does not allow them.

    Ok will check. The gui is not handling this i pressume from any regional settings there? I noted this same behaviour with Rasbian Pixel too

    Had issues of some very slow wifi speeds. When connected on Ethernet streaming was superior to wifi.

    Turned out to be powersaving on the wlan card that is disturbing.

    Disable this by installing iw from libre elec "network tools" plugin package including iw.

    Add the following line in /storage/.config/http://autostart.sh/storage/.kodi/…rk-tools/bin/iw wlan0 set power_save off
    Check afterwards with iwconfig that it is disabled.

    1. Logonto device with ssh
    ssh root@<yourip>
    password:libreelec
    2. issue

    Code
    iwconfig


    and see it wlan0 has Power Management: on
    3.

    Code
    nano /storage/.config/autostart.sh



    4. Add this lite to the created file

    Code
    /storage/.kodi/addons/virtual.network-tools/bin/iw wlan0 set power_save off

    5.

    Code
    reboot


    6. SSH in again and issue iwconfig should look something like
    eth0 no wireless extensions.
    lo no wireless extensions.
    wlan0 IEEE 802.11 ESSID:"NET"
    Mode:Managed Frequency:2.447 GHz
    Access Point: 2C:20:38:CE:8B:15
    Bit Rate=65 Mb/s Tx-Power=31 dBm
    Retry short limit:7 RTS thr:off
    Fragment thr:off Encryption key:off
    Power Management:off
    Link Quality=54/70 Signal level=-56 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0
    Missed beacon:0

    Happy WiFi!