Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - RolandPoot

1
Raspberry PI / PI-3 + DVBSky S960 V2 USB Box
« on: March 11, 2022, 13:08:51 »
Docker funktioniert jetzt im unstable - Danke.
Gruß, R.

2
Raspberry PI / PI-3 + DVBSky S960 V2 USB Box
« on: March 10, 2022, 17:12:42 »
Hi gr4vity,

I have now installed Claus's fixed package (unstable)

Greetings, R.

3
Raspberry PI / PI-3 + DVBSky S960 V2 USB Box
« on: March 10, 2022, 16:46:16 »
Hallo Claus,

danke, bin jetzt einen Schritt weiter.
Tatsächlich fehlt da noch was:
Code: [Select]
Step 4/6 : RUN apt-get update  && apt-get dist-upgrade -y  && apt-get install -y     make git-core software-properties-common locales locales-all
 ---> Running in f2f8f47f6b5b
runtime "io.containerd.runc.v2" binary not installed "containerd-shim-runc-v2": file does not exist: unknown

Gruß, R

4
Raspberry PI / PI-3 + DVBSky S960 V2 USB Box
« on: March 09, 2022, 18:19:30 »
Hallo Forum.
Mein erster Beitrag, ich fang mal an:
Rahmenbedingungen:
MLD-5.5_netinstall_2021.09.25-182.2+1617_armhf-rpi3 auf RASPi3 mit DVBSky S960 V2 USB Box

Damit beobachte ich das Verhalten bei Kanalumschaltung wie hier beschrieben:
https://www.vdr-portal.de/forum/index.php?thread/133852-rpi-3b-kein-bild-nach-dem-umschalten/

Nun wollte ich nach der Beschreibung im Wiki
https://www.minidvblinux.de/wiki/mld/entwicklung/54_entwicklungsumgebung#pakete_bauen
mir die Entwicklungsumgebung herrichten, damit ich den Patch aus dem o.g. Post für das rpihddevice-Plugin einbauen kann.

Also docker installiert
und das Dockerfile angepasst:
--------------------------------------------------------------------------------------
Code: [Select]
uname -m | grep -q armv7l && sed "s|FROM .*|FROM arm32v7/debian:buster|" -i Dockerfile
MAINTAINER MLD Team <team@minidvblinux.de>

ARG DEBIAN_FRONTEND=noninteractive

# update und core Pakete installieren
RUN apt-get update \
 && apt-get dist-upgrade -y \
 && apt-get install -y \
    make git-core software-properties-common locales locales-all

# MLD Pakete holen
RUN git clone http://minidvblinux.de/git-5/MLD.git MLD \
 && cd MLD \
 && echo ”.SILENT:\nDISTRI_VER = 5.5” > Makefile.config \
 && make checkout_base

# MLD Paket Abhängigkeiten installieren
RUN cd MLD \
 && apt-get install -y $(make deps)
--------------------------------------------------------------------------------------
Dann weiter wie in der Anleitung:
Code: [Select]
docker build -t mld/devel:5.5 /root/develAusgabe: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

Als Nächstes:
Code: [Select]
/etc/init.d/docker restart
Stopping docker
/etc/init.d/docker: line 32: cgroupfs-umount: Too many levels of symbolic links                            failed
Starting docker
/etc/init.d/docker: line 32: cgroupfs-mount: Too many levels of symbolic links                             done

Ich hoffe, ich hab nicht kompletten Schwachsinn geschrieben, und dass mir jemand helfen kann.

Gruß, R.