How do I check for and install pending updates?
Content
I’m trying to maintain my system and want to make sure everything is up to date. How do I check for and install pending updates? I’m not sure what commands to use or where to look in the system settings. Also, I’d like to know if there’s a difference between checking for security updates versus regular updates, and whether I need to restart my system after installing them. Additionally, are there any best practices I should follow when updating, like backing up first or checking if certain updates might break compatibility with my current software? I’m also wondering if updates can be scheduled automatically or if I need to manually check and install them each time.
How to Check for and Install Pending Updates
Windows 10/11
Using Settings:
- Click the Start button
- Select Settings (gear icon)
- Click Update & Security (Windows 10) or Windows Update (Windows 11)
- Click Check for updates
- If updates are available, click Download or Download and install
- Restart your computer when prompted
Using Command Prompt (as Administrator):
wuauclt /detectnow /updatenow
Using PowerShell (as Administrator):
Install-Module PSWindowsUpdate
Get-WindowsUpdate
Install-WindowsUpdate
macOS
Using System Preferences/Settings:
- Click the Apple menu
- Select System Preferences (macOS Monterey and earlier) or System Settings (macOS Ventura and later)
- Click Software Update
- The system will automatically check for updates
- Click Update Now or Upgrade Now if updates are available
- Enter your password if prompted
- Restart if required
Using Terminal:
softwareupdate -l (to list updates)
softwareupdate -i -a (to install all updates)
Linux
Ubuntu/Debian:
sudo apt update
sudo apt list –upgradable
sudo apt upgrade
Or using GUI:
- Open Software Updater
- It will automatically check for updates
- Click Install Now
Fedora/RHEL/CentOS:
sudo dnf check-update
sudo dnf upgrade
Arch Linux:
sudo pacman -Syu
Android
- Open Settings
- Scroll down and tap System or About phone
- Tap System update or Software update
- Tap Check for updates
- If an update is available, tap Download and install
- Follow on-screen instructions
- Device will restart to complete installation
iOS/iPadOS
- Open Settings
- Tap General
- Tap Software Update
- The device will check for updates automatically
- If an update is available, tap Download and Install
- Enter your passcode if prompted
- Tap Agree to Terms and Conditions
- Tap Install (options may include Install Tonight or Install Now)
Chrome OS
- Click the status area (bottom-right corner)
- Click the Settings icon
- Click About Chrome OS in the left panel
- Chrome OS will automatically check for updates
- Click Restart if an update is available
Or:
- The system automatically checks for updates in the background
- An update icon appears in the status area when updates are ready
- Click the icon and select Restart to update
Web Browsers
Google Chrome:
- Click the three-dot menu (top-right)
- Go to Help > About Google Chrome
- Chrome automatically checks and downloads updates
- Click Relaunch to complete installation
Mozilla Firefox:
- Click the three-line menu (top-right)
- Select Help > About Firefox
- Firefox automatically checks for updates
- Click Restart to update Firefox
Microsoft Edge:
- Click the three-dot menu (top-right)
- Go to Help and feedback > About Microsoft Edge
- Edge automatically checks and downloads updates
- Click Restart when prompted
Safari:
Updates are included with macOS updates through System Preferences/Settings
Application Updates
Windows (Microsoft Store):
- Open Microsoft Store
- Click your profile icon
- Select Downloads and updates
- Click Get updates
macOS (App Store):
- Open App Store
- Click your profile icon or Updates tab
- Click Update next to individual apps or Update All
Linux (Snap):
snap refresh –list
sudo snap refresh
Linux (Flatpak):
flatpak update