如何关闭显示器休眠

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
ext3
帖子: 2
注册时间: 2010-11-08 10:56

如何关闭显示器休眠

#1

帖子 ext3 » 2010-11-08 11:01

如何关闭显示器休眠?是要修改配置文件还是要执行命令?
头像
Terpineol
帖子: 1230
注册时间: 2007-12-09 14:35

Re: 如何关闭显示器休眠

#2

帖子 Terpineol » 2010-11-08 11:02

电源管理哪里可以吗?
Linux is for human being,love is for human making
头像
tenzu
论坛版主
帖子: 36924
注册时间: 2008-11-21 20:26

Re: 如何关闭显示器休眠

#3

帖子 tenzu » 2010-11-08 11:33

肯定在电源管理里面
terryscz
帖子: 18
注册时间: 2006-11-07 15:24

Re: 如何关闭显示器休眠

#4

帖子 terryscz » 2010-11-08 11:45

gnome面板上添加一个:阻止管理小程序(电源管理器阻止管理小程序),好用
ext3
帖子: 2
注册时间: 2010-11-08 10:56

Re: 如何关闭显示器休眠

#5

帖子 ext3 » 2010-11-09 14:54

我没安装gnome,我用的xfce
头像
kingkongmok
帖子: 340
注册时间: 2006-03-23 14:48

Re: 如何关闭显示器休眠

#6

帖子 kingkongmok » 2010-11-09 15:56

代码: 全选

Disable screensaver UBUNTU

Solution 1:

Edit /etc/X11/xorg.conf file using the following command

sudo vi /etc/X11/xorg.conf

and add the following lines

Section “ServerFlags”
#other options can go here
Option “BlankTime” “0″
Option “StandbyTime” “0″
Option “SuspendTime” “0″
Option “OffTime” “0″
EndSection

Save and exit the file

Solution 2

Edit /etc/X11/xorg.conf file using the following command

sudo vi /etc/X11/xorg.conf

This effectively disables power management on your monitor Settings

Section “Monitor”
#other options can go here
Option “DPMS” “false”
EndSection

Save and exit the file and restart your machine

 

Solution 3

gconftool-2  –set “/apps/gnome-screensaver/idle_activation_enabled” –type boolean false

 

Solution 4

gnome-screensaver-command –inhibit


Solution 5

gnome-screensaver-comand –poke

 
One of all the above should work in your UBUNTU (I hope…)
wenjianhn
帖子: 583
注册时间: 2008-10-15 10:49
来自: CS

Re: 如何关闭显示器休眠

#7

帖子 wenjianhn » 2010-11-09 17:23

显示器没休眠功能吧 :em04

试试:
xset dpms force on
或者:
xset -dpms

代码: 全选

 _____________
< 呜呜buntu >
 -------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
回复