PDA

View Full Version : Updating from KDE 3.0 to KDE 3.1



johncarlson21
03-26-2003, 02:30 AM
how do I update to the new version of KDE can anyone help me out?????? :P :P :shock: :shock:

Also why does the stupid Xserver crash??? I have had to reinstall like 3 times... :shock: :shock: :shock:

And does anyone have a good file backup program or an Idea how to do it easily...?

RockMumbles
03-26-2003, 03:19 AM
how do I update to the new version of KDE can anyone help me out??????
Going from kde 3.0 to 3.1 (maybe even 3.1.1 as that's what I've got running on my libranet boxes) is a little messy! Doing it my way you will have to manually deal with the problems with the upgrade in a terminal window logged in as root, are you willing to do this? If so post back and I'll tell you the approach you'll need to take, unfortunately I can't take you exactly step by step.


Also why does the stupid Xserver crash??? I have had to reinstall like 3 times...
You've had to redo your hd install 3 times?
That doesn't sound right. Actually I'm not really a big fan of running knoppix as a hd install, it really wasn't intended to be used that way and because it was designed to be ran as a live system from cd you will have problems with it that you would not have with a distro intended to be installed on a hd.


And does anyone have a good file backup program or an Idea how to do it easily...?
What I do is make separate partitions for /home and for what I call /store, I can then copy needed configuration files from /etc and anything else I want to save to either the /home direcory or my /store directory and have them available after a reinstall. Since the knx-hdinstall script won't deal with more than one partition, after the install I empty out the new /home directory and fix my fstab to point to my /home directory, mount my home partition as /home change any ownership problems that I may have and I have a new system with my old settings, files etc. up and running.

HTH

rock

johncarlson21
03-26-2003, 05:06 PM
I really appreciate the replies.. If anyone finds an easier way to update let me know.. that would be great.. hey you could reply and tell me some of the details on how to update your way.... thanks :shock: :shock: :shock:

RockMumbles
03-26-2003, 11:14 PM
As far as a KDE upgrade first as root in an X terminal (ie: konsole, xterm, etc.) do an:

apt-get update

then do:

apt-get dist-upgrade

at this point apt-get should want to upgrade (get) probably at least 60 or 70 packages, maybe even more, now is where the fun begins, (actually the mess begins). When you say 'Y' to the upgrade, apt-get will first downlaod the necessary packages, and then begin to install them, apt-get (actually dpkg) will error out because of xxxx file is also in package Y. So make note of the packages that have caused the errors, and now do this:

cd /var/cache/apt/archives
now do an ls and copy the file names from the error list and add an asterix to the end of the package name and look for the actual file name, you'll need that to continue. Example if kdelibs4 gives an error do this:

ls kdelibs4*

and you should see something like:
kdelibs4_4%3a3.1.1-0woody1_i386.deb

then use the following command:

dpkg --force-overwrite -i kdelibs4_4%3a3.1.1-0woody1_i386.deb

Note: you can include more than one filename, just separate the filenames with spaces. Also make sure you use the latest version if you have several versions of a package in your archives directory.
When dpkg is finished, run apt-get dist-upgrade again which should proceed a bit further and error out again, repeat until apt-get dist-upgrade finishes with no errors. I cannot tell you which packages will give errors on your system.

Note: The reason I like to do this process from konsole or another x-term (instead of a console) is I use the mouse to copy and paste filenames, then you have them spelled correctly and don't have to do as much typing.

HTH

rock

johncarlson21
03-27-2003, 01:52 PM
Thanks for the info I will try to upgrade later and post it to let you know how it went... thanks... :D