The Annoying Pop-up Interruption
Ubuntu Linux is designed to keep your system secure by regularly checking Canonical’s servers for the latest package versions. By default, whenever it detects available security patches or application updates, it automatically launches the graphical “Software Updater” tool. This app forcefully pops up a window directly in the middle of your screen, demanding your attention. If you are in the middle of coding, giving a presentation, or watching a movie, this sudden, aggressive interruption is highly distracting.
How to Disable Automatic Pop-ups
You can configure the system to still check for updates in the background, but to stop throwing the graphical window in your face. Instead, it will silently notify you via a small icon or wait for you to run the update command manually.
1. Press the Super key (Windows key) to open the Activities overview.
2. Type Software & Updates and press Enter to launch the application.
3. Click on the Updates tab located at the top of the window.
4. Look for the dropdown menu labelled Automatically check for updates. You can leave this set to “Daily” if you want the system to know about updates, or change it to “Never” if you prefer complete manual control.
5. The critical setting is the dropdown menu labelled When there are other updates.
6. Click this dropdown and change it from “Display immediately” to Display weekly or Display every two weeks to drastically reduce the pop-ups.
Moving to a Pure Terminal Workflow
If you are an advanced user who prefers to manage packages entirely via the terminal using sudo apt update && sudo apt upgrade, you do not need the graphical pop-up at all. While the GUI settings above reduce the frequency, you can forcefully kill the background process that triggers the pop-up by disabling the update-notifier service entirely. Open your terminal and run sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/update-notifier.desktop to expose the hidden startup entry, then uncheck it in your Startup Applications preferences. Your system will now remain completely silent until you run APT manually.