Debian This forum is for the discussion of Debian Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
08-20-2007, 08:42 AM
|
#121
|
|
LQ Newbie
Registered: Jan 2003
Location: Alabama, US, Planet Earth
Distribution: Mandrake 9.2
Posts: 18
Rep:
|
Does anyone have a source list for KDE 3.5.6 and for compiz?
|
|
|
|
|
Click here to see the post LQ members have rated as the most helpful post in this thread.
|
09-05-2007, 07:14 PM
|
#123
|
|
Senior Member
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid
Posts: 4,732
Original Poster
|
Quote:
Originally Posted by discipledoc
Does anyone have a source list for KDE 3.5.6 and for compiz?
|
3.5.6 is probably in Etch , or backport.org, Sid has 3.5.7. See my first post for a compiz repo for sid.
|
|
|
|
12-20-2007, 10:59 AM
|
#127
|
|
Senior Member
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid
Posts: 4,732
Original Poster
|
Opera and Skype have there own repos, neither one is in the normal Debian repos. Look at the very first post in this thread.
|
|
|
|
12-22-2007, 01:23 PM
|
#129
|
|
Member
Registered: Nov 2004
Distribution: Debian Testing+Sid
Posts: 693
Rep:
|
running sid alone is troublesome.use apt-pinning with lenny(testing) and experimental(for packages like upstart which replaces sysVinit).also sid means daily updates of 30MB+ and sometimes upto 150MBs :shock:
anyways,below is my /etc/apt/apt.conf(which u have to make)
Code:
APT::Default-Release "unstable";
APT::Cache-Limit 100000000;
and my /etc/apt/preferences file(again u have to make)
Code:
#Explanation: see http://www.argon.org/~roderick/apt-pinning.html
Package: *
Pin: release o=Debian,a=unstable
Pin-Priority: 900
Package: *
Pin: release o=Debian,a=testing
Pin-Priority: 200
Package: *
Pin: release o=Debian,a=experimental
Pin-Priority: 10
Package: *
Pin: release o=Debian
Pin-Priority: -1
and now my /etc/apt/sources.list:
Code:
# If you get errors about missing keys, lookup the key in this file
# and run these commands (replace KEY with the key number):
# gpg --keyserver subkeys.pgp.net --recv KEY
# gpg --export --armor KEY | apt-key add -
#
# If you have a gpg key URL use (replace URL with the key address):
#
# wget -q URL -O- | apt-key add -
#
# If you have a gpg key file use (replace FILE with the key file):
#
# apt-key add FILE
#testing security updates
deb http://security.debian.org/ testing/updates main
#deb-src http://security.debian.org/ testing/updates main
#testing repository
deb ftp://ftp.se.debian.org/debian/ testing main contrib non-free
#deb ftp://ftp.se.debian.org/debian/ testing main contrib non-free
#unstable repository
deb ftp://ftp.se.debian.org/debian/ unstable main contrib non-free
#deb ftp://ftp.se.debian.org/debian/ unstable main contrib non-free
#experimental repository
deb ftp://ftp.se.debian.org/debian/ experimental main contrib non-free
#deb ftp://ftp.se.debian.org/debian/ experimental main contrib non-free
#debian-unofficial
deb http://ftp.debian-unofficial.org/debian unstable main contrib non-free restricted
#deb-src http://ftp.debian-unofficial.org/debian unstable main contrib non-free restricted
#debian multimedia
deb http://www.debian-multimedia.org sid main
#rarewares
deb http://www.rarewares.org/debian/packages/unstable/ ./
that's all  now you have to run in root terminal(use su or sux):
now if u want to upgrade certain package from experimental repo
Code:
apt-get -t experimental install upstart
Hope it helps!
|
|
|
|
12-22-2007, 01:49 PM
|
#130
|
|
Member
Registered: Oct 2003
Location: Greece
Posts: 260
Rep:
|
Many thanks deepclutch for posting this, it is really helpful
Merry Christmas
|
|
|
|
12-28-2007, 05:37 AM
|
#131
|
|
Member
Registered: Dec 2006
Location: NOIDA, India
Distribution: Debian, SUSE, Fedora
Posts: 334
Rep:
|
Hello, I am trying to install Banshee Music Player on Debian. My sources.list does not list any server hosting this software. Please post the specific link for the Banshee, if you have.
|
|
|
|
12-28-2007, 07:22 AM
|
#132
|
|
Senior Member
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid
Posts: 4,732
Original Poster
|
Quote:
Originally Posted by deepumnit
Hello, I am trying to install Banshee Music Player on Debian. My sources.list does not list any server hosting this software. Please post the specific link for the Banshee, if you have.
|
Best bet would be to build it from source:
Banshee Source - Banshee
http://www.banshee-project.org/Banshee_Source
or try Rythmbox which is in Debian unstable/Sid repo.
|
|
|
|
12-28-2007, 07:24 AM
|
#133
|
|
Senior Member
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,104
Rep: 
|
Banshee is in your main repo (unless you're not using an intel or powerpc based system):
http://packages.debian.org/search?su...ywords=banshee
Last edited by jens; 12-28-2007 at 07:28 AM.
|
|
|
|
12-30-2007, 07:53 PM
|
#135
|
|
Member
Registered: May 2007
Distribution: Debian
Posts: 754
Rep:
|
Hi Tristan,
for
Code:
#deb http://mirrors.kernel.org/debian/dists/lenny main contrib non-free
try this instead
Code:
deb http://mirrors.kernel.org/debian/ lenny main contrib non-free
That is, I don't think that you want "dists", and you want a space before lenny. More importantly, though, I don't think that you need those same lenny sources 3 times. All of these are the same repos from different mirrors:
Code:
deb http://ftp.debian.org/debian lenny main contrib non-free
deb ftp://ftp.uk.debian.org/debian/ lenny main contrib non-free
deb http://mirrors.kernel.org/debian/ lenny main contrib non-free
You should probably just pick one (I find the country code option is good, but your mileage may vary).
Edit - the same goes for Debian-multimedia: you seem to have two mirrors of that as well.
Last edited by Telemachos; 12-30-2007 at 07:54 PM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 03:22 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|