View Single Post
Old 02-04-2016, 05:29 PM   #3
reedstrm
Junior Member
 
Join Date: Feb 2016
Posts: 1
Default my workaround and fix

I had a similar issue, failure to suspend. This happened after I had a problem with DisplayLinkManager occasionally going crazy and eating half my CPUs, even if no display was installed. That's another problem, though, which I am owrking around by setting the service to manual launch. When I did that, I can no longer suspend, because of how the pm suspend script is written. I added this stanza at the top:

if [ ! -e /usr/lib/displaylink/PmMessagesPort_out ]; then
exit 0
fi

So the script does not fail if the manager service isn't running.

Ross

P.S. the informative log for this case is /var/log/pm-suspend.log
search from the bottom for Error

Last edited by reedstrm; 02-04-2016 at 06:29 PM. Reason: added info about log
reedstrm is offline   Reply With Quote