I have solved the problem of my laptop waking in 20 seconds like this - see links there. I would like to understand how this works.
That solution is to somehow modify a variable in /sys/power/mem_sleep
, namely s2idle
to deep
.
Looking at that file it contained this single line:
s2idle [deep]
which was already confusing , given both variables seemed mentioned there, one in brackets.
I didn't need to decide anything though, because, as instructed in the second comment, I haven't tried to change that file as such, but I have used the command:
echo deep | sudo tee -a /sys/power/mem_sleep
Looking again at that file it seemed unchanged though.
After restart the waking from suspend is instantaneous, but that file has the same single line s2idle [deep]
that it had in the first place.
I have trusted that solution but:
I don't know how to reverse that in case I had to
The file seems unchanged so what changing/reversing could mean?
Maybe interesting to notice, there is a file at that location sys/power/wakeup_count
which contains this single line: 20
. Could those be the 20 seconds that I had experienced before?
deep
to the file. But it had alreadydeep
selected. It is a default value. The value in brackets shows the value selected. You can try to writes2idle
and see what happens. – Pilot6 Oct 10 '22 at 14:24This command wrote deep to the file
. -try to write s2idle and see what happens
. You mean to runecho s2idle | sudo tee -a /sys/power/mem_sleep
? And should that trigger the line[s2sleep] deep
? – cipricus Oct 10 '22 at 14:33