Posts by queeup

    I have similar problem atm. Udevil doesn't allow me to mount with compress=zstd:3 option. It's complain about udevil: denied 90: option 'compress=zstd:3' is not an allowed option

    As I can see at /etc/udevil/udevil.conf there is no compress option allowed.

    Is there a way to modify udevil.conf without recompile libreelec or modify squashfs?

    Maybe add btrfs options to udevil.conf with PR?

    I know we have a docker addon but I think podman and libreelec will be a very good couple. Podman systemd support, pods, kube play and daemon-less nature is better then docker imo.

    I was getting kill messages when using the Linuxserver.io one, but it still seems to work.

    I made my own container with this command:

    docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce

    It works better.

    Make sure you set it up for Docker use (if that's what you're doing).

    Thank you. It was a old and bad config files problem. Erasing config files and fresh start solved my issue.

    chewitt or CvH, could you please add this info to the wiki?

    There is a problem with Turkish language on service.libreelec.settings. Because of unicode error, add-on is refusing to update my LibreELEC.

    Code
    2020-11-13 00:20:10.893 T:2130703216   ERROR: ## LibreELEC Addon ## oe::download_file(http://releases.libreelec.tv/LibreELEC-RPi4.arm-9.2.6.tar, /storage/.kodi/temp/update_file) ## ERROR: (UnicodeDecodeError('ascii', 'Dosya Ad\xc4\xb1: ', 8, 9, 'ordinal not in range(128)'))
    2020-11-13 00:20:10.894 T:2130703216   ERROR: Traceback (most recent call last):
                                                  File "/home/jails/home/jenkins/LE/build5/workspace/RPi4/LibreELEC.tv/build.LibreELEC-RPi4.arm-9.2.5/LibreELEC-settings-42acf2613927fa93d9d8ec9aa1d3135d101db0e0/.install_pkg/usr/share/kodi/addons/service.libreelec.settings/oe.py", line 390, in download_file
                                                  File "/home/jails/home/jenkins/LE/build5/workspace/RPi4/LibreELEC.tv/build.LibreELEC-RPi4.arm-9.2.5/LibreELEC-settings-42acf2613927fa93d9d8ec9aa1d3135d101db0e0/.install_pkg/usr/share/kodi/addons/service.libreelec.settings/oe.py", line 133, in update
                                                UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 8: ordinal not in range(128)

    Here is my workaround: oe.py line 195

    Code
    return codeNew
    # TO
    return unicode(codeNew)

    I can send PR if it's approved here.

    Please increase shell history number. 200 is little bit low. There is a HISTFILESIZE env we can use for limit that number.

    Suggestion: Increase history like 9999 then put export HISTFILESIZE=200 to /etc/profile.d/99-busybox.conf. Users can add their desired history number to /storage/.profile