睡眠时,打开的进程被关闭

睡眠时,打开的进程被关闭

我正在使用 DELL Inspiron 1525。

我已设置合上盖子即可进入睡眠模式。从睡眠状态唤醒时,我之前打开的所有进程都已关闭,并且我看到一个空白的桌面。

对此有任何已知的解决方案吗?

谢谢。

答案1

也许您正遭受这个问题。到目前为止,评论中提供的解决方案对我(也是 Inspiron 1525)有效。

解决方案来自埃雷维利亚 (erevilla)

 * Create a file /etc/pm/sleep.d/50_custom with the following content:

 --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<--
 #!/bin/sh

 # Action script to shutdown modules before suspending.
 # before a hibernate
 #
 # Copyright: Copyright (c) 2009 Ernesto Revilla
 # License: GPL-2
 #

 PATH=/sbin:/usr/sbin:/bin:/usr/bin

 case "${1}" in
    suspend|suspend_hybrid|hibernate)
        rmmod uvcvideo
        rmmod usbhid
        rmmod psmouse
            ;;

    resume|thaw)
        modprobe uvcvideo
        modprobe usbhid
        modprobe psmouse
            ;;

 esac

 --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<--

现在必须使脚本可执行:

 sudo chmod +x /etc/pm/sleep.d/50_custom

相关内容