MacBook Deep Suspend Wake Failure | Generated by AI

Home 2026.06

Here’s the complete diagnosis:


Root Cause: System entered deep suspend (S3) and never woke up.

The previous boot’s death sequence at 03:17:58–03:17:59:

systemd-logind[1005]: Power key pressed short.
systemd-logind[1005]: The system will suspend now!
NetworkManager: sleep requested
systemd-sleep[28058]: Performing sleep operation 'suspend'...
kernel: PM: suspend entry (deep)

Then nothing — no PM: suspend exit, no resume, no further log entries at all. The system went to sleep fine, but the wake-up failed completely. No keyboard, trackpad, or lid-open signal could bring it back, forcing a power-button hard reset.

Why it happens (Apple MacBook on Linux):

Your /proc/acpi/wakeup shows the problem:

Device Wake from S3 (deep)? Wake from S4?
LID0 (lid open) No Yes (hibernate only)
SPIT (touchpad) Yes
Keyboard Not listed at all
Power button Intercepted by systemd-logind

On Apple MacBook hardware running Linux:

Quick fix — switch to s2idle (modern standby):

s2idle is a shallower sleep that doesn’t fully power off the CPU — it uses slightly more battery but wakes reliably on Apple hardware because the keyboard/trackpad stays alive.

# Make persistent
echo 'SleepMode=s2idle' | sudo tee -a /etc/systemd/sleep.conf.d/disable-deep-suspend.conf

Or try it immediately:

sudo sh -c 'echo s2idle > /sys/power/mem_sleep'

Alternative — disable auto-suspend entirely if the lid-close suspend isn’t intended:

# Don't suspend on lid close
gsettings set org.gnome.settings-daemon.plugins.power lid-close-ac-action 'nothing'
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type 'nothing'

Want me to apply either of these?


Back Donate