Posts by kobrawerde

    You have to experiment with the WiFi settings on the router... I also had this error, I just changed some of the settings as above. and now it's OK, I connect quickly and reliably.

    Sorry, I don't have Raspi4... but I don't know if it matters in this case? ...in my opinion no.
    You need to look for 5ghz wifi settings on the router so that you can connect without errors, it helped me

    My WiFi card is: AX210

    02:00.0 Network controller [0280]: Intel Corporation Wi-Fi 6 AX210/AX211/AX411 160MHz [8086:2725] (rev 1a)

    USBImager for linux

    Files · master · bzt / usbimager · GitLab
    A very minimal GUI app that can write compressed disk images to USB drives.
    gitlab.com

    Known from Linux Mint, the Mintstick program

    Index of /pool/main/m/mintstick/

    Linux Mint - Community

    DDcopy

    ddCopy
    ddCopy writes bootable iso image files* Makes a bootable CD/DVD* Makes a bootable USB key* Formats a USB key
    www.pling.com

    Rosa ImageWriter ( old program )

    ROSA ImageWriter - Rosalab Wiki

    Popsicle (?) It is possible to flash an ISO image on several USB sticks at the same time

    Popsicle
    Popsicle is a Linux utility for flashing multiple USB devices in parallel, written in Rust.NOTE: This is only to provide appimages, I am not the developer.
    www.linux-apps.com

    live-usb-maker-qt

    Releases · dolphinoracle/lum-qt-appimage
    appimage package for the live-usb-maker system from antiX and MX, renamed here live-usb-maker-qt - dolphinoracle/lum-qt-appimage
    github.com

    You can also use the Restic program

    The program is available as a binary so it will work on various systems .... also via the network, e.g. to the NAS server

    Let me give an example of a backup of the /storage folder to some server on the network

    We download the prog. restic to our platform:

    Release restic 0.12.0 · restic/restic · GitHub

    We copy and give a short name (restic) to:

    /storage/restic

    we give executables:

    Code
    chmod +x /storage/restic

    For example, we create a repository on the server for saving the so-called snapshots e.g. in: /media/backup-kodi

    we issue the command in CE / LE / ssh:

    Code
    /storage/restic -r sftp:[email protected]:/media/backup-kodi init

    enter the password to the ssh server system + double the password to the encrypted repository being created

    We create a KODI backup, i.e. the folder: storage

    Code
    /storage/restic -r sftp:[email protected]:/media/backup-kodi  backup /storage

    Displaying the created snapshots:

    Code
    /storage/restic -r sftp:[email protected]:/media/backup-kodi snapshots

    subsequent backups are only incremental ...

    Backup restoration:

    Code
    /storage/restic -r sftp:[email protected]:/media/backup-kodi restore -t / e3440663

    note e3440663 is no. backup / snapshots also data such as: [email protected]: /media/backup-kodi ..... give your own :)

    exclusion of certain folders during backup ... eg recordings

    Code
    /storage/restic -r sftp:[email protected]:/media/veracrypt1/restic --iexclude /storage/recordings backup /storage

    Greetings!


    Can anyone take a look at the configuration and settings of my HTPC based on the Asrock J5040 motherboard.

    Despite the numerous settings according to howto: https://wiki.libreelec.tv/configuration/edid#custom-edid

    after switching to another hdmi / TV port and returning to hdmi: HTPC / LibreElec, I only get a black screen?

    and also after turning on HTPC without TV turned on ...

    some data:

    Ubuntu Pastebin

    tail /sys/class/drm/*/status

    Code
    ==> /sys/class/drm/card0-HDMI-A-1/status <==
    connected
    
    
    ==> /sys/class/drm/card0-HDMI-A-2/status <==
    disconnected


    xrandr

    my entry in: /flash/syslinux.cfg

    Code
    DEFAULT linux
    PROMPT 0
    
    
    LABEL linux
    KERNEL /KERNEL
    APPEND boot=LABEL=System disk=LABEL=Storage ssh quiet initrd=/edid.cpio drm.edid_firmware=edid/edid.bin video=HDMI-A-1:D


    my tv: Panasonic TX-50HX810E / LibreElec 9.2.6

    I had nvidia mobo and it worked perfect ... now intel is black magic :(

    Ps. Unfortunately, I gave up on LE and installed the fork version - AlexElec 19.1-Matrix .... everything works from the proverbial shot :P :P :P

    regards!

    AlexELEC-19

    Does this version work well for you?
    The latest version of LibreELEC (Krypton) v8.0.1 MR
    Version installed as an upgrade and then hardreset
    My remote control skips several positions at fast scrolling ...it's frustrating :)
    I use: irpb receiver streacom / OrigenAE MCE (RC153) remote control
    After a long time lost access to the network ?
    Video files occasionally freeze for some time ....also when viewing lan / samba video files
    So far I have no time for more accurate data and logs :(
    I had to go back to version 7.02 and it was cool !

    Unfortunately, the compilation takes a long time :(
    you have to try the same howto : Compile - LibreELEC
    I changed only two entries in the file :/http://LibreELEC.tv/projects/Generic/Linux/linux.x86_64.conf / In rasberypi probably ..../project/RPi/linux/linux.arm.conf
    section: # Webcam devices

    Code
    CONFIG_USB_VIDEO_CLASS=m
    CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y

    Good luck !

    Ps. I compiled (especially for ION 2) LE Generic x86_64 7.0.2 with drivers uvcvideo for USB Webcam + ( ION2 -nvidiadrivers 340.101 ) + fix temperature CPU for "mobo" AT5IONT-I + transmission 2.92 ( command to start and stop )

    Code
    systemctl enable transmission && systemctl start transmission
    systemctl disable transmission && systemctl stop transmission


    LE v7.0.2

    LE v8.0.0 (Release)

    I installed the latest version of ubuntu: howto
    ........
    wget http://download.openvz.org/template/precr…4-x86_64.tar.gz
    mkdir -p /storage/data/ubuntu
    cd /storage/data/ubuntu
    tar xzf ubuntu-16.04-x86_64.tar.gz
    rm ubuntu-16.04-x86_64.tar.gz
    .........
    mount -o bind /dev /storage/data/ubuntu/dev
    mount -o bind /sys /storage/data/ubuntu/sys
    mount -t proc proc-chroot /storage/data/ubuntu/proc/
    mount -t devpts devpts-chroot /storage/data/ubuntu/dev/pts
    .........
    cp /etc/resolv.conf /storage/data/ubuntu/etc/resolv.conf
    #Good thing to make an autostart file so everything is mounted at reboot
    touch /storage/.config/autostart.sh
    nano /storage/.config/autostart.sh

    Bash
    #!/bin/sh
    chmod -R a+rwX /dev/snd
    mount -o bind /dev /storage/data/ubuntu/dev
    mount -o bind /sys /storage/data/ubuntu/sys
    mount -t proc proc-chroot /storage/data/ubuntu/proc/
    mount -t devpts devpts-chroot /storage/data/ubuntu/dev/pts


    Ctrl-x, Y, enter

    #Giving rights to the executable
    chmod +x /storage/.config/autostart.sh
    dos2unix /storage/.config/autostart.sh

    ..........
    #Chroot into ubuntu
    /storage/data/ubuntu/usr/sbin/chroot /storage/data/ubuntu/ /bin/bash
    apt-get update
    apt-get install nano
    #Enable use of add-apt-repository and other nice stuff
    sudo apt-get install software-properties-common python-software-properties
    #Need user for non-root only programs like steam
    #add the user "retro" with password "console"
    adduser --quiet --disabled-password -shell /bin/bash --home /home/retro --gecos "User" retro; echo -e "console\nconsole" | passwd retro
    ...................
    #Grant Root Privileges to the User
    visudo

    Find the following code:
    # User privilege specification
    root ALL=(ALL:ALL) ALL

    #granting root privileges to the user "retro"
    #Add the following below that code:
    retro ALL=(ALL:ALL) ALL

    Ctrl-x, Y, enter

    #login as user retro
    su retro
    .......................
    #Install Google-Chrome
    wget -q -O - http://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
    sudo sh -c 'echo "deb deb stable main" >> /etc/apt/sources.list.d/google.list'
    sudo apt-get update
    sudo apt-get install google-chrome-stable
    .................
    #Creating a script google-chrome for Kodi / LE (corrected / dev / shm) / If still in chroot as user then type exit twice
    touch /storage/chrome.sh
    nano /storage/chrome.sh
    ...........
    #paste text

    Bash
    #!/bin/sh
    /storage/data/ubuntu/usr/sbin/chroot /storage/data/ubuntu /bin/bash -x << EOF
    chmod 1777 /dev/shm
    su retro
    google-chrome --start-maximized
    EOF

    Ctrl-x, Y, enter
    #Giving rights to the executable
    chmod +x /storage/chrome.sh
    dos2unix /storage/chrome.sh
    ................
    # Launching Google-Chrome LibreElec menu / remote control using entry:
    #System.Exec (path to the script)
    #Editing file remote.xml and entry in the global section (for key 1)

    Code
    <one>System.Exec(/storage/chrome.sh)</one>


    # The sound of the google-chrome / Ubuntu / LE etc.
    # Installation package ALSA / Chroot into ubuntu
    /storage/data/ubuntu/usr/sbin/chroot /storage/data/ubuntu/ /bin/bash
    sudo apt-get install alsa-utils
    sudo touch /etc/asound.conf
    #insert the code (from your audio settings in LE) in me [hw: 1,7] for example:

    Code
    defaults.ctl.card 1
    defaults.pcm.card 1
    defaults.pcm.device 7
    Quote


    Then untick “Continue running background apps when Google Chrome is closed”

    This solution does not work for me
    program chromium installed from the beginning
    I not logged on my google account ( no addons : Adblock plus etc. )
    chromium once it starts and sometimes does not start :) ..... all logs : log-2016-06-11-07.54.03.zip

    Ps. This version works OK OpenELEC Mediacenter - OpenELEC Forum - [ADDON] Chromium Browser - latest stable (1/14)
    but ...Cursor is sometimes lost or flashes ! :(
    This version works for me best browser.chromium-7.0.5.zip
    but does not sync with my Google account ... but I choose this version :)

    I use LibreELEC (Jarvis 16.1) v7.0.0 - generic / RealVNC - viewer - v.5.3.1( x64 ) version for Linux viewer download
    my system : Linux Mint ( Rosa ) ....I tried also : Remmina | Remote Desktop Client for Linux
    x11vnc works well ..... no errors in the displayed image ? ...maybe the problem is the operating system iMac ?