如何在 CentOS 中实现空闲时自动锁屏?

如何在 CentOS 中实现空闲时自动锁屏?

如何在 CentOS 中实现空闲时自动锁屏?

我希望用户在机器闲置一段时间后必须重新输入密码。

如果在 CentOs 中没有这样做的选项,还有哪些其他解决方案可以让我实现这一点?

答案1

我在以下链接中找到了解决方案

http://ejd021-linux.blogspot.in/2011/06/how-to-lock-screen-in-centos.html

您可能需要将 ftp url 更改为

wget ftp://ftp.sunet.se/pub/Linux/distributions/centos/5/os/x86_64/CentOS/libXp-1.0.0-8.1.el5.x86_64.rpm

wget ftp://ftp.sunet.se/pub/Linux/distributions/centos/5/os/x86_64/CentOS/openmotif-2.3.1-7.2.el5.x86_64.rp

给出的第三个 URL 工作正常。只要按照博客上的说明操作就可以了。

答案2

转到系统->首选项->屏幕保护程序然后更改计算机空闲时间并启用屏幕保护程序空闲时锁定屏幕的设置。

答案3

尝试使用以下命令通过将 1 替换为您想要的延迟来设置空闲延迟。时间以分钟为单位。

gconftool-2 --type int --set /desktop/gnome/session/idle_delay 1

设置disable_lock_screen false空闲超时后要求输入密码或disable_lock_screen true空闲超时后不需要密码。

gconftool-2 --type bool --set /desktop/gnome/lockdown/disable_lock_screen false

相关内容