Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[Software] sources.list Help

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
roastnetwork215
Posts: 7
Joined: 2024-01-26 14:28
Has thanked: 3 times

[Software] sources.list Help

#1 Post by roastnetwork215 »

Hi, I found out that some of missing packages i wanted to install is in "stable" repository and adding it to /etc/apt/sources.list. But, after running "sudo apt update", the command outputted like this:

Code: Select all

W: Skipping acquire of configured file 'stable/source/Sources' as repository 'http://deb.debian.org/debian-security bookworm-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/binary-amd64/Packages' as repository 'http://deb.debian.org/debian-security bookworm-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/binary-i386/Packages' as repository 'http://deb.debian.org/debian-security bookworm-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/i18n/Translation-en_US' as repository 'http://deb.debian.org/debian-security bookworm-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/i18n/Translation-en' as repository 'http://deb.debian.org/debian-security bookworm-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/dep11/Components-amd64.yml' as repository 'http://deb.debian.org/debian-security bookworm-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/binary-amd64/Packages' as repository 'http://debian-archive.trafficmanager.net/debian bookworm InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/binary-i386/Packages' as repository 'http://debian-archive.trafficmanager.net/debian bookworm InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/i18n/Translation-en_US' as repository 'http://debian-archive.trafficmanager.net/debian bookworm InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/i18n/Translation-en' as repository 'http://debian-archive.trafficmanager.net/debian bookworm InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/dep11/Components-amd64.yml' as repository 'http://debian-archive.trafficmanager.net/debian bookworm InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/dep11/Components-all.yml' as repository 'http://debian-archive.trafficmanager.net/debian bookworm InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/binary-i386/Packages' as repository 'http://debian-archive.trafficmanager.net/debian bookworm-updates InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/binary-amd64/Packages' as repository 'http://debian-archive.trafficmanager.net/debian bookworm-updates InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/i18n/Translation-en_US' as repository 'http://debian-archive.trafficmanager.net/debian bookworm-updates InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/i18n/Translation-en' as repository 'http://debian-archive.trafficmanager.net/debian bookworm-updates InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/dep11/Components-amd64.yml' as repository 'http://debian-archive.trafficmanager.net/debian bookworm-updates InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'stable/dep11/Components-all.yml' as repository 'http://debian-archive.trafficmanager.net/debian bookworm-updates InRelease' doesn't have the component 'stable' (component misspelt in sources.list?)
W: https://debrepo.freedownloadmanager.org/dists/bionic/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
This warning always going to http://debian-archive.trafficmanager.net/debian bookworm-updates InRelease and skipping configured files that has cnfigured before the adding for "stable" repository.
This is my current configuration file for /etc/apt/sources.list:

Code: Select all

# Just some useless debian DVD USB cdrom repo, don't use it.
# deb cdrom:[Debian GNU/Linux 12.4.0 _Bookworm_ - Official amd64 DVD Binary-1 with firmware 20231210-17:57]/ bookworm main non-free-firmware

deb http://debian-archive.trafficmanager.net/debian/ bookworm main non-free-firmware non-free contrib stable

deb http://deb.debian.org/debian-security/ bookworm-security main non-free-firmware non-free contrib stable
deb-src http://deb.debian.org/debian-security/ bookworm-security main non-free-firmware non-free contrib stable

# bookworm-updates, to get updates before a point release is made;
# see https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_updates_and_backports

deb http://debian-archive.trafficmanager.net/debian/ bookworm-updates main non-free-firmware non-free contrib stable
How do I avoid the warning like this?

lindi
Debian Developer
Debian Developer
Posts: 452
Joined: 2022-07-12 14:10
Has thanked: 1 time
Been thanked: 88 times

Re: [Software] sources.list Help

#2 Post by lindi »

Just remove the word stable, there is no such component. Bookworm is the current stable release. You might want to check man sources.list for the syntax of that file.

Post Reply