Ubuntu 24.10 desktop computers sometimes fail to resume properly after entering sleep mode, leaving users with an unresponsive system and forcing a manual reboot. Typically, this issue arises due to power management misconfigurations, problematic hardware drivers, or conflicts with certain scheduled tasks. To resolve this, follow these detailed troubleshooting methods.
Method 1: Adjust Power Management Settings in Ubuntu
Step 1: Open the Settings app by clicking on the system menu in the upper-right corner of your desktop and selecting "Settings."
Step 2: In the Settings window, navigate to "Power" in the left-hand sidebar. Here, you'll find options related to your system's sleep behavior.
Step 3: Under the "Suspend & Power Button" section, change the "Automatic Suspend" option to "Off" or extend the duration significantly. Disabling automatic suspension prevents your computer from entering sleep mode unexpectedly.

Step 4: Close the Settings app and restart your computer to apply these changes fully. Monitor your system for a few days to confirm that the issue no longer occurs.
Method 2: Update Graphics and Hardware Drivers
Outdated or incompatible graphics drivers can cause Ubuntu 24.10 systems to fail when resuming from sleep. Updating drivers ensures optimal hardware compatibility and reliable sleep-wake functionality.
Step 1: Open the "Software & Updates" application by searching for it in the Activities overview or the Applications menu.
Step 2: Navigate to the "Additional Drivers" tab. Ubuntu automatically scans your hardware and suggests suitable proprietary drivers.

Step 3: Select the recommended proprietary driver (usually marked as "tested" or "recommended") for your graphics card and click "Apply Changes." Wait for the installation process to finish completely.
Step 4: Restart your computer to ensure the new driver is active. Afterward, test your system's sleep and wake functionality to confirm the issue is resolved.
Method 3: Disable Conflicting Scheduled Tasks
Sometimes, scheduled tasks or cron jobs can conflict with Ubuntu's sleep mode, causing wake-up failures. Checking and disabling such tasks can resolve the problem.
Step 1: Open a terminal by pressing Ctrl + Alt + T
.
Step 2: List all scheduled cron jobs by typing the following command and pressing Enter:
crontab -l
This command displays all scheduled tasks for your user account. Look carefully for any tasks scheduled specifically around the time your computer usually enters sleep mode.
Step 3: To edit or remove conflicting cron jobs, enter:
crontab -e
This opens the cron tab editor. Identify and temporarily disable any suspicious tasks by placing a #
symbol at the beginning of the line. Save and exit the editor by pressing Ctrl + O
and then Ctrl + X
.
Step 4: Restart your system and check if the sleep issue persists. If the problem is resolved, you can gradually re-enable tasks one by one to pinpoint the exact cause.
Method 4: Update Ubuntu and Kernel Packages
Regular updates to Ubuntu and its kernel can fix known sleep-wake bugs and improve overall system stability. Keeping your system updated ensures that the latest patches and improvements are applied.
Step 1: Open your terminal using Ctrl + Alt + T
.
Step 2: Run the following commands sequentially to update your system completely:
sudo apt update
sudo apt upgrade -y
sudo apt dist-upgrade -y
These commands fetch the latest software lists, upgrade installed packages, and apply any necessary kernel updates.
Step 3: After the updates are finished, reboot your computer to ensure the new kernel and software updates take effect.
Step 4: Test your system's sleep functionality again to verify that the updates have resolved the issue.
Method 5: Check BIOS/UEFI Firmware Settings
Incorrect BIOS or UEFI firmware settings related to power management can cause sleep and wake issues. Adjusting these settings can stabilize your system's sleep mode.
Step 1: Reboot your system and enter the BIOS or UEFI setup by pressing the designated key (usually F2
, DEL
, or F10
) during boot.
Step 2: Navigate to the "Power Management" or similar section. Look for options like "Suspend Mode," "Wake on LAN," or "Deep Sleep." Adjust settings to recommended defaults or disable advanced sleep states that might cause issues.
Step 3: Save your BIOS/UEFI settings and exit. Allow your computer to boot normally.
Step 4: Test your computer's sleep and resume functionality again to confirm that the BIOS adjustments have resolved the issue.
After successfully addressing the sleep issue, periodically check for Ubuntu and driver updates to maintain system stability and prevent similar issues from recurring. With these steps, your Ubuntu 24.10 desktop should reliably resume from sleep without issues.
Member discussion