LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-18-2021, 01:16 AM   #1
crujones4
Member
 
Registered: Jun 2020
Location: Atlantis
Distribution: Mint
Posts: 66

Rep: Reputation: Disabled
Updating Error [The repository 'https://packages.elementary.io/appcenter bionic Release' does not have a Release file."


E: The repository 'https://packages.elementary.io/appcenter bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

^ Is a message I get on with the update manager and/or terminal command update/upgrade. Can anyone tell me what this is, if it's specific to any programs, important, and/or what to do about it?

-Much appreciation
and with kindest regards
 
Old 01-18-2021, 12:31 PM   #2
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by crujones4 View Post
E: The repository 'https://packages.elementary.io/appcenter bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

^ Is a message I get on with the update manager and/or terminal command update/upgrade. Can anyone tell me what this is, if it's specific to any programs, important, and/or what to do about it?

-Much appreciation
and with kindest regards
Nothing you can do except contact the incompetent manager of the mirror and get him/her to correct the poor configuration with the correct files.
 
Old 01-18-2021, 12:56 PM   #3
shruggy
Senior Member
 
Registered: Mar 2020
Posts: 3,670

Rep: Reputation: Disabled
But that repository does have Release, Release.gpg, and InRelease. What it doesn't is support secure connections (HTTPS). Edit your /etc/apt/sources.list or whatever file this repo is specified in and change https to http.

Moreover, the repo only has the main section, so if that line in sources.list includes other sections (restricted, universe, whatever) then remove them.
 
Old 01-18-2021, 03:07 PM   #4
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Talking

Quote:
Originally Posted by shruggy View Post
But that repository does have Release, Release.gpg, and InRelease. What it doesn't is support secure connections (HTTPS). Edit your /etc/apt/sources.list or whatever file this repo is specified in and change https to http.

Moreover, the repo only has the main section, so if that line in sources.list includes other sections (restricted, universe, whatever) then remove them.
Ah my apologies to the mirror maintainer and the the problem is solved, PEBKAC, an oldie but a goodie that continues to rear it ugly head time after time.
 
Old 01-18-2021, 08:33 PM   #5
crujones4
Member
 
Registered: Jun 2020
Location: Atlantis
Distribution: Mint
Posts: 66

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by shruggy View Post
But that repository does have Release, Release.gpg, and InRelease. What it doesn't is support secure connections (HTTPS). Edit your /etc/apt/sources.list or whatever file this repo is specified in and change https to http.

Moreover, the repo only has the main section, so if that line in sources.list includes other sections (restricted, universe, whatever) then remove them.

This doubtlessly seemed the most useful, though I appreciate seeing anything about Linux. :ap
As an intermediate newb the same way though, I'm at a loss of what any of it means.
Genuinely appreciate any and all help, the same way that maybe someone will see this and have their issue resolved the same way.

-Kindest Regards;
All Hail LT \vWMv/
 
Old 01-18-2021, 09:18 PM   #6
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by crujones4 View Post
This doubtlessly seemed the most useful, though I appreciate seeing anything about Linux. :ap
As an intermediate newb the same way though, I'm at a loss of what any of it means.
Genuinely appreciate any and all help, the same way that maybe someone will see this and have their issue resolved the same way.

-Kindest Regards;
All Hail LT \vWMv/

He checked the mirror unlike me assuming incompetent manager.

This is what a /etc/apt/sources.list looks like it is where your error is.

Code:
#deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi

# added to try for faster updates. https://www.raspbian.org/RaspbianMirrors
#deb http://mirror.de.leaseweb.net/raspbian/raspbian buster main contrib non-free rpi
deb https://mirror.herrbischoff.com/raspbian/raspbian/ buster main contrib non-free rpi

# Added for unrar https://raspberrypi.stackexchange.com/questions/3617/how-to-install-unrar-nonfree
#deb http://deb.debian.org/debian buster main contrib non-free
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
This is from my rasberrypi. The lines that start with a # mean nothing they are commented out by that character and are not read for anything at all. The only line in there that is used is the deb https:// it is this part he told you there was mistake the s should not be there in your file it does not support the secure transfer protocol of http. This does not matter a whole lot as all packages are signed and verified with a gpg encryption key before the upload to mirror, once on the mirror or when downloaded on machine installed to, a very secure method of doing it. He also tells you that the mirror only has a main directory for its repository my line below.

Code:
deb https://mirror.herrbischoff.com/raspbian/raspbian/ buster main contrib non-free rpi
This tells apt to use the deb source of https://mirror.herrbischoff.com/raspbian/raspbian/ the buster repository on that mirror with the enabled main contrib non-free rpi sources in that buster repository. My line edited to changes that would be required to be made according to the poster for your mirror.

Code:
deb http://mirror.herrbischoff.com/raspbian/raspbian/ buster main
You would use the command nano /etc/apt/sources.list to open the file for editing logged in as root or using sudo if setup for that method. Once done with the editing then a control plus x to exit program answer y for yes to saving the changes then apt update
if you get stuck post the file contents here and I or someone else will give it an edit.

Edit: and now I read it again the last part with the commands to use you need to have a Terminal open to use them in, I thought I had left something out and was correct in that when checking it again..

Last edited by HappyTux; 01-18-2021 at 10:39 PM.
 
Old 01-30-2021, 10:36 AM   #7
JSB
Member
 
Registered: Dec 2020
Posts: 102

Rep: Reputation: 22
Quote:
Originally Posted by crujones4 View Post
As an intermediate newb the same way though, I'm at a loss of what any of it means.
But it is very simple:
Quote:
Originally Posted by shruggy View Post
Edit your /etc/apt/sources.list or whatever file this repo is specified in and change https to http.

Moreover, the repo only has the main section, so if that line in sources.list includes other sections (restricted, universe, whatever) then remove them.
Why you have difficulty editing file with root?
 
  


Reply

Tags
mint, update, upgrade


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: elementary OS 5.1.5 Released with AppCenter and Files Improvements, More LXer Syndicated Linux News 0 06-08-2020 01:44 AM
LXer: Fedora 30 Beta Released, Chef Releasing All of Its Software as Open Source, elementary Adopting Flatpak for AppCenter, Unreal Engine 4 LXer Syndicated Linux News 0 04-03-2019 02:41 PM
LXer: elementary OS 0.4.1 Arrives with New AppCenter, Latest HWE from Ubuntu 16.04.2 LXer Syndicated Linux News 0 05-17-2017 10:18 PM
Ubuntu Maverick live CD repository packages not found / adding packages to repository phed0ra Linux - Newbie 1 01-10-2012 03:00 AM
Help With Java Problem Please"""""""""""" suemcholan Linux - Newbie 1 04-02-2008 06:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:28 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration