Last active
February 14, 2024 21:19
-
-
Save audibleblink/b69b601c433afab94710e7336488d1d5 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
cat <<EOF > /etc/apt/preferences.d/pinning | |
Package: * | |
Pin: release o=Debian,a=testing | |
Pin-Priority: 900 | |
Package: * | |
Pin: release o=Debian,a=stable | |
Pin-Priority: 400 | |
Package: * | |
Pin: release o=Debian,a=unstable | |
Pin-Priority: 300 | |
Package: * | |
Pin: release o=Debian | |
Pin-Priority: -1 | |
EOF | |
cat <<EOF > /etc/apt/sources.list.d/default.list | |
deb http://ftp.us.debian.org/debian testing main contrib non-free | |
deb-src http://ftp.us.debian.org/debian testing main contrib non-free | |
deb http://ftp.us.debian.org/debian stable main contrib non-free | |
deb-src http://ftp.us.debian.org/debian stable main contrib non-free | |
deb http://ftp.us.debian.org/debian unstable main contrib non-free | |
deb-src http://ftp.us.debian.org/debian unstable main contrib non-free | |
deb http://ftp.us.debian.org/debian experimental main contrib non-free | |
deb-src http://ftp.us.debian.org/debian experimental main contrib non-free | |
EOF |
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
#/etc/apt/preferences.d/pinning | |
Package: * | |
Pin: release o=Debian,a=testing | |
Pin-Priority: 900 | |
Package: * | |
Pin: release o=Debian,a=stable | |
Pin-Priority: 400 | |
Package: * | |
Pin: release o=Debian,a=unstable | |
Pin-Priority: 300 | |
Package: * | |
Pin: release o=Debian | |
Pin-Priority: -1 |
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
deb http://ftp.us.debian.org/debian testing main contrib non-free | |
deb-src http://ftp.us.debian.org/debian testing main contrib non-free | |
deb http://ftp.us.debian.org/debian stable main contrib non-free | |
deb-src http://ftp.us.debian.org/debian stable main contrib non-free | |
deb http://ftp.us.debian.org/debian unstable main contrib non-free | |
deb-src http://ftp.us.debian.org/debian unstable main contrib non-free | |
deb http://ftp.us.debian.org/debian experimental main contrib non-free | |
deb-src http://ftp.us.debian.org/debian experimental main contrib non-free | |
# debian security patches | |
deb http://security.debian.org/ stable/updates main contrib non-free | |
deb http://security.debian.org/ testing/updates main contrib non-free |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment