LinuxQuestions.org
Visit Jeremy's Blog.
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 04-06-2011, 07:01 AM   #211
Laurens73
Member
 
Registered: Aug 2009
Location: Zeewolde, Flevoland NL
Distribution: Debian squeeze (Gnome) on netbooks; Debian Lenny on servers and Debian wheezy (XFCE) on new laptops
Posts: 144

Rep: Reputation: 23

Cause of forgetting to quote the testing part in my sources.list my system upgraded to wheezy by accident. Everything works perfectly. Therefore I altered the sources.list file to a complete wheezy sources.list file. Some of you might be interested in this file below:

Code:
>>cut<<

Last edited by Laurens73; 04-06-2011 at 05:41 PM. Reason: see posts below
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 04-06-2011, 07:17 AM   #212
maury0324
Member
 
Registered: Jul 2003
Location: Florida
Distribution: Debian Squeeze amd_64
Posts: 66

Rep: Reputation: 16
Hi Donls
Sorry for this I hit a wrong key and can't find how to delete it.

Last edited by maury0324; 04-06-2011 at 09:57 AM.
 
Old 04-06-2011, 08:26 AM   #213
maury0324
Member
 
Registered: Jul 2003
Location: Florida
Distribution: Debian Squeeze amd_64
Posts: 66

Rep: Reputation: 16
Hi Donls
I wish I could help. So far my system is running good, but not without a glitch here and there. I have had several systems running mostly the lts versions of ubuntu with few problems. they are friends and family and I did it because they kept bringing me their infected boxes. I love using debian but the greatest challenge for me has been getting the sources list right. I'm not sure that debian is truly a distro and in a way if you use it you have to expect some challenges. kind regards. maury
 
Old 04-06-2011, 10:06 AM   #214
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,885

Original Poster
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
Laurens73 your list is a mess, it has old repos and ones that no longer exist. Plus why would anyone want or need that many sources?

sidux repo is one that no longer exists, look at my Giant list for aptosid.

My actual active sources.list
Quote:
$ inxi -r
Repos: Active apt sources in file: /etc/apt/sources.list
deb http://mirrors.kernel.org/debian/ unstable main contrib non-free
deb http://mirrors.kernel.org/debian/ experimental main contrib non-free
deb http://www.debian-multimedia.org unstable main non-free
deb http://dl.google.com/linux/deb/ stable non-free main
deb http://dl.google.com/linux/deb/ testing non-free main
deb http://deb.opera.com/opera-beta/ stable non-free
deb http://debian.tu-bs.de/project/aptosid/debian/ sid main fix.main
Nice an neat with no clutter.
 
Old 04-06-2011, 10:16 AM   #215
replica9000
Senior Member
 
Registered: Jul 2006
Distribution: Debian Unstable
Posts: 1,126
Blog Entries: 2

Rep: Reputation: 260Reputation: 260Reputation: 260
Is there any reason to have all those mirrors enabled at the same time?
 
Old 04-06-2011, 05:44 PM   #216
Laurens73
Member
 
Registered: Aug 2009
Location: Zeewolde, Flevoland NL
Distribution: Debian squeeze (Gnome) on netbooks; Debian Lenny on servers and Debian wheezy (XFCE) on new laptops
Posts: 144

Rep: Reputation: 23
Thanks for your comments on it. I've removed the list in case someone would get into trouble cause of it, and indeed, the active mirrors is a wrong setting.
 
Old 05-17-2011, 01:17 AM   #217
baronobeefdip
Senior Member
 
Registered: Jul 2009
Distribution: Debian Squeeze
Posts: 1,267

Rep: Reputation: 32
what would you guys say is the best sources list for debian squeeze
 
Old 05-17-2011, 10:35 AM   #218
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Rep: Reputation: Disabled
Quote:
Originally Posted by baronobeefdip View Post
what would you guys say is the best sources list for debian squeeze
Generate one to suit you from here:

http://debgen.simplylinux.ch/index.php
 
Old 05-18-2011, 03:54 PM   #219
baronobeefdip
Senior Member
 
Registered: Jul 2009
Distribution: Debian Squeeze
Posts: 1,267

Rep: Reputation: 32
this is cool but i'm just wondering which ones i should trust and which ones i should dis-trust
 
Old 05-18-2011, 03:55 PM   #220
baronobeefdip
Senior Member
 
Registered: Jul 2009
Distribution: Debian Squeeze
Posts: 1,267

Rep: Reputation: 32
what what is a sources repository? is it essential
 
Old 05-18-2011, 06:57 PM   #221
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Quote:
Originally Posted by baronobeefdip View Post
what what is a sources repository? is it essential
If you have a working OS and you never want to install another package or get updates, the repositories are not needed at all.

If you ever want to install a package or get updates, yes you could call it essential.

All of your added programs should, particularly if you are new to Linux, come from the repositories.

The ones that look like this;
Quote:
deb ftp://mirror.cpsc.ucalgary.ca/debian/ testing main
deb http://security.debian.org/ testing/updates main
are the official repos for Debian. Yours will have a different address probably because you will use a different mirror (probably) for the main. Yours will also say something other than "testing" (probably "squeeze".

As you can see there are other Debian related repos that others are using. They are for other content that Debian does not include with the install.

You can see your sources list by, as root in terminal;
Code:
gedit /etc/apt/sources.list
if you do not know how to use the terminal as root, run this before using the above command;
Code:
su
you will be asked for the root password. Type it. Hit enter. Run the gedit command.
 
Old 05-18-2011, 08:40 PM   #222
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,885

Original Poster
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
Cool

Quote:
Originally Posted by baronobeefdip View Post
what what is a sources repository? is it essential
A Debian repository is a directory where you can find software you can install on Debian. These type of lines start with deb.


You only need a deb-src repo if you plan or need to compile package(s) from source, if not you do not need it. I keep the line for it commented, and only uncomment it on the rare occasion I build something from source.

More info on how /etc/apt/sources.list works:
SourcesList - Debian Wiki - http://wiki.debian.org/SourcesList

BTW widget you cannot open GUI apps as root by using su, either use gksu or sux.

You can however edit your sources.list with nano by doing:
su
enter root password
nano /etc/apt/sources.list

Also see http://manual.aptosid.com/en/term-konsole-en.htm#sux
Apt - Debian Wiki - http://wiki.debian.org/Apt
Aptitude - Debian Wiki - http://wiki.debian.org/Aptitude
 
Old 05-19-2011, 03:13 AM   #223
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
I certainly stand corrected on the gksu. It is such a habit that I forget about using it. This can lead to very bad advice to folks, as the OP, who have no knowledge of it at all.

This is not a good thing.

Thanks.
 
Old 05-27-2011, 07:15 AM   #224
qrange
Senior Member
 
Registered: Jul 2006
Location: Belgrade, Yugoslavia
Distribution: Debian stable/testing, amd64
Posts: 1,061

Rep: Reputation: 47
hm, why can't we use:
deb https://security.debian.org/ ..

instead of:
deb http://security.debian.org/ ..


?
 
Old 06-03-2011, 02:28 AM   #225
pcardout
Member
 
Registered: Jun 2003
Location: Socorro, New Mexico
Distribution: Debian ("jessie", "squeeze"), Linux Mint (Serena), XUbuntu
Posts: 221

Rep: Reputation: 24
Here are the etch archive repositories

Code:
# 
# THESE ARE THE ARCHIVE SOURCES FOR THE ETCH RELEASE
# I AM STILL RUNNING ETCH ON AN EMBEDDED SYSTEM AND I OCCASIONALLY WANT TO
# ADD SOFTWARE.
# VERIFIED TO WORK JUNE 2011.
deb http://archive.debian.org/debian/ etch contrib main
deb-src http://archive.debian.org/debian/ etch contrib main
This site:
http://www.debian.org/distrib/archive

Tells you how to use all the archived versions of Debian. Essentially you use the syntax above
and replace "etch" with "woody" or whatever you like.
 
  


Reply

Tags
apt, aptitude, aptpinning, debian, debiansid, repositories, sid, sourceslist, synaptic



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
First Post! Unable to compile source code J--Lew Linux - Newbie 5 08-16-2005 03:17 PM
2005 LE Post-install todo list Steel Shepherd Mandriva 7 05-02-2005 01:44 AM
what is the best source to put on apt-get source list j.vilon Debian 3 09-28-2004 08:49 PM
can you post your WORKING contrib source for 9.2 JadeWolf324 Mandriva 1 12-11-2003 10:33 AM
How to post a thread in mailing list? Xiangbuilder General 0 09-06-2003 09:26 PM

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

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