LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-18-2019, 04:10 AM   #1
silu44
LQ Newbie
 
Registered: Apr 2019
Posts: 5

Rep: Reputation: Disabled
Debian jessie Package update error


here is my issue :

i've vps with plesk i got errors on my email :


Some problems occurred with the System Updates tool on your server host.aaaaaa.net. Please resolve them manually.


Reason: 2019-04-18 04:19:32 INFO: pum is called with arguments: ['--list', '--repo-info', '--json']
2019-04-18 04:19:39 ERROR: W:Failed to fetch http://mirror.leaseweb.net/debian/di...ates/InRelease Unable to find expected entry 'main/source/Sources' in Release file (Wrong sources.list entry or malformed file)
, E:Some index files failed to download. They have been ignored, or old ones used instead.
2019-04-18 04:19:39 ERROR: Exited with returncode 1.


when i do : apt-get update on my vps :


W: Failed to fetch http://mirror.leaseweb.net/debian/di...ates/InRelease Unable to find expected entry 'main/source/Sources' in Release file (Wrong sources.list entry or malformed file)

E: Some index files failed to download. They have been ignored, or old ones used instead.
 
Old 04-18-2019, 07:32 AM   #2
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Can you please paste the output from the following command (within CODE tags - see https://www.linuxquestions.org/quest...g.php?b=36313;) so that we can have a look at your software sources.

Code:
inxi -r
If you don't have inxi installed and are unable to install it, please paste the output from:

Code:
for i in /etc/apt/sources.list{,.d/*}; do echo file: $i; cat $i; echo ====; done
 
Old 04-18-2019, 07:44 AM   #3
silu44
LQ Newbie
 
Registered: Apr 2019
Posts: 5

Original Poster
Rep: Reputation: Disabled
here is the result

Code:
file: /etc/apt/sources.list
#

# deb cdrom:[Debian GNU/Linux 8.7.1 _Jessie_ - Official amd64 NETINST Binary-1 20170116-10:57]/ jessie main

#deb cdrom:[Debian GNU/Linux 8.7.1 _Jessie_ - Official amd64 NETINST Binary-1 20170116-10:57]/ jessie main

deb http://mirror.leaseweb.net/debian jessie main
deb-src http://mirror.leaseweb.net/debian jessie main

deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main

# jessie-updates, previously known as 'volatile'
deb http://mirror.leaseweb.net/debian jessie-updates main
deb-src http://mirror.leaseweb.net/debian jessie-updates main


deb http://security.debian.org/debian-security jessie/updates main contrib non-free
deb http://updates.atomicorp.com/channels/tortix-common/debian jessie main
====
file: /etc/apt/sources.list.d/plesk.list
## Persistent repositories for Plesk Products.
deb http://autoinstall.plesk.com/debian/PSA_17.8.11 jessie extras
deb http://autoinstall.plesk.com/debian/PHP56_17 jessie all
deb http://autoinstall.plesk.com/debian/PHP70_17 jessie all
deb http://autoinstall.plesk.com/debian/PHP71_17 jessie all
deb http://autoinstall.plesk.com/debian/PHP72_17 jessie all
====
file: /etc/apt/sources.list.d/plesk-migrator.list
deb [arch=amd64] http://autoinstall.plesk.com/debian/PMM_0.1.10 jessie all
====
 
Old 04-18-2019, 02:43 PM   #4
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Thanks. The problem might be with the Debian mirror. Edit /etc/apt/sources.list and replace all "http://mirror.leaseweb.net/debian" with "http://deb.debian.org/debian".

Also, I note that you have declared
Code:
deb http://security.debian.org/ jessie/updates main
and
Code:
deb http://security.debian.org/debian-security jessie/updates main contrib non-free
These are, as far as I am aware, the same repos (except you have added the contrib and non-free repos to the latter).

The canonical security url is:

Code:
http://deb.debian.org/debian-security/
See https://wiki.debian.org/SourcesList#...e_sources.list

After you have done the above, run:

Code:
apt-get update

Last edited by hydrurga; 04-18-2019 at 02:45 PM.
 
Old 04-19-2019, 01:59 AM   #5
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
maybe it's this:
Debian 8 APT sources moved to Debian Archive
 
2 members found this post helpful.
Old 04-19-2019, 06:10 AM   #6
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by ondoho View Post
Good call, Ondoho.
 
Old 04-20-2019, 03:31 AM   #7
silu44
LQ Newbie
 
Registered: Apr 2019
Posts: 5

Original Poster
Rep: Reputation: Disabled
Hi

after changing to deb.debian.org
here is the error, sorry i'm not familiar to Linux

Code:
W: Failed to fetch http://deb.debian.org/debian/dists/jessie-updates/InRelease  Unable to find expected entry 'main/source/Sources' in Release file (Wrong sources.list entry or malformed file)

E: Some index files failed to download. They have been ignored, or old ones used instead.
 
Old 04-20-2019, 03:44 AM   #8
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Ondoho pointed to the solution in post #5.

jessie-updates is no longer valid and should be removed.
 
Old 04-20-2019, 04:06 AM   #9
silu44
LQ Newbie
 
Registered: Apr 2019
Posts: 5

Original Poster
Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by hydrurga View Post
Ondoho pointed to the solution in post #5.

jessie-updates is no longer valid and should be removed.

Thank you very much , solved now
 
  


Reply



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
[SOLVED] No package 'x11' found No package 'xext' found No package 'xdamage' found No package 'xfixes' found No package 'x11-xcb' found Jigsaw Linux From Scratch 14 02-23-2021 08:35 PM
LXer: Debianistas get Jessie mass package update LXer Syndicated Linux News 0 05-08-2017 08:00 AM
LXer: Devuan 1.0 Jessie beta 2: That’s Debian Jessie minus systemd LXer Syndicated Linux News 0 12-02-2016 02:41 AM
Debian Jessie/Xfce 4.10 no package update notifier userzero Linux - Desktop 5 07-19-2015 05:49 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 02:33 PM.

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