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 02-06-2011, 02:00 PM   #16
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625

Real ZFS.

Real Unix.
 
Old 02-06-2011, 05:12 PM   #17
Peufelon
Member
 
Registered: Jul 2005
Posts: 164
Blog Entries: 1

Rep: Reputation: Disabled
Ditto eveningsky339, jlinkels.

Wish I could do more to help, but at least I can express my gratitude!
 
Old 02-06-2011, 11:25 PM   #18
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by odiseo77 View Post
Good to know! Although as a Sid user, this doesn't make much difference to me
As a Sid user it makes a difference to me: Sid will become a somewhat less "stable" again as lots of new packages that were being held back for the freeze enter the repo.

Cheers,

Evo2.
 
Old 02-07-2011, 05:29 AM   #19
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by evo2 View Post
As a Sid user it makes a difference to me: Sid will become a somewhat less "stable" again as lots of new packages that were being held back for the freeze enter the repo.

Cheers,

Evo2.
Totally, yesterday it wanted to remove my X during upgrade. Better have an eye on things like that.
 
Old 02-07-2011, 05:33 AM   #20
lugoteehalt
Senior Member
 
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Blog Entries: 2

Rep: Reputation: 49
Quote:
Originally Posted by snowpine View Post
Code:
cat /etc/apt/sources.list
If your software sources say "squeeze" then you now have stable. If they say "testing" you now have Wheezy.
My sources.list:
Code:
deb http://ftp.uk.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ squeeze main contrib non-free

deb http://ftp.uk.debian.org/debian/ squeeze main
deb-src http://ftp.uk.debian.org/debian/ squeeze main

deb http://security.debian.org/ squeeze/updates main
deb-src http://security.debian.org/ squeeze/updates main
Thanks, so I've got stable.
 
Old 02-07-2011, 06:30 AM   #21
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by lugoteehalt View Post
My sources.list:
Code:
deb http://ftp.uk.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ squeeze main contrib non-free

deb http://ftp.uk.debian.org/debian/ squeeze main
deb-src http://ftp.uk.debian.org/debian/ squeeze main

deb http://security.debian.org/ squeeze/updates main
deb-src http://security.debian.org/ squeeze/updates main
Thanks, so I've got stable.
You have some unnecessary duplicate repos listed. If you want all of the contrib and non-free repos enabled on an otherwise stable release you only need this:

Code:
deb http://ftp.uk.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.uk.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
If you want purely free software:
Code:
deb http://ftp.uk.debian.org/debian/ squeeze main
deb-src http://ftp.uk.debian.org/debian/ squeeze main

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

Last edited by cynwulf; 02-07-2011 at 06:32 AM.
 
1 members found this post helpful.
Old 02-07-2011, 06:42 AM   #22
rsciw
Member
 
Registered: Jan 2009
Location: Essex (UK)
Distribution: Home: Debian/Ubuntu, Work: Ubuntu
Posts: 206

Rep: Reputation: 44
When will Testing 'officially' be 7.0/wheezy?
ran a dist-upgrade, sources.list look for 'testing' repos, not squeeze/wheezy etc., yet /etc/debian_version remains at 6.0 and lsb_release says Codename: squeeze still.

 
Old 02-07-2011, 07:07 AM   #23
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
That's pretty normal for a start. It is called wheezy though:

http://ftp.debian.org/debian/dists/w...n/binary-i386/

It won't be called "7.0" for quite a long time, not until around the time of the next freeze (i.e. 2 years).

Last edited by cynwulf; 02-07-2011 at 07:08 AM.
 
Old 02-07-2011, 07:49 AM   #24
lugoteehalt
Senior Member
 
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Blog Entries: 2

Rep: Reputation: 49
Quote:
Originally Posted by Caravel View Post
You have some unnecessary duplicate repos listed. If you want all of the contrib and non-free repos enabled on an otherwise stable release you only need this:

Code:
deb http://ftp.uk.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.uk.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
If you want purely free software:
Code:
deb http://ftp.uk.debian.org/debian/ squeeze main
deb-src http://ftp.uk.debian.org/debian/ squeeze main

deb http://security.debian.org/ squeeze/updates main
deb-src http://security.debian.org/ squeeze/updates main
Thanks, didn't realise that. So '.... main' is a subset of '.... contrib non-free'.
 
Old 02-07-2011, 08:29 AM   #25
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
If you don't want to develop software or build software from source you also can comment out the deb-src-entries, that will make the update of the database faster.
To comment them out, just put a #-sign in front of them.
 
1 members found this post helpful.
Old 02-07-2011, 09:04 AM   #26
lugoteehalt
Senior Member
 
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Blog Entries: 2

Rep: Reputation: 49
Quote:
Originally Posted by TobiSGD View Post
If you don't want to develop software or build software from source you also can comment out the deb-src-entries, that will make the update of the database faster.
To comment them out, just put a #-sign in front of them.
Thanks. But can't help feeling slightly hurt: I worked out the # some time ago.

While we are going down this line: Normally, when I build from source, I download the source from the program's web page. But can get it using apt-get?? Any advantages using this route??
 
Old 02-07-2011, 04:54 PM   #27
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,463

Original Poster
Rep: Reputation: 299Reputation: 299Reputation: 299
Quote:
Originally Posted by lugoteehalt View Post

While we are going down this line: Normally, when I build from source, I download the source from the program's web page. But can get it using apt-get?? Any advantages using this route??
They're already "debianized" and archived. It allows you to use the many debian tools (making life easier and more secure).
This blog post from Raphaël Hertzog should give you a rough idea:
http://raphaelhertzog.com/2010/12/15...bian-packages/
 
1 members found this post helpful.
Old 02-08-2011, 04:06 AM   #28
lugoteehalt
Senior Member
 
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Blog Entries: 2

Rep: Reputation: 49
Quote:
Originally Posted by jens View Post
They're already "debianized" and archived. It allows you to use the many debian tools (making life easier and more secure).
This blog post from Raphaël Hertzog should give you a rough idea:
http://raphaelhertzog.com/2010/12/15...bian-packages/
Thanks that's enormously helpful. I'll try it.
 
  


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] Debian's and debian based distros issue with disk space. darkstarbyte Linux - Software 3 08-14-2010 10:58 PM
LXer: The Updated XGI Open-Source Graphics Driver Released LXer Syndicated Linux News 0 08-11-2010 10:20 AM
Say I have a website which needs to get updated daily beckettisdogg Linux - Newbie 5 09-02-2009 04:15 PM
Updated dvdbackup available on my website Lenard Spencer Linux - Software 1 03-04-2009 08:11 AM
LXer: Updated Free Documentation License released LXer Syndicated Linux News 0 09-27-2006 07:33 PM

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

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