Posts by tonydix

    error message

    rsync: [sender] failed to connect to 192.168.0.24 (192.168.0.24): Connection refused (111)


    This despite the fact that I can successfully connect via ftp and scp

    Any ideas gratefully received

    I seem to have crashed my system. I had created a backup and was trying to restore it using


    fsarchiver restfs /mnt/backup/Backups/omvbackup/backup-omv-2023-10-12_08-30-01.fsa dest=/dev/sda1


    sadly i got an error message which I don't understand


    oper_restore.c#134,convert_argv_to_strdicos(): cannot find "id=" key in "dest=/dev/sda1"


    Can anyone assist?

    Thanks

    Tony

    Many thanks to Soma and KMO201 and blue coffee getting me on the right track the compose that actually worked for me was :-


    version: "2.1"

    services:

    plex:

    image: lscr.io/linuxserver/plex:latest

    container_name: plex

    network_mode: host

    environment:

    - PUID=1000

    - PGID=100

    - TZ=Etc/UTC

    - VERSION=docker

    - PLEX_CLAIM= #optional

    volumes:


    - /srv/dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/tv/:/tv

    - /srv/dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/movies/:/movies

    - /srv/dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/music/:/music

    - /srv/dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/config/:/config

    restart: unless-stopped


    Now plex sees all my shared files. Many thanks guys.




    Plex is highly sensitive to permissions. You need to verify that the files Plex wants to see have permissions such that the user Plex runs as is allowed to at least read those files, and enter those directories.

    Here is what I used :-


    version: "2.1"

    services:

    plex:

    image: lscr.io/linuxserver/plex:latest

    container_name: plex

    network_mode: host

    environment:

    - PUID=1000

    - PGID=100

    - TZ=Etc/UTC

    - VERSION=docker

    - PLEX_CLAIM= #optional

    volumes:

    - /dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/tv/

    - /dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/movies/

    - /dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/music/

    - /dev-disk-by-uuid-f0885a0b-2904-422f-bdf6-f3673851ea39/config/

    restart: unless-stopped

    Trying to get this to work. My shared folders and the files in them show up on windows. Plex is working and the server has been claimed. I have set up the folders in plex but plex keeps saying the folder is empty.

    It isnt !!! Any ideas ? Many thanks. Tony