wer sucht der findet :
https://forums.debian.net/viewtopic.php?t=146063
https://unix.stackexchange.com/question ... xt-console
I was really buffled by this problem. All tricks above with using setterm and redirect from/to /dev/tty0 didn't worked from my ssh.
Then I realized a way to disable it:
TERM=linux setterm -blank 0 -powerdown 0 -powersave off >/dev/tty0 </dev/tty0
TERM=linux replaces default TERM (which is xterm-256color on my machine), and helps setterm to query proper parameters from tty0.
You can check result by
cat /sys/module/kernel/parameters/consoleblank
It should be 0. If it is 600, trick hasn't worked out.
Code: Alles auswählen
echo '
#!/bin/sh
export DISPLAY=:0.0
xset s off
xset s noblank
xset -dpms
' > ~/.xinitrc
scheint zu funktionieren
cat $ /sys/module/kernel/parameters/consoleblank
0
EDIT : funktioniert nicht der Bildschirm ist nach ca 5 Minuten wieder aus/schwarz
Nächster Versuch :
Since DPMS is enabled by default in many scenarios, explicit action must be taken to disable it. To completely disable DPMS, add the following to a file in /etc/X11/xorg.conf.d/10-monitor.conf:
Section "Extensions"
Option "DPMS" "Disable"
EndSection
funktioniert auch nicht
Mit "xset s off " scheint die Bildschirmabschaltung deaktiviert worden zu sein. Das Problem ist aber, das "xset s off " in einem Openbox Terminal ausgeführt werden muss. Die Openbox Autostartbefehle in "$HOME/.config/openbox/autostart" werden allerdings nach der Ausführung von "session-setup-script=/usr/bin/kodi" (/etc/lightdm/lightdm.conf) ausgeführt.
Gibt es eine Möglichkeit vor dem session-setup-script Befehle auf der auszuführen ?
EDIT:
If you want to disable the blank screen at every startup, just update the /etc/lightdm/lightdm.conf file and add in the [SeatDefaults] section the following command:
[SeatDefaults]
xserver-command=X -s 0 -dpms
mal schauen obs geht ... funktioniert
Screenblanking is nicht aktiv
Alternativ könnte ein Scriptwrapper ( xset s off && kodi ) mit session-setup-script=/usr/bin/scriptwrapper funktionieren.