LinuxQuestions.org
Register a domain and help support LQ
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
 
LinkBack Search this Thread
Old 08-23-2006, 05:30 PM   #1
Paulsrud
LQ Newbie
 
Registered: Jul 2006
Posts: 25

Rep: Reputation: 15
Software Update failure


Trying to update the X.Org X server in the Software update manager in Ubuntu. you know just keeping the system up to date. I recently made some efforts to add more repositrories, but apparently not? since i get this error message.


Code:
W: Duplicate sources.list entry http://au.archive.ubuntu.com dapper/universe Packages (/var/lib/apt/lists/au.archive.ubuntu.com_ubuntu_dists_dapper_universe_binary-i386_Packages)
W: Duplicate sources.list entry http://au.archive.ubuntu.com dapper/multiverse Packages (/var/lib/apt/lists/au.archive.ubuntu.com_ubuntu_dists_dapper_multiverse_binary-i386_Packages)
W: Duplicate sources.list entry http://au.archive.ubuntu.com dapper-updates/universe Packages (/var/lib/apt/lists/au.archive.ubuntu.com_ubuntu_dists_dapper-updates_universe_binary-i386_Packages)
W: Duplicate sources.list entry http://au.archive.ubuntu.com dapper-updates/multiverse Packages (/var/lib/apt/lists/au.archive.ubuntu.com_ubuntu_dists_dapper-updates_multiverse_binary-i386_Packages)
W: Duplicate sources.list entry http://security.ubuntu.com dapper-security/universe Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_dapper-security_universe_binary-i386_Packages)
W: Duplicate sources.list entry http://security.ubuntu.com dapper-security/multiverse Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_dapper-security_multiverse_binary-i386_Packages)

Last edited by Paulsrud; 08-23-2006 at 05:31 PM.
 
Old 08-23-2006, 06:11 PM   #2
pljvaldez
Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Squeeze (x86)
Posts: 6,092

Rep: Reputation: 264Reputation: 264Reputation: 264
Can you post your /etc/apt/sources.list for us? The error basically says you have the same sources listed twice.
 
Old 08-24-2006, 01:44 AM   #3
reddazz
Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 70
Moved: This thread is more suitable in the Ubuntu Forum and has been moved accordingly to help your thread/question get the exposure it deserves.
 
Old 08-24-2006, 03:26 AM   #4
Paulsrud
LQ Newbie
 
Registered: Jul 2006
Posts: 25

Original Poster
Rep: Reputation: 15
Fine.
etc/apt/sources.list says.

Code:
deb http://au.archive.ubuntu.com/ubuntu/ dapper main restricted universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ dapper universe multiverse

## Major bug fix updates produced after the final release of the
## distribution.
deb http://au.archive.ubuntu.com/ubuntu/ dapper-updates main restricted universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ dapper-updates universe multiverse

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://au.archive.ubuntu.com/ubuntu/ dapper universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ dapper universe multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://au.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu dapper-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu dapper-security universe multiverse
deb http://security.ubuntu.com/ubuntu dapper-security main universe multiverse
deb-src http://security.ubuntu.com/ubuntu dapper-security universe multiverse
well. So I just delete some lines?, Im thinking 'dapper-security main restricted universe multiverse' there's alot of those i see.
 
Old 08-24-2006, 11:34 AM   #5
pljvaldez
Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Squeeze (x86)
Posts: 6,092

Rep: Reputation: 264Reputation: 264Reputation: 264
I would just comment out the following as they're the same as the top two. Also, it seems you have the security repos in there twice.

Code:
deb http://au.archive.ubuntu.com/ubuntu/ dapper main restricted universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ dapper universe multiverse

## Major bug fix updates produced after the final release of the
## distribution.
deb http://au.archive.ubuntu.com/ubuntu/ dapper-updates main restricted universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ dapper-updates universe multiverse

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
#deb http://au.archive.ubuntu.com/ubuntu/ dapper universe multiverse
#deb-src http://au.archive.ubuntu.com/ubuntu/ dapper universe multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://au.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu dapper-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu dapper-security universe multiverse
#deb http://security.ubuntu.com/ubuntu dapper-security main universe multiverse
#deb-src http://security.ubuntu.com/ubuntu dapper-security universe multiverse
 
Old 08-24-2006, 11:45 AM   #6
Paulsrud
LQ Newbie
 
Registered: Jul 2006
Posts: 25

Original Poster
Rep: Reputation: 15
wow. Thank you. That did it.
 
  


Reply


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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Sound failure after update BetterButterBuddha Fedora 1 08-22-2006 06:33 PM
yum update failure! hueofwind Linux - General 3 11-02-2005 10:41 PM
up2date update failure?? winchester169 Linux - Software 0 09-17-2004 01:45 AM
yum update failure?? winchester169 Linux - Software 0 09-17-2004 01:41 AM
Evolution update failure moger Slackware 4 04-06-2004 02:52 AM


All times are GMT -5. The time now is 02:06 AM.

Main Menu
 
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
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration