Touch Startet nicht Richtig

Ich habe das problem mein Repetier startet die Weboberfläche kommt und funktioniert und Drucker verbindet sich auch aber das touch hängt irgendwie beim aufstarten irgendwie beim Logo woran kann das liegen?

Comments

  • Das Logo ist noch von vor dem touch start. Einfachste ursache wäre das es in /boot/repetier-image-setup.txt ausgeschaltet ist. Ursache ist dann dieser code:
     This file contains some settings that are used to define how the image works. Edit this to easily change
    # The behaviour.
    cat /proc/cpuinfo | grep ARMv6 > /dev/null
    IS_V6=$?

    # If you have a connected display you want to run the x server with chrome in kiosk mode. Just set value to 1.
    # If you have no display, you do want to spare the RAM/CPU usage and not start it. Set value to 0.
    if [ "$IS_V6" == "0" ] ; then
      # Raspberry Zero or 1 detected, installing armel version..."
      RUN_CHROME=0
    else
      # Raspberry with v7 or newer command set found. Installing armhf version..."
      RUN_CHROME=1
    fi

    Bei kleinen PIs mit ARMv6 ist es standardmäßig ausgeschaltet weil die so langsam sind und im Fall des Pi Zero auch wenig Speicher besitzen. Setze RUN_CHROM=1 wo es als 0 drin steht. Ist das nicht der Grund logge per ssh ein und starte x server manuell um die Fehlermeldung zu sehen:

    xinit -- -nocursor

Sign In or Register to comment.