如何禁止从命令行挂起?


9

有没有办法禁止从命令行挂起/休眠。我想在我的家用计算机上使用ssh,而不要使其挂起。


远程计算机正在运行哪个版本的Ubuntu?
Ciaran Liedeman 2011年

远程计算机在Ubuntu 11.10上运行Gnome。
user1477 2011年

它是Ubuntu Server还是桌面安装?您确定ssh连接不仅仅是快要死了吗?尝试启用keepalive并查看是否
有所作为

Answers:



3

使用xdotool代替:

sudo apt-get安装xdotool

然后,在这样的bash循环中

while true ; do
    DISPLAY=:0.0 xdotool key Shift_L   # send a "harmless" keypress to Xorg
    sleep 5                            # wait a little bit and do it again
done

0

您可能要禁用中的电源管理gnome-control-center


通常,我希望计算机挂起。这是一台笔记本电脑。但是,当我使用它时,我希望暂停被暂时禁止。
user1477 2011年

3
嗯,也许找出哪个gconf(或dconf,在这个勇敢的新11.10世界中)键启用/禁用挂起,然后编写几个shell脚本来更改它们以从命令行启用/禁用挂起。
Marius Gedminas
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.