我在 Ubuntu 16.04LTS 中遇到了挂起系统的问题

我在 Ubuntu 16.04LTS 中遇到了挂起系统的问题

我使用标准公司硬件 DELL Latitude-E5570,之前没有遇到过这个问题。

我不确定这是否与由于 /boot 分区空间不足而自动清除未使用的软件包 (sudo apt-get autoremove) 有关。实际上,在暂停后,我的系统日志中出现了以下内容:

Jun 25 11:09:37 ***-Latitude-E5570 systemd[1]: Reached target Sleep.
Jun 25 11:09:37 ***-Latitude-E5570 systemd[1]: Starting Suspend...
Jun 25 11:09:37 ***-Latitude-E5570 systemd-sleep[10122]: Failed to connect to non-global ctrl_ifname: (nil)  error: No such file or directory
Jun 25 11:09:37 ***-Latitude-E5570 systemd-sleep[10123]: /lib/systemd/system-sleep/wpasupplicant failed with error code 255.
Jun 25 11:09:37 ***-Latitude-E5570 systemd-sleep[10122]: Suspending system...
Jun 25 11:18:03 ***-Latitude-E5570 rsyslogd: [origin software="rsyslogd" swVersion="8.16.0" x-pid="1075" x-info="http://www.rsyslog.com"] start

我读过一些指出图形驱动程序问题的帖子,但是之前我没有接触过这个问题。

答案1

$ cat /lib/systemd/system-sleep/wpasupplicant
#!/bin/sh
set -e

if [ "$2" = "suspend" ] || [ "$2" = "hybrid-sleep" ]; then
    case "$1" in
        pre) /sbin/wpa_cli suspend ;;
        post) /sbin/wpa_cli resume ;;
    esac
fi

您对 有疑问/sbin/wpa_cli,它是软件包的一部分wpasupplicant

相关内容