Ubuntu 18.04.2 immediately wakes up from suspendlaptop suspend resumes immediately in ubuntu 13.04Lenovo X1 Carbon with Ubuntu 14.04 wakes from suspend by itself after 3 hours14.04.3 wakes up as soon as putting to sleepUbuntu wakes up immediately after suspendubuntu 16.04 wakes up immediately from suspend after installing Fprint in lenovo T530suspend wakes up immediately: can you read this kernel log for me?Ubuntu 18.04 - logged out after resuming from suspend?Kubuntu 18.04 wakes immediately after suspend (unable to suspend)Run a command as su after every wake from suspendWOL wakes up the computer immediately after suspend
What is the color associated with lukewarm?
Will users know a CardView is clickable?
How to ask if I can mow my neighbor's lawn
Having some issue with notation in a Hilbert space
Why can't we feel the Earth's revolution?
What does a/.b[c][[1]] mean?
How could I create a situation in which a PC has to make a saving throw or be forced to pet a dog?
Time at 1G acceleration to travel 100000 light years
What is the precise meaning of "подсел на мак"?
How to make all magic-casting innate, but still rare?
How did the European Union reach the figure of 3% as a maximum allowed deficit?
How can a flywheel makes engine runs smoothly?
Are there any super-powered aliens in the Marvel universe?
Numerical second order differentiation
How "fast" does astronomical events happen?
When is the phrase "j'ai bon" used?
How can I detect if I'm in a subshell?
Why is Skinner so awkward in Hot Fuzz?
I have found ports on my Samsung smart tv running a display service. What can I do with it?
Why are almost all the people in this orchestra recording wearing headphones with one ear on and one ear off?
Explicit direct #include vs. Non-contractual transitive #include
Is there a term for someone whose preferred policies are a mix of Left and Right?
Leveraging cash for buying car
How to prevent cables getting intertwined
Ubuntu 18.04.2 immediately wakes up from suspend
laptop suspend resumes immediately in ubuntu 13.04Lenovo X1 Carbon with Ubuntu 14.04 wakes from suspend by itself after 3 hours14.04.3 wakes up as soon as putting to sleepUbuntu wakes up immediately after suspendubuntu 16.04 wakes up immediately from suspend after installing Fprint in lenovo T530suspend wakes up immediately: can you read this kernel log for me?Ubuntu 18.04 - logged out after resuming from suspend?Kubuntu 18.04 wakes immediately after suspend (unable to suspend)Run a command as su after every wake from suspendWOL wakes up the computer immediately after suspend
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
If I try to suspend the system it just wakes up either immediately or after a couple of minutes. I have an excerpt of my system log showing when it entered suspend and exited but I don't know how to upload it here in an easy to read format.
18.04 suspend
add a comment |
If I try to suspend the system it just wakes up either immediately or after a couple of minutes. I have an excerpt of my system log showing when it entered suspend and exited but I don't know how to upload it here in an easy to read format.
18.04 suspend
add a comment |
If I try to suspend the system it just wakes up either immediately or after a couple of minutes. I have an excerpt of my system log showing when it entered suspend and exited but I don't know how to upload it here in an easy to read format.
18.04 suspend
If I try to suspend the system it just wakes up either immediately or after a couple of minutes. I have an excerpt of my system log showing when it entered suspend and exited but I don't know how to upload it here in an easy to read format.
18.04 suspend
18.04 suspend
asked Apr 14 at 22:35
Andres OrtizAndres Ortiz
132
132
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I had the very same problem after upgrading from ubuntu 16.04 to ubuntu 18.04.
I solved by disabling the wakeup option for the device that in my case was enabled.
$ cat /sys/bus/usb/devices/*/power/wakeup
disabled
enabled
disabled
disabled
$ ll /sys/bus/usb/devices/*/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:04 /sys/bus/usb/devices/1-7/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:02 /sys/bus/usb/devices/1-9/power/wakeup <-- the bad guy
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb1/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb2/power/wakeup
But what really helped me to identify the device were its ids.
cat /sys/bus/usb/devices/1-9/idVendor
8087
cat /sys/bus/usb/devices/1-9/idProduct
0a2b
After googling a bit, turns out it's the bluethooth controller..
https://usb-ids.gowdy.us/read/UD/8087/0a2b
Finally disable it
echo "disabled" > /sys/bus/usb/devices/1-9/power/wakeup
Now my laptop really suspends. Hope this helps you too.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1133919%2fubuntu-18-04-2-immediately-wakes-up-from-suspend%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had the very same problem after upgrading from ubuntu 16.04 to ubuntu 18.04.
I solved by disabling the wakeup option for the device that in my case was enabled.
$ cat /sys/bus/usb/devices/*/power/wakeup
disabled
enabled
disabled
disabled
$ ll /sys/bus/usb/devices/*/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:04 /sys/bus/usb/devices/1-7/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:02 /sys/bus/usb/devices/1-9/power/wakeup <-- the bad guy
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb1/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb2/power/wakeup
But what really helped me to identify the device were its ids.
cat /sys/bus/usb/devices/1-9/idVendor
8087
cat /sys/bus/usb/devices/1-9/idProduct
0a2b
After googling a bit, turns out it's the bluethooth controller..
https://usb-ids.gowdy.us/read/UD/8087/0a2b
Finally disable it
echo "disabled" > /sys/bus/usb/devices/1-9/power/wakeup
Now my laptop really suspends. Hope this helps you too.
add a comment |
I had the very same problem after upgrading from ubuntu 16.04 to ubuntu 18.04.
I solved by disabling the wakeup option for the device that in my case was enabled.
$ cat /sys/bus/usb/devices/*/power/wakeup
disabled
enabled
disabled
disabled
$ ll /sys/bus/usb/devices/*/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:04 /sys/bus/usb/devices/1-7/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:02 /sys/bus/usb/devices/1-9/power/wakeup <-- the bad guy
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb1/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb2/power/wakeup
But what really helped me to identify the device were its ids.
cat /sys/bus/usb/devices/1-9/idVendor
8087
cat /sys/bus/usb/devices/1-9/idProduct
0a2b
After googling a bit, turns out it's the bluethooth controller..
https://usb-ids.gowdy.us/read/UD/8087/0a2b
Finally disable it
echo "disabled" > /sys/bus/usb/devices/1-9/power/wakeup
Now my laptop really suspends. Hope this helps you too.
add a comment |
I had the very same problem after upgrading from ubuntu 16.04 to ubuntu 18.04.
I solved by disabling the wakeup option for the device that in my case was enabled.
$ cat /sys/bus/usb/devices/*/power/wakeup
disabled
enabled
disabled
disabled
$ ll /sys/bus/usb/devices/*/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:04 /sys/bus/usb/devices/1-7/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:02 /sys/bus/usb/devices/1-9/power/wakeup <-- the bad guy
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb1/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb2/power/wakeup
But what really helped me to identify the device were its ids.
cat /sys/bus/usb/devices/1-9/idVendor
8087
cat /sys/bus/usb/devices/1-9/idProduct
0a2b
After googling a bit, turns out it's the bluethooth controller..
https://usb-ids.gowdy.us/read/UD/8087/0a2b
Finally disable it
echo "disabled" > /sys/bus/usb/devices/1-9/power/wakeup
Now my laptop really suspends. Hope this helps you too.
I had the very same problem after upgrading from ubuntu 16.04 to ubuntu 18.04.
I solved by disabling the wakeup option for the device that in my case was enabled.
$ cat /sys/bus/usb/devices/*/power/wakeup
disabled
enabled
disabled
disabled
$ ll /sys/bus/usb/devices/*/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:04 /sys/bus/usb/devices/1-7/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 11:02 /sys/bus/usb/devices/1-9/power/wakeup <-- the bad guy
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb1/power/wakeup
-rw-r--r-- 1 root root 4,0K mag 19 10:46 /sys/bus/usb/devices/usb2/power/wakeup
But what really helped me to identify the device were its ids.
cat /sys/bus/usb/devices/1-9/idVendor
8087
cat /sys/bus/usb/devices/1-9/idProduct
0a2b
After googling a bit, turns out it's the bluethooth controller..
https://usb-ids.gowdy.us/read/UD/8087/0a2b
Finally disable it
echo "disabled" > /sys/bus/usb/devices/1-9/power/wakeup
Now my laptop really suspends. Hope this helps you too.
answered May 19 at 9:33
cventrcventr
16
16
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1133919%2fubuntu-18-04-2-immediately-wakes-up-from-suspend%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown