Clickbait. What they actually say: " Under no circumstances should you leave a laptop powered on and in any sleep/hibernate/standby mode when placed in a bag, backpack, or in an overhead bin. The PC will overheat as a result of that action. Any resulting damage will not be covered by the Dell warranty. " Fair enough. A laptop that overheats because it's been left in an enclosed space whilst not off is not damage caus…
I don't think this is clickbait; I think any normal user would think that closing the lid puts the laptop into a state where putting it in a bag is entirely safe to do. Microsoft seems to have decided to entirely break this expectation such that closing the lid of a laptop puts it into this weird not-really-suspended state, such that putting it in a confined space could cause it to overheat. It's... pretty user-unfri…
Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
21–30 of 908 posts
Re: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#22Funny enough, I actually had a plenty of issues with XPS and Linux. The machine would not go to sleep when I closed the lid and put it in the bag. The result - an extremely hot and loud laptop. I think that may have been a BIOS issue, as it stopped happening after a year or so.
Here's the script btw for those that have the same problem, you'll need to modify the identifiers based on your hardware after identifying which devices cause the problem
#!/bin/bash
(cat /proc/acpi/wakeup | grep "GLAN" | grep "enabled") && echo "GLAN" > /proc/acpi/wakeup
(cat /proc/acpi/wakeup | grep "XHC" | grep "enabled") && echo "XHC" > /proc/acpi/wakeupRe: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#23> With regards to transporting your laptop, you must first turn the laptop OFF This has been a problem for already quite long. I remember my very old laptop overheating if being put in the backpack in Standby mode. Nowadays I in fact don't just turn laptops Off the default way. I go and disable the "fast start up" (Control Panel - Power Options - Choose what the power buttons do) to make sure the computer gets turnt…
Re: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#24The issue is that Windows doesn't go into S3 sleep when you close the lid; it goes into a weird not-really-asleep state for... some reason that I don't agree with[0]. I guess that state is "hot" enough that you could damage the laptop by putting it in a bag while in that state. Fortunately I've been running Linux on my XPS 13, which I have put into a bag hundreds of times (maybe even over a thousand) while suspended.…
Oh wow. i did NOT know that. Even worse... > Switching between S3 and Modern Standby cannot be done by changing a setting in the BIOS. Switching the power model is not supported in Windows without a complete OS re-install. and on Reddit > Warning: if your laptop is newer than 2019, there is a high chance, your OEM removed any S3 code from the bios, and your laptop will crash entering S3 and you have to force hold pow…
Re: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#25Earlier quoted context omitted.
I don't think this is clickbait; I think any normal user would think that closing the lid puts the laptop into a state where putting it in a bag is entirely safe to do. Microsoft seems to have decided to entirely break this expectation such that closing the lid of a laptop puts it into this weird not-really-suspended state, such that putting it in a confined space could cause it to overheat. It's... pretty user-unfri…
Exactly. I would personally consider damage caused by an unreliable suspend mode (whether an issue of software or hardware) to be an example of manufacturer defect.
Re: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#26Earlier quoted context omitted.
Oh wow. i did NOT know that. Even worse... > Switching between S3 and Modern Standby cannot be done by changing a setting in the BIOS. Switching the power model is not supported in Windows without a complete OS re-install. and on Reddit > Warning: if your laptop is newer than 2019, there is a high chance, your OEM removed any S3 code from the bios, and your laptop will crash entering S3 and you have to force hold pow…
Spoiler: I have an XPS 9500 under Linux, which sleeps fine under S3 but then it never wakes up. So the problem isn't with Windows.
Re: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#27Clickbait. What they actually say: " Under no circumstances should you leave a laptop powered on and in any sleep/hibernate/standby mode when placed in a bag, backpack, or in an overhead bin. The PC will overheat as a result of that action. Any resulting damage will not be covered by the Dell warranty. " Fair enough. A laptop that overheats because it's been left in an enclosed space whilst not off is not damage caus…
I don't think this is clickbait; I think any normal user would think that closing the lid puts the laptop into a state where putting it in a bag is entirely safe to do. Microsoft seems to have decided to entirely break this expectation such that closing the lid of a laptop puts it into this weird not-really-suspended state, such that putting it in a confined space could cause it to overheat. It's... pretty user-unfri…
Closing the lid does not necessarily turn the laptop off at all (by design). I think most people have had that experience. In fact the lid may be closed with the laptop fully on.
In any case, they make is explicit and clear exactly to avoid any such assumption.
The title is obviously clickbait because of course you can put your Dell laptop in a bag and of course that does not void the warranty.
Re: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#28Clickbait. What they actually say: " Under no circumstances should you leave a laptop powered on and in any sleep/hibernate/standby mode when placed in a bag, backpack, or in an overhead bin. The PC will overheat as a result of that action. Any resulting damage will not be covered by the Dell warranty. " Fair enough. A laptop that overheats because it's been left in an enclosed space whilst not off is not damage caus…
Re: Do not leave XPS laptop in any sleep/hibernate/standby mode when placed in a bag
#29Funny enough, I actually had a plenty of issues with XPS and Linux. The machine would not go to sleep when I closed the lid and put it in the bag. The result - an extremely hot and loud laptop. I think that may have been a BIOS issue, as it stopped happening after a year or so.
Often it's a problem with the Linux ACPI settings. I had to write a script that checks entries in /proc/acpi/wakeup and disables them as the laptop will otherwise often immediately come back from sleep due to being woken by the ethernet card or another device. That's not specific to Dell devices. Otherwise checking syslog often reveals why going to sleep failed, sometimes it's a particular program that refuses to fre…
grep 'GLAN.*enabled' /proc/acpi/wakeup && echo GLAN >/proc/acpi/wakeup
grep 'XHC.*enabled' /proc/acpi/wakeup && echo XHC >/proc/acpi/wakeup