Updates for Debian 11 Bullseye

rgbellotti

New Member
Joined
Nov 2, 2020
Messages
29
Reaction score
13
Credits
272
Even though the OS is running fine, I did find it peculiar that there were no apt updates since I installed the OS on 9-28, and even then when I tried to update after a fresh install, apt said that everything was up to date. This is the first distro I've used (including other debian versions) that didn't update immediately after install, let alone not have any updates in over two weeks. Not that it's really an issue, but it has me wondering if something's wrong with my apt settings maybe? The readout in the terminal for sudo apt update is:
Hit:1 http://deb.debian.org/debian bullseye InRelease
Hit:2 https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/bullseye pgadmin4 InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
 


craigevil

Well-Known Member
Joined
Feb 24, 2021
Messages
419
Reaction score
419
Credits
2,889
Post your sources.lists
 
OP
R

rgbellotti

New Member
Joined
Nov 2, 2020
Messages
29
Reaction score
13
Credits
272
I uncommented the last line in the sources.list to see if that was the issue, but no difference really, still says everything is up to date:
sudo apt update
Hit:1 http://deb.debian.org/debian bullseye InRelease
Get:2 http://deb.debian.org/debian bullseye/main Sources [8,633 kB]
Hit:3 https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/bullseye pgadmin4 InRelease
Fetched 8,633 kB in 26s (335 kB/s)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
 

osprey

Well-Known Member
Joined
Apr 15, 2022
Messages
685
Reaction score
570
Credits
6,390
Below is an example of a sources.list for Debian 11/Bullseye.
Code:
deb http://deb.debian.org/debian bullseye main contrib non-free
deb-src http://deb.debian.org/debian bullseye main contrib non-free

deb http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb-src http://deb.debian.org/debian-security/ bullseye-security main contrib non-free

deb http://deb.debian.org/debian bullseye-updates main contrib non-free
deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free
See: https://wiki.debian.org/SourcesList
If you are not interested in source code, comment out the deb-src lines with #. That should help.
 
Last edited:
OP
R

rgbellotti

New Member
Joined
Nov 2, 2020
Messages
29
Reaction score
13
Credits
272
Below is an example of a sources.list for Debian 11/Bullseye.
Code:
deb http://deb.debian.org/debian bullseye main contrib non-free
deb-src http://deb.debian.org/debian bullseye main contrib non-free

deb http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb-src http://deb.debian.org/debian-security/ bullseye-security main contrib non-free

deb http://deb.debian.org/debian bullseye-updates main contrib non-free
deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free
See: https://wiki.debian.org/SourcesList
If you are not interested in source code, comment out the deb-src lines with #. That should help.
Thanks I will look into that, I knew something didn't seem right, not sure why it installed that way though
 

kc1di

Well-Known Member
Joined
May 14, 2021
Messages
1,627
Reaction score
1,440
Credits
11,734
You can also copy the source list from the live USB/Dvd disc used to install debian in the first place. If that's how you installed it.
Code:
sudo cp /usr/share/doc/apt/examples/sources.list /etc/apt/sources.list
Then do sudo update
Good luck.
 

craigevil

Well-Known Member
Joined
Feb 24, 2021
Messages
419
Reaction score
419
Credits
2,889
All of the "official" Debian repos for Bullseye:
Code:
# Bullseye Main
# deb https://deb.debian.org/debian/ bullseye main contrib non-free
# deb-src https://deb.debian.org/debian/ bullseye main contrib non-free

# Bullseye Security 
# deb https://deb.debian.org/debian-security bullseye-security main contrib non-free
# deb-src https://deb.debian.org/debian-security bullseye-security main contrib non-free

# Bullseye Backports  https://backports.debian.org/
# deb https://deb.debian.org/debian/ bullseye-backports main contrib non-free
# deb-src https://deb.debian.org/debian/ bullseye-backports main contrib non-free

# Bullseye Updates https://wiki.debian.org/DebianBullseye#FAQ 
# https://wiki.debian.org/StableUpdates All packages from stable-updates will be included in point releases.
# deb https://deb.debian.org/debian bullseye-updates main contrib non-free
# deb-src https://deb.debian.org/debian bullseye-updates main contrib non-free

# Debian Fast Track https://fasttrack.debian.net/
# https://wiki.debian.org/FastTrack
# Debian Fast Track is a repository that allows making “backports” of packages available to users of the stable distribution, 
# if those packages cannot be maintained in testing and backported in the usual way.
# apt install fasttrack-archive-keyring
# deb https://fasttrack.debian.net/debian-fasttrack/ bullseye-fasttrack main contrib
# deb https://fasttrack.debian.net/debian-fasttrack/ bullseye-backports-staging main contrib

# Bullseye Proposed Updates https://wiki.debian.org/StableProposedUpdates
# Stable-proposed-updates is an apt repository that contains the files that are being prepared for the next Debian/Stable point release.
# deb https://deb.debian.org/debian/ bullseye-proposed-updates main contrib non-free 
# deb-src https://deb.debian.org/debian/ bullseye-proposed-updates main contrib non-free

Uncomment Main, Security, Updates, and backports if you want slightly newer packages.
 
OP
R

rgbellotti

New Member
Joined
Nov 2, 2020
Messages
29
Reaction score
13
Credits
272
Thank you very much that helps make sense of it, it's working now glad I asked you all

# Bullseye Main
# deb https://deb.debian.org/debian/ bullseye main contrib non-free
# deb-src https://deb.debian.org/debian/ bullseye main contrib non-free

# Bullseye Security
# deb https://deb.debian.org/debian-security bullseye-security main contrib non-free
# deb-src https://deb.debian.org/debian-security bullseye-security main contrib non-free

# Bullseye Backports https://backports.debian.org/
# deb https://deb.debian.org/debian/ bullseye-backports main contrib non-free
# deb-src https://deb.debian.org/debian/ bullseye-backports main contrib non-free

# Bullseye Updates https://wiki.debian.org/DebianBullseye#FAQ
# https://wiki.debian.org/StableUpdates All packages from stable-updates will be included in point releases.
# deb https://deb.debian.org/debian bullseye-updates main contrib non-free
# deb-src https://deb.debian.org/debian bullseye-updates main contrib non-free

# Debian Fast Track https://fasttrack.debian.net/
# https://wiki.debian.org/FastTrack
# Debian Fast Track is a repository that allows making “backports” of packages available to users of the stable distribution,
# if those packages cannot be maintained in testing and backported in the usual way.
# apt install fasttrack-archive-keyring
# deb https://fasttrack.debian.net/debian-fasttrack/ bullseye-fasttrack main contrib
# deb https://fasttrack.debian.net/debian-fasttrack/ bullseye-backports-staging main contrib

# Bullseye Proposed Updates https://wiki.debian.org/StableProposedUpdates
# Stable-proposed-updates is an apt repository that contains the files that are being prepared for the next Debian/Stable point release.
# deb https://deb.debian.org/debian/ bullseye-proposed-updates main contrib non-free
# deb-src https://deb.debian.org/debian/ bullseye-proposed-updates main contrib non-free
 

KGIII

Super Moderator
Staff member
Gold Supporter
Joined
Jul 23, 2020
Messages
9,049
Reaction score
7,695
Credits
73,849
glad I asked you all

We have some of the best helpful regulars out there on the 'net. There's a lot they/we don't know, but we can often get you sorted with a bit of patience.
 

Lord Boltar

Well-Known Member
Joined
Nov 24, 2020
Messages
2,216
Reaction score
1,621
Credits
16,361
Here is mine from Expirion-LXQt it is based n Debian 11.5 and uses the same sources

# Modify /etc/apt/sources.list to add contrib, non-free, and backports ...

# Base repository
deb https://deb.debian.org/debian/ bullseye main contrib non-free
deb-src https://deb.debian.org/debian/ bullseye main contrib non-free

# Security updates
deb https://security.debian.org/debian-security bullseye-security main contrib non-free
deb-src https://security.debian.org/debian-security bullseye-security main contrib non-free

# Stable updates
deb https://deb.debian.org/debian bullseye-updates main contrib non-free
deb-src https://deb.debian.org/debian bullseye-updates main contrib non-free

# Stable backports
deb https://deb.debian.org/debian bullseye-backports main contrib non-free
deb-src https://deb.debian.org/debian bullseye-backports main contrib non-free

# Testing
# deb http://http.us.debian.org/debian/ testing non-free contrib main

# Unstable-SID
# deb http://deb.debian.org/debian/ unstable main

# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.
 
MALIBAL Linux Laptops

Linux Laptops Custom Built for You
MALIBAL is an innovative computer manufacturer that produces high-performance, custom laptops for Linux.

For more info, visit: https://www.malibal.com

Members online

No members online now.

Latest posts

Top