Last active
September 5, 2024 14:42
-
-
Save tkoop/11e419395f396d6eed6c28537224f230 to your computer and use it in GitHub Desktop.
Script to Update Linux Mint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt --fix-broken install --yes | |
sudo add-apt-repository --yes ppa:cappelikan/ppa | |
sudo apt update --yes | |
sudo apt --fix-broken install --yes | |
sudo apt install mainline --yes | |
sudo mainline install-latest | |
sudo apt upgrade --yes | |
sudo apt autoremove --yes | |
flatpak update -y | |
sudo apt --fix-broken install --yes | |
echo "Your installed kernel is:" | |
uname --kernel-release |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment