Vielen Dank für die Antwort.
Leider ist OpenNX keine Alternative da zusätzliche Software auf dem Host Rechner zu installieren entfällt.
Und da VNC da halt schon drauf ist wollte ich darauf zurückgreifen.
Meine Idee war das zu handhaben wie hier https://forum-raspberrypi.de/shackspace.de/?p=3859.
Leider funktioniert das nicht ganz so wie hier beschrieben https://forum-raspberrypi.de/shackspace.de/…ies#thin_client
An diesem Punkt bekomme ich Probleme
Quote
Sobald ich dann den RapPi neustarte bekomme ich die Rückmeldung
Naja ich hoffe das noch jemand anders eine Hilfe bzw Problemlösung hat
Mfg
Edit: (Nachtrag)
OK, ich bin etwas weiter.
Der Fehler lag bei DISPLAY:=0 welches richtig DISPLAY=:0 heißen soll
jedoch bekomme ich jetzt folgende Fehlermeldung
Meine rc.local sieht momentan so aus
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
# TightVNCViewer
DISPLAY=:0 xtightvncviewer -fullscreen 192.168.115.28:5900
exit 0
Display More