LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-21-2005, 01:08 AM   #1
davidsrsb
Member
 
Registered: Oct 2003
Location: Kuala Lumpur, Malaysia
Distribution: Slackware 13.37 current
Posts: 770

Rep: Reputation: 33
Kde 3.4


Is it a good idea to wait for an official 3.4 package set, I have had problems with 3.2 and 3.3 packages from Linuxpackages before.
Is Patrick waiting for 3.4.1?
 
Old 03-21-2005, 04:38 AM   #2
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
Well, if you have had problems with third party packages, maybe its a good idea to wait for the official packages. If you are a bit adventuruous you can compile it yourself.
 
Old 03-21-2005, 06:45 AM   #3
Haiyadragon
Member
 
Registered: Sep 2003
Location: Gorredijk, Netherlands
Distribution: Arch Linux
Posts: 400

Rep: Reputation: 30
I haven't had any problems with the Linuxpackages packages so far. Only thing I've heard is that the packages don't support smtp (outgoing mail) authentication. But I don't use that anyway.

I compile a lot of my apps myself. But KDE just takes to damn long.
 
Old 03-21-2005, 08:46 AM   #4
denning
Member
 
Registered: Jan 2004
Location: Oxford
Distribution: Slackware, Debian, Fedora, FreeBSD, NetBSD
Posts: 150

Rep: Reputation: 15
compiling KDE is easy. Just make sure you have a pentium 3 or above or else it will take ages.

Compile just arts, kdelibs and kdebase, the rest are just extras. This probably takes 7-8 hours, so just sleep over it.
 
Old 03-21-2005, 10:15 AM   #5
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
As mentioned, KDE isn't too hard too compile. The configure script is also helpful because it informs you of any missing dependencies and where to download them. I am actually using a version I compiled myself and it works like a charm.
 
Old 03-22-2005, 09:19 AM   #6
Nobber
Member
 
Registered: Jun 2002
Location: Nova Scotia
Distribution: Debian (home), Kubuntu 7.04 (work)
Posts: 265

Rep: Reputation: 30
If you have lots of memory, it's a good idea to pass the --enable-final option to ./configure. I've found it cuts the compile time down by 30-40%. I've got a 2GHz CPU and 512MB of RAM, and I can get most of KDE (the bits I want) compiled in about 3 hours.

(Apparently what --enable-final does is concatenate all the source files before compiling. This is supposed to create size-optimised binaries, but the decreased compile time is a far more interesting side effect!)
 
Old 03-22-2005, 09:25 AM   #7
Yalla-One
Member
 
Registered: Oct 2004
Location: Norway
Distribution: Slackware, CentOS
Posts: 641

Rep: Reputation: 36
Famous Last Words

Greetings,

Does anyone have any last-minute advice before I attempt to install KDE 3.4 on a standard Slackware 10.1 distribution? When installing Slackware I chose the full package, whole nine yards, but I am afraid of breaking anything once I install KDE 3.4

So far I have downloaded qt-x11-free-3.3.4.tar.bz2 from trolltech and all the bz2 files from ftp.du.se/pub/mirrors/kde/stable/3.4/src (including the i18n file - what is this?)

I guess I'll go to runlevel 3 prior to doing anything, as to ensure no files are in use, but apart from that - any hints anyone?

Thank you.

Last edited by Yalla-One; 03-22-2005 at 09:46 AM.
 
Old 03-22-2005, 04:08 PM   #8
amwink
Member
 
Registered: Mar 2005
Location: Connecticut/USA
Distribution: Ubuntu 9.04
Posts: 68

Rep: Reputation: 15
Here is what I did to get KDE3.4 working:

1) Unpack the qt-x11-free-3.3.4.tar.gz inside /usr/local

2) Create a symlink /usr/local/qt pointing to /usr/local/qt-x11-free-3.3.4

3) Set the environment vars in your /etc/profile as follows:

Code:
QTDIR=/usr/local/qt
KDEDIR=/opt/kde
PATH=$QTDIR/bin:$KDEDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

export QTDIR KDEDIR PATH MANPATH LD_LIBRARY_PATH
Logout and login again to make these changes take effect..

4) Start compiling Qt:
Code:
cd $QTDIR
./configure -system-zlib -qt-gif -system-libpng \
-system-libjpeg -plugin-imgfmt-mng -thread -no-stl \
-no-xinerama -no-g++-exceptions
make
These options are the ones recommended in the KDE website.
Notice that you don't need to "make install" since you are already compiling inside the target dir.

5) Start compiling KDE. For every *.tar.gz file do:
Code:
tar xzf <packagename>.tar.gz
cd <packagename>
./configure
make
make install
You must install in the following order: 1) arts 2) kdelibs 3) kdebase. At this point you can already run KDE and see it working. Then compile and install the other packages as you need them. Remember to leave kdeaddons as the last to be installed.

It tooks several hours! You may try the --enable-final as Nobber suggested (if I knew that before...)

Good luck

amwink
 
Old 03-22-2005, 04:10 PM   #9
amwink
Member
 
Registered: Mar 2005
Location: Connecticut/USA
Distribution: Ubuntu 9.04
Posts: 68

Rep: Reputation: 15
I have, however, one doubt: how to make KDE appear in the xwmconfig list? tks. amwink
 
Old 03-22-2005, 04:37 PM   #10
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
it probably won't work with xwmconfig (there is probably a way to fix this), but creating an .xsession or .xinitrc file works just fine.
 
Old 03-22-2005, 04:54 PM   #11
apachedude
Member
 
Registered: Aug 2004
Location: California
Distribution: SuSE 10.0 (SUPER)
Posts: 356

Rep: Reputation: 31
Quote:
Originally posted by Haiyadragon
I haven't had any problems with the Linuxpackages packages so far. Only thing I've heard is that the packages don't support smtp (outgoing mail) authentication. But I don't use that anyway.

I compile a lot of my apps myself. But KDE just takes to damn long.
Where'd you hear this? I'm having trouble with smtp if my firewall is enabled, but otherwise, it works fine.

http://www.linuxquestions.org/questi...hreadid=304588

Edit: I just tried running Thunderbird on TWM, and it doesn't work either. So my problem, at least, doesn't have to do with KDE smtp authentication.

Last edited by apachedude; 03-22-2005 at 04:59 PM.
 
Old 03-23-2005, 06:02 AM   #12
Haiyadragon
Member
 
Registered: Sep 2003
Location: Gorredijk, Netherlands
Distribution: Arch Linux
Posts: 400

Rep: Reputation: 30
Quote:
Originally posted by apachedude
Where'd you hear this? I'm having trouble with smtp if my firewall is enabled, but otherwise, it works fine.

http://www.linuxquestions.org/questi...hreadid=304588

Edit: I just tried running Thunderbird on TWM, and it doesn't work either. So my problem, at least, doesn't have to do with KDE smtp authentication.
People on linuxpackages and userlocal.com said they had trouble with it. Normal smtp works fine as long as no authentication is required.

Anyway, I'm back to KDE 3.3.2 from current. I ran into quite a few (minor) bugs and I decided I will wait for 3.4 to go current since 3.3.2 works great. But I think we might have to wait for 3.4.1.
 
Old 03-23-2005, 06:33 PM   #13
apachedude
Member
 
Registered: Aug 2004
Location: California
Distribution: SuSE 10.0 (SUPER)
Posts: 356

Rep: Reputation: 31
Quote:
Originally posted by Haiyadragon
People on linuxpackages and userlocal.com said they had trouble with it. Normal smtp works fine as long as no authentication is required.
I'm trying to diagnose whether I have that problem. Is this only for KMail, or is it a general lack of support of SMTP-auth? I tried Thunderware in TWM and Failsafe, and it failed still, so it would seem to indicate that it's not a KDE problem.
 
Old 03-23-2005, 11:53 PM   #14
Haiyadragon
Member
 
Registered: Sep 2003
Location: Gorredijk, Netherlands
Distribution: Arch Linux
Posts: 400

Rep: Reputation: 30
Quote:
Originally posted by apachedude
I'm trying to diagnose whether I have that problem. Is this only for KMail, or is it a general lack of support of SMTP-auth? I tried Thunderware in TWM and Failsafe, and it failed still, so it would seem to indicate that it's not a KDE problem.
It should only be a problem in KMail. So something else is going on with your setup.
 
Old 03-23-2005, 11:55 PM   #15
apachedude
Member
 
Registered: Aug 2004
Location: California
Distribution: SuSE 10.0 (SUPER)
Posts: 356

Rep: Reputation: 31
Quote:
Originally posted by Haiyadragon
It should only be a problem in KMail. So something else is going on with your setup.
Fixed it. I really want to try KMail, but I'm hanging onto Thundermail for now in case I'm ever stuck with Windows. Hopefully, when QT 4.0 comes out a port of KDE for Windows well too.

I haven't used Windows in months, but KDE on the Windows desktop could have a HUGE impact.
 
  


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
HELP!!! Installed kde 3392 rpms keyboard dead inside kde, working in shell hansschmucker SUSE / openSUSE 1 02-13-2005 08:01 PM
Why wont my KDE 3.2 FC2 setup run make commands w/KDE 1.x packages? rusty_slacker Linux - Newbie 1 09-19-2004 05:40 PM
KDE startup lookup using SuSE 9.1 (KDE 3.2.3 - /home over NFS) dbertolo Linux - Software 1 08-24-2004 10:26 AM
couple of qs, gnome ftp, removing kde or improving speed of kde, startup modprobe darkleaf Linux - Software 2 07-20-2004 09:54 AM
[REDHAT KDE] Disable KDE boot? Apache down after 10min losing monitor signal bjwesselink Linux - Software 2 08-11-2003 01:52 PM

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

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