LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 09-26-2012, 02:43 AM   #1
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Which http: to remove from sources list


Hi:

I'm getting 3rd party updates and I'm not sure which 'http:' address in my sources list it's coming from.

I was advised before to not use and do not install these 3rd party updates. I take the heed but don't know which address to comment out-

The new ones that I'm listing have been sitting in my Update Mgr. for a few days now; 'libnss3 Network Security Service libraries' and 'libnss3-ld Network Security Service libraries; transitional package'
The Update Mgr. explains that they are updates for software and that I should consider installing them-

Here's my source list:

Code:
#deb cdrom:[Debian GNU/Linux 6.0.5 _Squeeze_ - Official amd64 DVD Binary-1 20120512-14:34]/ squeeze contrib main


deb http://http.us.debian.org/debian/ squeeze contrib main
#deb-src http://http.us.debian.org/debian/ squeeze contrib main

deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free
#deb-src http://ftp.us.debian.org/debian/ squeeze main contrib non-free

deb http://security.debian.org/ squeeze/updates main contrib non-free
#deb-src http://security.debian.org/ squeeze/updates main contrib non-free

deb http://www.deb-multimedia.org squeeze main non-free

deb http://ftp.us.debian.org/debian/ squeeze-proposed-updates contrib non-free main

deb http://backports.debian.org/debian-backports squeeze-backports main contrib non-free

deb http://mozilla.debian.net/ squeeze-backports iceweasel-release
What would be the best approach to ending these updates as I don't know where they are coming from?

Thanks in advance
 
Old 09-26-2012, 03:15 AM   #2
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
The only problem I see is that these 2 appear to be the same with the exception of missing non-free on the first 1, it still may throw an error of dupicate. Maybe someone else will comment on it
Quote:
deb http://http.us.debian.org/debian/ squeeze contrib main
deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free
 
Old 09-26-2012, 05:55 AM   #3
el chapulín
Member
 
Registered: Sep 2012
Posts: 75

Rep: Reputation: 19
Edit your sources.list as follows to remove the unofficial rep and duplicate:
Code:
#deb cdrom:[Debian GNU/Linux 6.0.5 _Squeeze_ - Official amd64 DVD Binary-1 20120512-14:34]/ squeeze contrib main

#deb http://http.us.debian.org/debian/ squeeze contrib main ##### you can get rid of these
#deb-src http://http.us.debian.org/debian/ squeeze contrib main # two lines altogether

deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free
#deb-src http://ftp.us.debian.org/debian/ squeeze main contrib non-free

deb http://security.debian.org/ squeeze/updates main contrib non-free
#deb-src http://security.debian.org/ squeeze/updates main contrib non-free

#deb http://www.deb-multimedia.org squeeze main non-free

deb http://ftp.us.debian.org/debian/ squeeze-proposed-updates contrib non-free main

deb http://backports.debian.org/debian-backports squeeze-backports main contrib non-free

deb http://mozilla.debian.net/ squeeze-backports iceweasel-release
Then post the output of
Code:
$ ls -l /etc/apt/sources.list.d/
 
Old 09-26-2012, 10:56 AM   #4
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
deb-multimedia should probably be kept as it gives you some of the codecs that you otherwise can't get in Debian.
 
Old 09-26-2012, 11:20 AM   #5
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,883
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
yep I am with EDDY1 just remove the first two lines. No reason to remove deb-multimedia.org it works and is perfectly safe.

my list on sid:
Code:
$ inxi -r
Repos:     Active apt sources in file: /etc/apt/sources.list
           deb http://ftp.us.debian.org/debian/ unstable main contrib non-free
           deb-src http://ftp.us.debian.org/debian/ unstable main contrib non-free
           deb http://ftp.us.debian.org/debian/ experimental main contrib non-free
           deb http://www.deb-multimedia.org/ sid main non-free
           deb http://dl.google.com/linux/chrome/deb/ stable main
           deb http://moblock-deb.sourceforge.net/debian/ sid main
 
1 members found this post helpful.
Old 09-27-2012, 01:07 AM   #6
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
I got rid of the first two lines that were exactly the same.

Code:
#deb cdrom:[Debian GNU/Linux 6.0.5 _Squeeze_ - Official amd64 DVD Binary-1 20120512-14:34]/ squeeze contrib main


deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free
#deb-src http://ftp.us.debian.org/debian/ squeeze main contrib non-free

deb http://security.debian.org/ squeeze/updates main contrib non-free
#deb-src http://security.debian.org/ squeeze/updates main contrib non-free

deb http://www.deb-multimedia.org squeeze main non-free

deb http://ftp.us.debian.org/debian/ squeeze-proposed-updates contrib non-free main

deb http://backports.debian.org/debian-backports squeeze-backports main contrib non-free

deb http://mozilla.debian.net/ squeeze-backports iceweasel-release
 
Old 09-27-2012, 02:19 AM   #7
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Have you ran
Quote:
aptitude update
 
Old 09-27-2012, 04:04 AM   #8
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
No, I have not ran aptitude update. A few hours ago I did run:

Code:
apt-get update &
apt-get upgrade
 
Old 09-27-2012, 04:06 AM   #9
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
command is similar, how did it work?
 
Old 09-27-2012, 04:28 AM   #10
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
The update & the upgrade went well.
When the terminal was done (upgrading my packages) and finished running; my Update Manager closed and the orange icon is no longer there
alerting me to updates.

Last edited by Ztcoracat; 09-27-2012 at 04:35 AM.
 
Old 09-28-2012, 08:32 PM   #11
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Everything is running good-

Closing thread-
 
  


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
'E:Malformed line 54 in source list /etc/apt/sources.list (dist parse), E:The list of vsssuccess@gmail.com Linux - Desktop 1 11-17-2010 08:17 AM
RAR and UNRAR >3.51 freeware: debs for debian or deb http:// for sources.list? frenchn00b Debian 6 11-12-2008 01:21 AM
how to add an http address in debian's /etc/apt/sources.list rumz70 Linux - Newbie 1 03-04-2008 10:20 PM
Need Recommendation for Debian Etch sources.list ( /etc/apt/sources.list ) forgox Debian 6 05-05-2007 01:57 PM
apt- sources.list: http:// or ftp://? eeried Linux - Newbie 0 06-16-2004 05:20 AM

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

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