j******a 发帖数: 1599 | 1 在vnc server上run xfce,以前我记得都有个setting里面的选项可以disable
screensaver, 这次无论如何也找不到了,难道被管理员disable了? | l*******G 发帖数: 1191 | 2 Re: Disabling screensaver and power management in XFCE
@haresear, I bet even money that that is screen-blanking kicking in, which
can be a pain to disable. Try this though... for your current session, copy/
paste these commands one at a time in a terminal...
Code:
xset -dpms
xset s noblank
xset s off
If that works and you want it to persist on reboot, you'll need to create/
modify the file /etc/X11/xorg.conf. If you don't have the file create it and
add the following, if you do have that file add the following under Section
"Monitor", leaving out the Section "Monitor" and EndSection lines...
Code:
Section "Monitor"
Option "NODPMS"
EndSection
Reboot and see if it works. If not, try these lines, again leaving out the
Section/EndSection lines if you already have those sections and rebooting
afterwards...
Code:
Section "Monitor"
Option "DPMS"
EndSection
Section "ServerLayout"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection | j******a 发帖数: 1599 | 3 这些CLI都不work,又没有权限改xorg.conf
copy/
and
【在 l*******G 的大作中提到】 : Re: Disabling screensaver and power management in XFCE : @haresear, I bet even money that that is screen-blanking kicking in, which : can be a pain to disable. Try this though... for your current session, copy/ : paste these commands one at a time in a terminal... : Code: : xset -dpms : xset s noblank : xset s off : If that works and you want it to persist on reboot, you'll need to create/ : modify the file /etc/X11/xorg.conf. If you don't have the file create it and
|
|