Last active
April 29, 2025 01:34
-
-
Save wommy/f034e52312b7f1fd4330c25ad21dafee to your computer and use it in GitHub Desktop.
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 | |
## from https://backports.debian.org/Instructions/ | |
## and Andrea Borman 's https://www.youtube.com/@AndreaBorman | |
## youtube video :: How To Update With Debian Backports On Debian Bookworm. | |
## https://www.youtube.com/watch?v=XDF2CB-q60M | |
echo 'deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware' >> /etc/apt/sources.list | |
apt update ; apt upgrade -y -t bookworm-backports ; apt autoremove -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment