LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 11-29-2010, 10:52 AM   #1
Ubuntonian
LQ Newbie
 
Registered: Nov 2010
Posts: 28

Rep: Reputation: 0
Update manager error?


When I try to update my software through update manager, I get this error:


W: Failed to fetch http://ca.archive.ubuntu.com/ubuntu/...untu8_i386.deb
Size mismatch


I am quite confused. As a side note, when I enter Update Manager, it does not show 10.10 as an available update. I have checked my settings. I am quite kurfluddled by all of this, so all help is appreciated.
 
Old 11-29-2010, 11:03 AM   #2
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
Try
Code:
sudo apt-get clean
sudo apt-get update
sudo apt-get upgrade
It could also be a problem with the repository, at least, there are reports it can happen in the repository index isn't updated. Try a different mirror, perhaps.

For upgrading to 10.10, I believe the option will appear in 10.04 once that is upgraded to all the latest packages.

https://help.ubuntu.com/community/MaverickUpgrades
 
Old 11-29-2010, 11:15 AM   #3
Ubuntonian
LQ Newbie
 
Registered: Nov 2010
Posts: 28

Original Poster
Rep: Reputation: 0
I put that in and I get:

Get:1 http://security.ubuntu.com lucid-security Release.gpg [198B]
Hit http://ca.archive.ubuntu.com lucid Release.gpg
Ign http://security.ubuntu.com/ubuntu/ lucid-security/main Translation-en_CA
Get:2 http://ca.archive.ubuntu.com/ubuntu/ lucid/main Translation-en_CA [10.3kB]
Get:3 http://ca.archive.ubuntu.com/ubuntu/ lucid/universe Translation-en_CA [663B]
Ign http://security.ubuntu.com/ubuntu/ lucid-security/universe Translation-en_CA
Ign http://ca.archive.ubuntu.com/ubuntu/ lucid/multiverse Translation-en_CA
Ign http://security.ubuntu.com/ubuntu/ lucid-security/multiverse Translation-en_CA
Get:4 http://ca.archive.ubuntu.com lucid-updates Release.gpg [198B]
Get:5 http://security.ubuntu.com lucid-security Release [38.5kB]
Ign http://security.ubuntu.com lucid-security Release
Ign http://ca.archive.ubuntu.com/ubuntu/ lucid-updates/main Translation-en_CA
Get:6 http://security.ubuntu.com lucid-security/main Packages [99.2kB]
Ign http://ca.archive.ubuntu.com/ubuntu/ lucid-updates/universe Translation-en_CA
Ign http://ca.archive.ubuntu.com/ubuntu/ lucid-updates/multiverse Translation-en_CA
Get:7 http://security.ubuntu.com lucid-security/main Sources [35.6kB]
Get:8 http://ca.archive.ubuntu.com lucid Release [57.2kB]
Ign http://ca.archive.ubuntu.com lucid Release
Get:9 http://ca.archive.ubuntu.com lucid-updates Release [44.7kB]
Err http://ca.archive.ubuntu.com lucid-updates Release

Get:10 http://security.ubuntu.com lucid-security/universe Packages [50.1kB]
Hit http://ca.archive.ubuntu.com lucid/main Packages
Get:11 http://security.ubuntu.com lucid-security/universe Sources [13.7kB]
Hit http://ca.archive.ubuntu.com lucid/main Sources
Hit http://ca.archive.ubuntu.com lucid/universe Packages
Get:12 http://security.ubuntu.com lucid-security/multiverse Packages [2,003B]
Hit http://ca.archive.ubuntu.com lucid/universe Sources
Get:13 http://security.ubuntu.com lucid-security/multiverse Sources [660B]
Hit http://ca.archive.ubuntu.com lucid/multiverse Packages
Hit http://ca.archive.ubuntu.com lucid/multiverse Sources
Fetched 213kB in 5s (42.1kB/s)
Reading package lists... Done
W: GPG error: http://security.ubuntu.com lucid-security Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
W: GPG error: http://ca.archive.ubuntu.com lucid Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used.GPG error: http://ca.archive.ubuntu.com lucid-updates Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>

W: Failed to fetch http://ca.archive.ubuntu.com/ubuntu/...pdates/Release

W: Some index files failed to download, they have been ignored, or old ones used instead.




What does this mean?
 
Old 11-29-2010, 11:41 AM   #4
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
GPG = GNU Privacy Guard It's to ensure what you're downloading has not been hacked, basically.

I would try a different mirror.
http://blog.techfun.org/2009/04/how-...sitory-mirror/

Failing that, try
Code:
sudo apt-get clean
cd /var/lib/apt
sudo mv lists lists.old
sudo mkdir -p lists/partial
sudo apt-get clean
sudo apt-get update
 
Old 11-29-2010, 12:04 PM   #5
Ubuntonian
LQ Newbie
 
Registered: Nov 2010
Posts: 28

Original Poster
Rep: Reputation: 0
I changed the server and it seems to be working. I'll keep you updated.
 
Old 11-29-2010, 12:19 PM   #6
Ubuntonian
LQ Newbie
 
Registered: Nov 2010
Posts: 28

Original Poster
Rep: Reputation: 0
I installed the updates, and still it does not show 10.10 as an available update. My settings are in check, and I am quite confused.
 
Old 11-29-2010, 12:35 PM   #7
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
Hit ALT+F2, run the update manager by entering
Code:
update-manager -d
Does it say something like "New Ubuntu Release is available?

If no, try
Code:
sudo apt-get install update-manager-core
Edit the file /etc/update-manager/release-upgrades
Code:
gksudo gedit /etc/update-manager/release-upgrades
And add (or edit if it exists) a line
Code:
Prompt=normal
Save and exit then do
Code:
sudo do-release-upgrade -d
 
Old 11-29-2010, 12:41 PM   #8
Ubuntonian
LQ Newbie
 
Registered: Nov 2010
Posts: 28

Original Poster
Rep: Reputation: 0
I entered Update Manager and It showed 10.10. Thank you for your help
 
  


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] Synaptic , dpkg , update-manager Error 5 MetricJester Ubuntu 4 11-18-2010 12:38 PM
Update manager error: GPG error: http://ppa.launchpad.net ... signatures ... Nonc Linux - General 0 08-18-2010 06:36 PM
Ubuntu 9.04 Error when using Update Manager rahowill Linux - Newbie 6 09-08-2009 06:39 PM
what now (update manager error) any suggestions? richard.donavan Linux - Newbie 2 07-09-2009 10:10 AM
error in update manager (ubuntu) johnsshadow Linux - Newbie 2 09-21-2008 03:39 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 04:43 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