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 10-07-2005, 10:07 PM   #1
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
Etch to Sid?


So I recently upgraded to Etch, but the kmail version(3.3.2) doesn't have a feature I need. Thoughts on upgrading to etch(for KDE 3.4), or a place to get 3.4 w/ out upgrading completely?
 
Old 10-08-2005, 02:56 AM   #2
juvestar15
Member
 
Registered: Aug 2005
Location: Australia
Distribution: Debian Sid
Posts: 60

Rep: Reputation: 15
Quote:
(Verified) KDE 3.4.1 Packages (Added 2005-07-18, last checked 2005-08-23) (Download as text)
KDE 3.4.1 is still extremely experimental, though it should work fine on most systems.
Packages in database: akode, akregator, amor, ark, arts, artsbuilder, atlantik, atlantik-dev, dcoprss, eyesapplet, ...
Architectures: all, amd64, i386
deb http://pkg-kde.alioth.debian.org/kde-3.4.1/ ./
That's from searching KDE at apt-get.org

Don't know if it's of any use. I just started playing around with Debian yesterday. I thought if you were running etch, for example and you wanted a package from sid, you could change your sources to sid then get the package then change back to etch. That shouldn't be done?
 
Old 10-08-2005, 09:24 AM   #3
yanik
Member
 
Registered: Oct 2003
Location: Montreal Beach
Distribution: Debian Unstable
Posts: 368

Rep: Reputation: 30
yes you can. Make sure /etc/apt/apt.conf point to testing.

then add the unstable branch to your /etc/apt/sources.list.

then apt-get -t unstable install kmail
 
Old 10-13-2005, 09:57 PM   #4
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445

Original Poster
Blog Entries: 9

Rep: Reputation: 48
I don't have a /etc/apt/atp.conf. There is however a /etc/apt/apt.conf.d/70debconf. Is this what you mean?
 
Old 10-14-2005, 12:15 PM   #5
fsateler
Member
 
Registered: Jul 2004
Location: Santiago, Chile
Distribution: Debian Unstable
Posts: 107

Rep: Reputation: 15
Do not try to install unstable KDE packages on your Etch machine... they won't. Unstable is going (although it is fairly complete, and thus a fairly usable system) through some changes that make new C++ programs incompatible with old libraries, and thus you would need to upgrade your complete system to unstable. I'd try searching on www.apt-get.org, as juvestar said.
 
Old 10-15-2005, 09:47 AM   #6
jlinkels
LQ Guru
 
Registered: Oct 2003
Location: Bonaire, Leeuwarden
Distribution: Debian /Jessie/Stretch/Sid, Linux Mint DE
Posts: 5,195

Rep: Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043
If you want to install a package from a specific version, do:

apt-get install -t testing mypackage
or
apt-get install -t unstable mypackage

Normally, apt-get always installs the newest version of a package. You can add a line in apt.conf to tell what should be the default version to use. Refer to "man apt.conf" to find out how to create your apt.conf. You can use 70debconf as an example to start from. You have to copy it to /etc/apt/apt.conf.

BIG FAT WARNING:
Do not rely on that you can install/uninstall KDE or KDE components like KMail at will. Often files appear and disappear from the versions. It happened when testing became Etch instead of Sarge. In Unstable it is bot uncommon at all. For example, if I attempt to upgrade KMail apt-get wants to remove tens of packages, upgrade a few hundred and install a handful of new ones. It can be done, but I don think you should expect to go back when something is not working.

Just to be fair to the developers of KDE: this is not a complaint. I understand why it is happening. If you try to keep correct interdendencies for 400+ packages which all have dependencies themselves, it is a fact of life.

jlinkels
 
Old 10-16-2005, 01:06 PM   #7
archtoad6
Senior Member
 
Registered: Oct 2004
Location: Houston, TX (usa)
Distribution: MEPIS, Debian, Knoppix,
Posts: 4,727
Blog Entries: 15

Rep: Reputation: 234Reputation: 234Reputation: 234
Safety net / restore point

<aside>
Warning -- I have yet to have to do this.

From man dpkg:
Quote:
To make a local copy of the package selection states:
dpkg --get-selections >myselections

You might transfer this file to another computer, and install it there with:
dpkg --set-selections <myselections
Note that this will not actually install or remove anything, but just set the selection state on the requested packages. You will need some other application to actually download and install the requested packages. For example, run dselect and choose "Install".
It seems to me this could also be used as safety net when you are about to do something major to your system: Immediately prior to doing something drastic, make the "copy of the package selection states"; then if something goes wrong, you have a restore file available.

As I said above, I have yet to have to do this. I have, however, made the "restore point" file on occasion, I just haven't had to try to one yet.

RTFM "dpkg" & "dselect".
 
Old 10-16-2005, 02:05 PM   #8
jlinkels
LQ Guru
 
Registered: Oct 2003
Location: Bonaire, Leeuwarden
Distribution: Debian /Jessie/Stretch/Sid, Linux Mint DE
Posts: 5,195

Rep: Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043
I know dpkg --get-selections. I have used it. Even succesfully.

But imho you are *not* making a snapshot of the package state of you system. The version information lacks.

jlinkels
 
Old 10-17-2005, 06:53 AM   #9
archtoad6
Senior Member
 
Registered: Oct 2004
Location: Houston, TX (usa)
Distribution: MEPIS, Debian, Knoppix,
Posts: 4,727
Blog Entries: 15

Rep: Reputation: 234Reputation: 234Reputation: 234
You're right. After I posted, I made one & then examined it, & the ver. info. was lacking.
 
Old 10-17-2005, 10:53 PM   #10
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445

Original Poster
Blog Entries: 9

Rep: Reputation: 48
so I should go w/ the apt-get.org files? My understanding of the above posting is that the KDE version in sid won't work if I just upgrade that. If I upgraded to sid completely, then it should work?
 
Old 10-17-2005, 11:26 PM   #11
fsateler
Member
 
Registered: Jul 2004
Location: Santiago, Chile
Distribution: Debian Unstable
Posts: 107

Rep: Reputation: 15
Yes, if you upgraded to Sid, then it would work. Note though that upgrading may be a huge upgrade. However, apt-get.org packages aren't guaranteed to work either.
 
Old 10-20-2005, 12:25 AM   #12
bobbens
Member
 
Registered: Sep 2004
Location: Barcelona
Distribution: Debian, FreeBSD, Gentoo
Posts: 586

Rep: Reputation: 30
Quote:
Originally posted by fsateler
Yes, if you upgraded to Sid, then it would work. Note though that upgrading may be a huge upgrade. However, apt-get.org packages aren't guaranteed to work either.
Wouldnt be too sure about that, gnome and kde have big problems in SID from what i've seen. Maintaining such big packages when they get updated constantly is sorta crazy. If you want to use gnome or kde all out, i'd suggest sarge or etch. You might get kde and gnome working if you are very selective on packages but i'd recommend some other windows manager for SID.

About getting certain files from SID on an etch system. That is a big mistake, with all the new libs we're getting updating in SID, like xfree -> x.org and gcc3.3 -> gcc4 and stuff i think that's probably the easiest way to break your system. Luckily if you search some sites like apt-get.org you can find backports for sarge or etch. These are newer versions (SID versions) of some programs compiled especifically for stable/testing branches of debian (altough mainly stable). These backports will probably work if you want to update only one or two programs. Another solution would be compiling it yourself, although these big apps will take a while.


EDIT: looking furthur down i've found an example of someone complaining about unmet dependencies installing kde in SID.

Last edited by bobbens; 10-20-2005 at 12:27 AM.
 
Old 10-20-2005, 09:01 AM   #13
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445

Original Poster
Blog Entries: 9

Rep: Reputation: 48
I updated to KDE 3.4 from
deb http://pkg-kde.alioth.debian.org/kde-3.4.1/ ./
and it seems to be working. Thank you
 
Old 10-21-2005, 08:45 AM   #14
jlinkels
LQ Guru
 
Registered: Oct 2003
Location: Bonaire, Leeuwarden
Distribution: Debian /Jessie/Stretch/Sid, Linux Mint DE
Posts: 5,195

Rep: Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043
Didn't know this web site. Very nice.
 
  


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
will the ltmodem drivers work in debian sid (knoppix sid) maximalred Debian 5 05-29-2009 10:44 AM
anyone have broken ssh in etch/sid? m_yates Debian 7 04-02-2006 12:54 AM
Thinking of upgrading to Sid/Etch tomj88 Debian 14 08-25-2005 08:06 PM
About Etch maginotjr Debian 6 06-07-2005 02:04 PM
What our the differences between debian (Sid) and knoppix 3.4 (Sid)? maximalred Debian 6 06-06-2004 08:39 PM

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

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