LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 08-23-2004, 05:23 AM   #1
jockster666
LQ Newbie
 
Registered: Aug 2004
Posts: 10

Rep: Reputation: 0
Question Problems updating KDE to 3.3


Hi all

I'm a newbie whos been getting to grips with debian and have installed 3.01 and upgraded the kernel to 2.4.26

I'm trying to upgrade KDE to 3.3 (basically i'm a sucker for nice graphics lol) and i have downloaded the src files (all with .tar.bz2 extension) and got the instructions to compile and make the packages.

When i have tried to configure arts it says that it can't find x includes when checking for x

Is this something to do with my PATH settings and if so how do i change them?

Or is it something more sinister due to me being inept

Thanks in advance
 
Old 08-23-2004, 07:21 AM   #2
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Rep: Reputation: 101Reputation: 101
Most of KDE 3.3 is already in the unstable branch of Debian. I am running it on my PC at home. You would have a much easier time installing it using apt-get rather than compiling from source. Just add an "unstable' repository to your sources.list file, like:

deb ftp://ftp.debian.org/debian unstable main contrib non-free

Then install kde 3.3 with:
Code:
apt-get -t unstable install kde
 
Old 08-23-2004, 08:36 AM   #3
jockster666
LQ Newbie
 
Registered: Aug 2004
Posts: 10

Original Poster
Rep: Reputation: 0
I tried what u said and updated my apt-get but got this error once i tried again:

Reading Package Lists...
Building Dependency Tree...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

Sorry, but the following packages have unmet dependencies:
kde: Depends: kde-core but it is not going to be installed
Depends: kde-amusements but it is not going to be installed
Depends: kdeaddons but it is not going to be installed
Depends: kdeadmin but it is not going to be installed
Depends: kdeartwork but it is not going to be installed
Depends: kdegraphics but it is not going to be installed
Depends: kdemultimedia but it is not going to be installed
Depends: kdenetwork but it is not going to be installed
Depends: kdepim but it is not going to be installed
Depends: kdeutils but it is not going to be installed
Depends: quanta but it is not going to be installed

E: Sorry broken packages

Any ideas??
 
Old 08-23-2004, 09:08 AM   #4
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Rep: Reputation: 101Reputation: 101
Did you run "apt-get update" after modifying your sources.list file?

If so, the only difference between what you are doing and what I did is that I am running testing and unstable, not stable. Some of the required packages may be in testing. Try adding:

deb ftp://ftp.debian.org/debian testing main contrib non-free
deb ftp://ftp.debian.org/debian unstable main contrib non-free

lines to sources.list, then:
Code:
apt-get update
apt-get install kde
 
Old 08-23-2004, 09:42 AM   #5
jockster666
LQ Newbie
 
Registered: Aug 2004
Posts: 10

Original Poster
Rep: Reputation: 0
Sorry to be a pain but tried that too but when i tried apt-update this is the error i got:

Hit ftp://ftp.debian.org testing/main Packages
Hit ftp://ftp.debian.org testing/main Release
Hit ftp://ftp.debian.org testing/contrib Packages
Hit ftp://ftp.debian.org testing/contrib Release
Hit ftp://ftp.debian.org testing/non-free Packages
Hit ftp://ftp.debian.org testing/non-free Release
Hit ftp://ftp.debian.org unstable/main Packages
Hit ftp://ftp.debian.org unstable/main Release
Hit ftp://ftp.debian.org unstable/contrib Packages
Hit ftp://ftp.debian.org unstable/contrib Release
Hit ftp://ftp.debian.org unstable/non-free Packages
Hit ftp://ftp.debian.org unstable/non-free Release
Reading Package Lists... Error!
E: Dynamic MMap ran out of room
E: Error occured while processing libforms1 (NewVersion1)
E: Problem with MergeList /var/lib/apt/lists/ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages
E: The package lists or status file could not be parsed or opened.

Hope this helps
 
Old 08-23-2004, 09:59 AM   #6
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Rep: Reputation: 101Reputation: 101
I had never seen that error before, but a quick search on google yields: http://lists.debian.org/debian-user/.../msg00168.html

It looks like the fix is to increase the cache size for apt by doing:
Code:
echo 'APT::Cache-Limit "25165824";' >> /etc/apt/apt.conf
Hope that helps.
 
Old 08-23-2004, 10:19 AM   #7
jockster666
LQ Newbie
 
Registered: Aug 2004
Posts: 10

Original Poster
Rep: Reputation: 0
That sorted the last error but i'm getting this one again:

paul2:/etc/apt# apt-get install kde
Reading Package Lists... Done
Building Dependency Tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

Sorry, but the following packages have unmet dependencies:
kde: Depends: kde-core but it is not going to be installed
Depends: kde-amusements but it is not going to be installed
Depends: kdeaddons but it is not going to be installed
Depends: kdeadmin but it is not going to be installed
Depends: kdeartwork but it is not going to be installed
Depends: kdegraphics but it is not going to be installed
Depends: kdemultimedia but it is not going to be installed
Depends: kdenetwork but it is not going to be installed
Depends: kdepim but it is not going to be installed
Depends: kdeutils but it is not going to be installed
Depends: quanta but it is not going to be installed
E: Sorry, broken packages

I've updated the sources.list as you said so i dont know whats causing this.....
 
Old 08-23-2004, 10:37 AM   #8
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Rep: Reputation: 101Reputation: 101
Perhaps you could try installing a single package and see what that does:
Code:
apt-get -t unstable install kdelibs4
or maybe one of the things listed in the error message:
Code:
apt-get -t unstable install kdepim
The error messages you get may help to figure out why the packages aren't being installed.
 
Old 08-23-2004, 11:47 AM   #9
jockster666
LQ Newbie
 
Registered: Aug 2004
Posts: 10

Original Poster
Rep: Reputation: 0
installing each one independently is working

have to start off with
Code:
apt-get -t install arts
and then
Code:
apt-get -t install kdelibs
then install anyother of the packages but install kdeaddons last!

Hopefully this should work this time....

Thank you please
 
Old 08-23-2004, 11:52 AM   #10
jockster666
LQ Newbie
 
Registered: Aug 2004
Posts: 10

Original Poster
Rep: Reputation: 0
whoops mistake there

Code:
apt-get -t unstable install arts

apt-get -t testing install kdelibs
saying that probably got it wrong again....


 
Old 08-26-2004, 06:21 PM   #11
lokizen
Member
 
Registered: Jul 2004
Distribution: debian woody
Posts: 69

Rep: Reputation: 15
Hopping onto this thread, i hope y'all dont mind!
I am having problems with kicker in kde, and
apt-get -t unstable install kde gets me the message that i already have the
most current version.
Kicker, the bottom panel, rarely starts anymore, and running kicker might get it going
some times, but not often...
any ideas?
Lokizen


Last edited by lokizen; 08-26-2004 at 06:52 PM.
 
Old 08-26-2004, 08:12 PM   #12
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Rep: Reputation: 101Reputation: 101
I haven't had a problem with the kicker failing in KDE 3.3, but are you certain you are completely upgraded to KDE 3.3? Sometimes "apt-get upgrade kde" doesn't upgrade everything. Try installing individual packages like "apt-get -t unstable install kdelibs4 kcontrol kicker" and see if it upgrades it. You can also open synaptic to look a kde packages and see if you have any that haven't been upgraded. I don't know if that will help, but it may be worth a shot.
 
Old 08-27-2004, 02:32 AM   #13
lokizen
Member
 
Registered: Jul 2004
Distribution: debian woody
Posts: 69

Rep: Reputation: 15
Question Ouch!

I fixed the cache problem then proceeded to try to apt-get the files needed for kicker. At one point, a text interface let me know that i pretty much had to kill xdm and gdm to finish the install, and after that, umm... i couldnt get anything done due to dependency hell! now my kde or even gnome wont load due to a missing file or directory, and things have gone kablooey! :: cracking up ::

What can I do to get things back to abnormal?

Lokizen
, but not down for the count!

When in confusion, or in doubt, run in circles, scream and shout...
 
Old 08-27-2004, 08:05 AM   #14
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Rep: Reputation: 101Reputation: 101
If both KDM and Gnome won't load, it sounds like an x-windows problem. You could try:
Code:
apt-get -t unstable install x-window-system
to upgrade xfree86.
 
Old 08-27-2004, 02:10 PM   #15
lokizen
Member
 
Registered: Jul 2004
Distribution: debian woody
Posts: 69

Rep: Reputation: 15
Talking Square two...

ok. rather than chase my tail up the dependency tree, i reinstalled linux
and now my usb mouse (/dev/psaux) isnt working, and sound is not working, problems i solved before but forgot how!

But i finally have the resolution i need, but mouse and sound?

any help?

Lokizen, perpetual
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Updating KDE from the KDE FTP site Woodsman Slackware 2 10-23-2005 04:33 PM
updating kde to 3.4 minm Linux - Newbie 2 05-19-2005 05:55 PM
updating KDE from 3.2.3 Starch Linux - Newbie 16 02-02-2005 07:36 PM
Updating KDE: How do you do it????? Gormless Linux - Software 4 10-11-2004 02:31 PM
updating to kde 3.2 rossisagenius Linux - Newbie 2 07-09-2004 04:08 AM

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

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