Re: kde2 and Xresources

2002-10-29 Thread Rob Weir
On Mon, Oct 28, 2002 at 05:49:44PM +0100, Olivier Esser wrote: > kde2 (in debian woody) seems to overrides some of the resources I have put in > .Xresources. The particular resources > > xterm*Font: -misc-fixed-medium-r-semicondensed-*-*-120-*-*-c-*-iso8859-15 > > is overriden by > > xterm*Fo

Re: KDE2 helloworld.cpp

2002-10-01 Thread John Batistic
On Wed, 2002-10-02 at 12:58, John Batistic wrote: > On Tue, 2002-10-01 at 22:58, Colin Watson wrote: > > On Tue, Oct 01, 2002 at 10:51:12PM +1200, John Batistic wrote: > > > On Tue, 2002-10-01 at 21:42, Colin Watson wrote: > > > > Keep it simple and realize that this level of 'make' use is not all

Re: KDE2 helloworld.cpp

2002-10-01 Thread Earl F Hampton
LIBS = -lqt -lkdecore works for me. On Tuesday 01 October 2002 03:51 am, John Batistic wrote: > On Tue, 2002-10-01 at 21:42, Colin Watson wrote: > > On Tue, Oct 01, 2002 at 09:31:10PM +1200, John Batistic wrote: > > > On Tue, 2002-10-01 at 21:06, Colin Watson wrote: > > > > On Tue, Oct 01, 2002

Re: KDE2 helloworld.cpp

2002-10-01 Thread Colin Watson
On Tue, Oct 01, 2002 at 10:51:12PM +1200, John Batistic wrote: > On Tue, 2002-10-01 at 21:42, Colin Watson wrote: > > Keep it simple and realize that this level of 'make' use is not all that > > magic. '-I$(INCLUDES)' doesn't work because it expands to > > '-I-I/usr/share/qt/include -I/etc/kde2/in

Re: KDE2 helloworld.cpp

2002-10-01 Thread John Batistic
On Tue, 2002-10-01 at 21:42, Colin Watson wrote: > On Tue, Oct 01, 2002 at 09:31:10PM +1200, John Batistic wrote: > > On Tue, 2002-10-01 at 21:06, Colin Watson wrote: > > > On Tue, Oct 01, 2002 at 08:54:34PM +1200, John Batistic wrote: > > > > INCLUDES= -I/usr/share/qt/include -I/etc/kde2/include

Re: KDE2 helloworld.cpp

2002-10-01 Thread John Schmidt
On Tuesday 01 October 2002 02:54 am, John Batistic wrote: > INCLUDES= -I/usr/share/qt/include -I/etc/kde2/include Are you absolutely positive that the qt includes are in /usr/share/qt/include?? On my system, I have them in /usr/include/qt: jas@golden:~$ locate qlabel.h /usr/include/qt/qlabel.h

Re: KDE2 helloworld.cpp

2002-10-01 Thread Colin Watson
On Tue, Oct 01, 2002 at 09:31:10PM +1200, John Batistic wrote: > On Tue, 2002-10-01 at 21:06, Colin Watson wrote: > > On Tue, Oct 01, 2002 at 08:54:34PM +1200, John Batistic wrote: > > > INCLUDES= -I/usr/share/qt/include -I/etc/kde2/include > > > CFLAGS= -pipe -02 -fno-strength-reduce > > > LFLAGS

Re: KDE2 helloworld.cpp

2002-10-01 Thread John Batistic
On Tue, 2002-10-01 at 21:06, Colin Watson wrote: > On Tue, Oct 01, 2002 at 08:54:34PM +1200, John Batistic wrote: > > INCLUDES= -I/usr/share/qt/include -I/etc/kde2/include > > CFLAGS= -pipe -02 -fno-strength-reduce > > LFLAGS= -L/usr/share/qt/lib/ -L/usr/lib/kde2/lib -L/usr/X11R6/lib > > LIBS= -lq

Re: KDE2 helloworld.cpp

2002-10-01 Thread Colin Watson
On Tue, Oct 01, 2002 at 08:54:34PM +1200, John Batistic wrote: > INCLUDES= -I/usr/share/qt/include -I/etc/kde2/include > CFLAGS= -pipe -02 -fno-strength-reduce > LFLAGS= -L/usr/share/qt/lib/ -L/usr/lib/kde2/lib -L/usr/X11R6/lib > LIBS= -lqt -lX11 -ltext > CC=g++ > > helloworld: helloworld.o >

Re: KDE2 helloworld.cpp

2002-10-01 Thread John Batistic
On Tue, 2002-10-01 at 14:54, Sean 'Shaleh' Perry wrote: > On Monday 30 September 2002 18:26, John Batistic wrote: > > > > > > You do not state so let's start at the beginning. > > > > > > Do you have the -dev version of the kdelibs as well as qt installed? > > > Rather than depend on environment

Re: KDE2 helloworld.cpp

2002-09-30 Thread Brian Nelson
Craig Dickson <[EMAIL PROTECTED]> writes: > Brian Nelson wrote: > >> Tom Cook <[EMAIL PROTECTED]> writes: >> >> > No, it's not worth it. I was just looking at the g++ man page that >> > lists .cc and .cxx but not .cpp. >> >> Huh? I see: >> >> C++ source files use one of the suffixes `.C',

Re: KDE2 helloworld.cpp

2002-09-30 Thread Tom Cook
On 0, Brian Nelson <[EMAIL PROTECTED]> wrote: > Tom Cook <[EMAIL PROTECTED]> writes: > > > On 0, Sean 'Shaleh' Perry <[EMAIL PROTECTED]> wrote: > >> On Monday 30 September 2002 19:04, Tom Cook wrote: > >> > #include > >> > #include > >> > #include > >> > > >> > then you should be able to com

Re: KDE2 helloworld.cpp

2002-09-30 Thread Craig Dickson
Brian Nelson wrote: > Tom Cook <[EMAIL PROTECTED]> writes: > > > No, it's not worth it. I was just looking at the g++ man page that > > lists .cc and .cxx but not .cpp. > > Huh? I see: > > C++ source files use one of the suffixes `.C', `.cc', `.cxx', `.cpp', > or `.c++'; preprocessed C++

Re: KDE2 helloworld.cpp

2002-09-30 Thread Brian Nelson
Tom Cook <[EMAIL PROTECTED]> writes: > On 0, Sean 'Shaleh' Perry <[EMAIL PROTECTED]> wrote: >> On Monday 30 September 2002 19:04, Tom Cook wrote: >> > #include >> > #include >> > #include >> > >> > then you should be able to compile with: >> > >> > g++ -c -o helloworld.o helloworld.cpp >> > >

Re: KDE2 helloworld.cpp

2002-09-30 Thread Tom Cook
On 0, Sean 'Shaleh' Perry <[EMAIL PROTECTED]> wrote: > On Monday 30 September 2002 19:04, Tom Cook wrote: > > #include > > #include > > #include > > > > then you should be able to compile with: > > > > g++ -c -o helloworld.o helloworld.cpp > > > > Note also that the usual (proper?) way of nami

Re: KDE2 helloworld.cpp

2002-09-30 Thread Sean 'Shaleh' Perry
On Monday 30 September 2002 19:04, Tom Cook wrote: > #include > #include > #include > > then you should be able to compile with: > > g++ -c -o helloworld.o helloworld.cpp > > Note also that the usual (proper?) way of naming C++ source is *.cc or > *.cxx, not *.cpp like M$ do. > > Tom actually

Re: KDE2 helloworld.cpp

2002-09-30 Thread Tom Cook
On 0, John Batistic <[EMAIL PROTECTED]> wrote: > I am unable to compile the KDE2 helloworld.cpp example > > error message from make: > > g++-c -o helloworld.o helloworld.cpp > helloworld.cpp:2: qapplication.h: No such file or directory > helloworld.cpp:3: qlabel.h: No such file or directory

Re: KDE2 helloworld.cpp

2002-09-30 Thread Tom Cook
On 0, Sean 'Shaleh' Perry <[EMAIL PROTECTED]> wrote: > On Monday 30 September 2002 16:55, John Batistic wrote: > > I am unable to compile the KDE2 helloworld.cpp example > > > > error message from make: > > > > g++-c -o helloworld.o helloworld.cpp > > helloworld.cpp:2: qapplication.h: No such

Re: KDE2 helloworld.cpp

2002-09-30 Thread Sean 'Shaleh' Perry
On Monday 30 September 2002 16:55, John Batistic wrote: > I am unable to compile the KDE2 helloworld.cpp example > > error message from make: > > g++-c -o helloworld.o helloworld.cpp > helloworld.cpp:2: qapplication.h: No such file or directory > helloworld.cpp:3: qlabel.h: No such file or dir

Re: KDE2 X display security

2001-07-29 Thread Philipp Lehman
On Sat, 28 Jul 2001, Karsten M. Self wrote: >emacs also runs in a non-X mode, though damned if I can remember the >arguments. It's emacs -nw... -- Philipp Lehman <[EMAIL PROTECTED]>

Re: KDE2 X display security

2001-07-28 Thread Karsten M. Self
on Sat, Jul 28, 2001 at 12:21:14AM -0700, Ross Boylan ([EMAIL PROTECTED]) wrote: > If I open a terminal and su, I find I'm unable to open additional > displays (e.g., > su > emacs & > ). > > If I change to a regular terminal and do xhost + then the emacs & as > root works. Don't do that. $

Re: KDE2 X display security

2001-07-28 Thread Andy Saxena
On Saturday July 28 2001 14:05, Ross Boylan wrote: > I'm looking for a configuration file setting so that I won't need to > type that command every time I start. > > On Sat, Jul 28, 2001 at 03:55:36PM +0200, Philipp Lehman wrote: > > On Sat, 28 Jul 2001, Ross Boylan <[EMAIL PROTECTED]> wrote: > > >

Re: KDE2 X display security

2001-07-28 Thread Ross Boylan
I'm looking for a configuration file setting so that I won't need to type that command every time I start. On Sat, Jul 28, 2001 at 03:55:36PM +0200, Philipp Lehman wrote: > On Sat, 28 Jul 2001, Ross Boylan <[EMAIL PROTECTED]> wrote: > > >If I change to a regular terminal and do xhost + then the e

Re: KDE2 X display security

2001-07-28 Thread Philipp Lehman
On Sat, 28 Jul 2001, Ross Boylan <[EMAIL PROTECTED]> wrote: >If I change to a regular terminal and do xhost + then the emacs & as >root works. Are you looking for "xhost +local:"? -- Philipp Lehman <[EMAIL PROTECTED]>

Re: kde2 is running 1600x1200

2001-07-22 Thread Christoph Schaefer
Salut, On Sun, Jul 22, 2001 at 01:46:48AM +0200, Markus Hansen wrote: > hi my debian gnu/linux 2.2 potato > uses kde2 only with 1600x1200 display. > everything is small and bad to read, > so i would like to change solution to 1024x768, but how can i do that? Not kde2 runs only with 1600x1200 resol

Re: kde2

2001-07-16 Thread Mart van de Wege
On Fri, 13 Jul 2001 13:49:24 -0500 "Kevin C. Smith" <[EMAIL PROTECTED]> wrote: > Installed KDE2 for the first time. Initially all was fine. After later > restarting the xserver only three fonts are available to KDE. Looks bad. > Been trying to figure this out. > > What happened? How do I fix thi

Re: kde2 and wmdockapps

2001-07-15 Thread Andy Saxena
Absolutely! "Dock Application Bar" can be accessed from Panel => Add => Extension menu. There is a bug that may not allow you to display all your dockapps. You can resolve this by writing a startup script that will launch your dockapps. -Andy On Sunday July 15 2001 17:31, Jonathan Daugherty wr

Re: kde2

2001-07-14 Thread Kevin C. Smith
On Sun, Jul 15, 2001 at 01:15:57AM +0800, csj wrote: > On Saturday 14 July 2001 02:49, Kevin C. Smith wrote: > > Installed KDE2 for the first time. Initially all was fine. After > > later restarting the xserver only three fonts are available to KDE. > > Looks bad. Been trying to figure this out. >

Re: kde2

2001-07-14 Thread csj
On Saturday 14 July 2001 02:49, Kevin C. Smith wrote: > Installed KDE2 for the first time. Initially all was fine. After > later restarting the xserver only three fonts are available to KDE. > Looks bad. Been trying to figure this out. > > What happened? How do I fix this? File a bug report? Serio

Re: kde2

2001-05-02 Thread Hans
I believe there were only rpm's on that disk, and they suggested to build it yourself from source for other distro's. I didn't buy it. Go for apt-sources. --Hans P.S. for the unenlightened, Linux Format is a UK magazine also sold in Holland in bigger bookstores. At 04:06 PM 5/2/01 +0100, David Ri

Re: kde2

2001-05-02 Thread Sean Quinlan
* Jaye Inabnit ke6sls <[EMAIL PROTECTED]> (2001-05-02 17:25): > On Wednesday 02 May 2001 08:06, David Richards wrote: > > I have just got linux format in the uk and it has kde2.1 on the cd. Has > > anyone installed it yet and will i be able to get any packages that it will > > needs, that arent inc

Re: kde2

2001-05-02 Thread Jaye Inabnit ke6sls
Hello David, Linux format? Maybe you mean linux *distro*? kde2 afaik doesn't ship with debian (but anyone could if they wanted to). The latest potato builds are available, go to http://kde.debian.net and it will tell you how to set your apt source.list up. I'm using it now, and it still h

Re: KDE2 install - Fixed + ?

2001-02-26 Thread John Mautz
All thanks for the help. I got it working by adding the kde.tdyc.com/pub/dke and doing the following: apt-get update apt-get install kdebase I had to issue a dpkg --configure -a as I got a segfalt. But it must have recoverd correctly as I'm using Netscape under KDE to send this. :) My impress

Re: KDE2 install

2001-02-26 Thread Rob VanFleet
On Sun, Feb 25, 2001 at 04:26:32PM -0800, John Mautz wrote: > As pointed out by hogan, there is no security.debian.org for testing/woody. Yes, but those running testing still have a sizable portion of packages from stable/potato that security.debian.org is needed to update. -Rob

Re: KDE2 install

2001-02-26 Thread Rob VanFleet
As I understand it, security.debian.org is still useful if you're running testing, since someone running testing still has some packages from potato. Unstable gets security fixes simply from regular upgrades while those using testing would normally have to wait for the packages to stabalize before

Re: KDE2 install

2001-02-25 Thread Francois Gouget
On Sun, 25 Feb 2001, Daniel Jones wrote: [...] > And, as has already been pointed out, get > security.debian.org added as well. Yes, except that the given line was wrong and that, AFAIK, there is no security updates for testing anyway! -- Francois Gouget [EMAIL PROTECTED]http:

Re: KDE2 install

2001-02-25 Thread John Mautz
> Okay, I added - > > Add: > > ftp://kde.tdyc.com/pub/kde potato main crypto optional > qt1apps > And now I get a message stating that task-kde depends on kview and is not going to be installed. So, I did an ap-get install kview and kview depends on tetex-lib (>= 1.0.6-7). Okay, I try an apt-get

Re: KDE2 install

2001-02-25 Thread hogan
> ftp://security.debian.org/debian testing main non-free contrib I thought security only had stable? Took a peek... Seems it does have more.. HOWEVER.. There is no ftp://security.debian.org/debian There is ftp://security.debian.org/debian-security potato|sid|slink|stable There is http://security.

Re: KDE2 install

2001-02-25 Thread Daniel Jones
On Sun, 25 Feb 2001 14:50:31 -0800, John Mautz <[EMAIL PROTECTED]> wrote: >I have a woody system running xfree 4.0.2 and want to give KDE a try but >can't find the KDE package. > >I checked the archives and tried 'apt-get install task-kde' but I get >the following message: > >"Package task-kde has

Re: KDE2 install

2001-02-25 Thread John Griffiths
> >I figure I need to add the a location to sources.list but don't know >which site to add. (Currently apt-get is >looking in: > >ftp://ftp.us.debian.org/debian testing main non-free contrib >ftp://ftp.debian.org/debian testing main non-free contrib > for gods sake get ftp://security.debian.org

Re: kde2 screen is wht w/ no icons help!!!

2001-02-24 Thread Jaye Inabnit ke6sls
Nick, This was pointed out on the debian-kde list. Run dselect - update your list and follow the rest of the menu. after that. log back into kde, should be mo-better. On Friday 23 February 2001 16:23, Nick Barron wrote: > hello, > > I recently updated my box with: > apt-get update > apt-get u

Re: KDE2

2001-02-08 Thread wujf
On Tue, Feb 06, 2001 at 12:44:25AM +1100, Renai wrote: > > > and secondly, Red Hat has a boot utility named 'SysVinit' for managing > the bootup services. Does Debian have anything similar? man update-rc.d Good Luck!

Re: KDE2

2001-02-05 Thread John Galt
On Mon, 5 Feb 2001, Tibor D. wrote: >Renai wrote: > >> Hi, >> >> just a couple of questions - >> >> could someone tell me the apt-get command for installing kde2 on my >> woody machine? I've just installed woody but can't find the package name >> that indicates kde2. >> >> I had thought that it wa

Re: KDE2

2001-02-05 Thread John Galt
On Tue, 6 Feb 2001, Renai wrote: >Hi, > >just a couple of questions - > >could someone tell me the apt-get command for installing kde2 on my >woody machine? I've just installed woody but can't find the package name >that indicates kde2. I'd go with task-kde >I had thought that it was part of the

Re: KDE2

2001-02-05 Thread Tibor D.
Renai wrote: Hi, just a couple of questions - could someone tell me the apt-get command for installing kde2 on my woody machine? I've just installed woody but can't find the package name that indicates kde2. I had thought that it was part of the unstable tree somewhere. Yes, kde2 is part of

Re: KDE2

2001-02-05 Thread Warren Turkal
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 05 February 2001 07:44, Renai wrote: > could someone tell me the apt-get command for installing kde2 on my > woody machine? I've just installed woody but can't find the package name > that indicates kde2. apt-get install task-kde > and seco

Re: KDE2 and login screen blanking

2001-01-17 Thread David B . Harris
To quote [EMAIL PROTECTED] (Dean Allen Provins), # Hello: # # I have KDE2 as the X display manager using an ATI rage128 card, but # cannot get the login screen to blank. # # I've set xset to 10 minutes, but nothing happens at the end of the # interval. 'xset' only works for the current X session

Re: KDE2 packages not showing up

2001-01-05 Thread Jeronimo Pellegrini
On Fri, Jan 05, 2001 at 05:01:53PM -0600, Charles Lewis wrote: > My sources.list is: > deb http://http.us.debian.org/debian woody main contrib non-free ^ > deb http://non-us.debian.org/debian-non-US unstable/non-US main contrib

Re: kde2

2000-12-20 Thread Jesse Goerz
http://kde.tdyc.com On Tue, 19 Dec 2000 14:47:18 Dale Kosan wrote: > Hello,have been trying to install kde2 but apt keeps telling me I have > an error in line 28.I put the line in that I seen posted here but no > go.Can someone post the line or point me to the site where I can find > out how to co

Re: KDE2 on potato

2000-12-19 Thread Cajus Pollmeier
Am Dienstag, 19. Dezember 2000 00:43 schrieb Matthew Dalton: > Cajus Pollmeier wrote: > > Hi! > > > > Just upgraded KDE2 on a potato machine. Now "startx" or "kdm" don't work > > claiming: > > > > ksplash: error in loading shared libraries: /usr/lib/libkdecore.so.3: > > undefined symbol: getButtonS

Re: KDE2 on potato

2000-12-18 Thread Matthew Dalton
Cajus Pollmeier wrote: > > Hi! > > Just upgraded KDE2 on a potato machine. Now "startx" or "kdm" don't work > claiming: > > ksplash: error in loading shared libraries: /usr/lib/libkdecore.so.3: > undefined symbol: getButtonShift__14QPlatinumStyleRiT1 You're probably missing the /usr/lib/libkdec

Re: Re: KDE2-where

2000-12-14 Thread jfclisham
Eileen, Does your Konqueror recognize your Netscape Plugins? Thanks John > > From: Eileen Orbell <[EMAIL PROTECTED]> > Date: Thu, 14 Dec 2000 13:33:52 -0500 > To: debian-user@lists.debian.org > CC: [EMAIL PROTECTED] > Subject: Re: KDE2-where > > Try this: >

Re: KDE2-where

2000-12-14 Thread Eileen Orbell
Try this: add this to your sources.list deb http://kde.tdyc.com potato main qt1apps optional crypto apt-get install task-kde That is what I did last week and it installed nicely for me :-) At 09:23 AM 12/14/2000 -0800, you wrote: Hello,I was wondering what you add to the apt.conf to download K

Re: kde2

2000-12-04 Thread Jesse Goerz
On Sunday 03 December 2000 19:12, Eileen Orbell wrote: > Anyone know where to get kde2.deb from? I added to my sources-list the > line shown on the kde website: > debian-user@lists.debian.org > deb http://kde.tdyc.com potato kde2 > But this returns errors.. This error is the key! Either the web

Re: kde2

2000-12-04 Thread Daniel de los Reyes
As posted by Ivan last week, The APT format HAS changed. :) deb http://kde.tdyc.com potato main qt1apps optional crypto main = kde 2 + kde2 based apps qt1apps = qt1 based apps and kde 1.1.2 crypto = kdebase-crypto and kdelibs-crypto ... + libssl096  (pretty much i

Re: kde2

2000-12-03 Thread Nate Amsden
Eileen Orbell wrote: > > Anyone know where to get kde2.deb from? I added to my sources-list the > line shown on the kde website: > debian-user@lists.debian.org > deb http://kde.tdyc.com potato kde2 > But this returns errors.. > Failed to fetch ftp://kde.tdyc.com/dists/potato/kde2/binary-i386/Pack

Re: KDE2 installation

2000-11-25 Thread Rogerio Brito
On Nov 24 2000, Ethan Benson wrote: > yes, downloading .debs is not the right way to manage a debian > system Indeed, that's not the easiest/best way. But now that he has already downloaded a bunch of files, he can save some effort (especially if he is using a modem) and

Re: KDE2 installation

2000-11-25 Thread Ethan Benson
On Sat, Nov 25, 2000 at 12:25:44AM -0500, Seung-woo Nam wrote: > I downloaded all deb files for kde2 from kde2 mirror ftp server. However, > when I tried to install packages, I got whole bunch of dependency errors. Can > I just put the ftp path in /etc/apt/sources.list file and apt-get would take

Re: KDE2

2000-11-16 Thread Robert Guthrie
There's a new kde mailing list (debian-kde), which is mostly for developers, but just lurking on that list will let you in on anything that might concernt a kde user. Currently, they've uploade new packages for kde libraries and some programs, but not all, and this is causing some people troubl

Re: KDE2

2000-11-16 Thread Rogelio E. Castillo Haro
Yes Joshua, It is: deb http://kde.tdyc.com stable kde2 (this is for potato) Joshua David Kruck wrote: > can some one tell me the line for apt-sources for kde2? > thanks > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null -- Rogelio E. Castillo

Re: KDE2 problems

2000-11-06 Thread Norris Preyer
> "Daniel" == Daniel Borgmann <[EMAIL PROTECTED]> writes: > hello! i installed the kde2 debs and everthing worked fine. > then i made an update and now i can't start it at all. the > output in .xsession-error is: *snip* ksplash: error in loading > shared libraries: /usr/lib/l

Re: KDE2 install steps

2000-11-01 Thread Andrew Dixon
Joel Dinel wrote: So I've downloaded all of KDE2's .deb files instead of fiddling around with sources.list. trust me, it's worth it to fiddle around with the sources.list (shouldn't be too hard just keep at it untill it works, you'll get it) because after that's done you just type: #apt-g

Re: KDE2 installation

2000-11-01 Thread Todd_La_Pittus
A. Witt" <[EMAIL PROTECTED]> To: Debian User cc: (Todd La Pittus/HQ/3Com) Subject: Re: KDE2 installation How is KDE 2.0 working? Is it ready for general use now, or still more in beta form? Thanks... -- Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null

Re: KDE2 installation

2000-11-01 Thread Stephen A. Witt
How is KDE 2.0 working? Is it ready for general use now, or still more in beta form? Thanks...

Re: KDE2 installation

2000-11-01 Thread guran remberg
Joshua Kruck wrote: > > > > Along These same lines what can i use for a entry in the sources.list file to > get kde2? I have > been trying to get it to work and i have had no luck. > Thanks > Joshua > > > > > Subject: KDE2 installation Hi I am a newbie, so I can not tell you why, only what I did

Re: KDE2 installation

2000-11-01 Thread Joshua Kruck
> Along These same lines what can i use for a entry in the sources.list file to get kde2? I have been trying to get it to work and i have had no luck. Thanks Joshua > > Subject: KDE2 installation > Date: Wed, 1 Nov 2000 04:15:57 + (WET) > From: sena <[EMAIL PROTECTED]> > To: debian-user@list

Re: KDE2 installation

2000-10-31 Thread Bob Nielsen
You have to run [U]pdate in dselect before any new listings will show up, even if you have done "apt-get update". Bob On Wed, Nov 01, 2000 at 04:15:57AM +, sena wrote: > Hi... I'm planning on installing KDE2 in my potato system. I have the entry > in the sources.list file, and I've made "apt-

Re: KDE2 -aria

2000-10-31 Thread brian moore
On Tue, Oct 31, 2000 at 09:18:37PM +, Colin Watson wrote: > Leen Besselink <[EMAIL PROTECTED]> wrote: > >Yes, that is ONE person doing the packaging for KDE2 (ofcourse KDE2 is > >not a one-man show), he just 'resinged' though, because ONE person out > >there said bad things to him. > > Hmm - I

Re: KDE2 -aria

2000-10-31 Thread Bob Bernstein
> "LB" == Leen Besselink <[EMAIL PROTECTED]> writes: LB> Everything I saw should be taken lightly first off Fair enough. Unfortunately, there are too many days when I cannot say the same! LB> *crawling back to where he came from* That sounds a tad extreme, wouldn't you say? Ok, I g

Re: KDE2 -aria

2000-10-31 Thread Leen Besselink
On 31 Oct 2000, Bob Bernstein wrote: > > Perhaps it was unintentional, but the "sound" of this sentence rubs me Everything I saw should be taken lightly first off, I have a Very bad memory and secondly my english 'looks quiet' good, but a lot of the times I don't get the details right. So I'll s

Re: KDE2 -aria

2000-10-31 Thread Bob Bernstein
rkrusty can speak for himself...BUT > "LB" == Leen Besselink <[EMAIL PROTECTED]> writes: LB> Yes, that is ONE person doing the packaging for KDE2 (ofcourse LB> KDE2 is not a one-man show), he just 'resinged' though, LB> because ONE person out there said bad things to him. Perhap

Re: KDE2 -aria

2000-10-31 Thread Leen Besselink
> Hmm - I see the front page of http://kde.tdyc.com/, but on balance the > discussion on http://dot.kde.org/971680096/ seems to suggest that he's > going to keep doing work on potato for a while longer. I have a message > on debian-devel from Ivan Moore less than three hours ago which talks > about

Re: KDE2 -aria

2000-10-31 Thread Colin Watson
Leen Besselink <[EMAIL PROTECTED]> wrote: >Yes, that is ONE person doing the packaging for KDE2 (ofcourse KDE2 is >not a one-man show), he just 'resinged' though, because ONE person out >there said bad things to him. Hmm - I see the front page of http://kde.tdyc.com/, but on balance the discussion

Re: KDE2 -aria

2000-10-31 Thread Leen Besselink
On Tue, 31 Oct 2000, guran remberg wrote: > What a fantastic program this apt-get is, I am now writing this in KDE2. > I just added deb http://kde.tdyc.com potato.kde2 to my > /etc/apt/sources.list and wow. > > Who ever you are, tdyc, many thanks. That WindowManager I was having was > clearly stu

Re: KDE2 dependence problem

2000-10-29 Thread Maciej Kalisiak
On Fri, Oct 27, 2000 at 07:14:14AM -0400, Peter Fedichev wrote: > I have seen a couple of "I have installed KDE2" reports here. How have > you managed, since .debs on ftp.kde.org seem to require libgl1? Hi, I've installed the 2.0-final debs of kdyc (see other posts on what apt.sources line to use

Re: KDE2 source build sequence

2000-10-28 Thread Alvin Smith
I get a "syntax error before '(' " when I try to compile Qt2. Anybody else getting that? Matthias Rosenkranz wrote: > On Sat, 28 Oct 2000, Thomas J. Hamman wrote: > > > From: Thomas J. Hamman <[EMAIL PROTECTED]> > > Date: Sat, 28 Oct 2000 08:01

Re: KDE2 source build sequence

2000-10-28 Thread Matthias Rosenkranz
On Sat, 28 Oct 2000, Thomas J. Hamman wrote: > From: Thomas J. Hamman <[EMAIL PROTECTED]> > Date: Sat, 28 Oct 2000 08:01:08 -0400 > Subject: Re: KDE2 source build sequence > > On Sat, Oct 28, 2000 at 10:27:52AM +0100, Robin Collins wrote: > > Can someone tell me

Re: KDE2 source build sequence

2000-10-28 Thread Thomas J. Hamman
On Sat, Oct 28, 2000 at 10:27:52AM +0100, Robin Collins wrote: > Can someone tell me the order in which the KDE2 source packages should be > built? With Gnome there's a page on their web site listing the package > order and using this I fired up Gnome with only one minor glitch. With KDE2 > thoug

Re: KDE2 dependence problem

2000-10-27 Thread Damon Muller
Quoth Peter Fedichev, > I have seen a couple of "I have installed KDE2" reports here. How have > you managed, since .debs on ftp.kde.org seem to require libgl1? I used the following line in my apt sources.list deb http://kde.tdyc.com potato kde2 Then I did an apt-get install on all the task-kde

Re: KDE2 dependence problem

2000-10-27 Thread Kristian Rink
On Fri, 27 Oct 2000 19:49:13 +0200 (MEST) Bjoern Brill <[EMAIL PROTECTED]> wrote: > libgl1 is a "virtual" package, provided by several conflicting variants of > the mesa library (an OpenGL clone). Unless you have very special video > hardware or use the experimental XFree 4, you'll want to install

Re: KDE2 dependence problem

2000-10-27 Thread Bjoern Brill
On Fri, 27 Oct 2000, Peter Fedichev wrote: > Hello, > > I have seen a couple of "I have installed KDE2" reports here. How have > you managed, since .debs on ftp.kde.org seem to require libgl1? > > Thanks in advance > libgl1 is a "virtual" package, provided by several conflicting variants of th

Re: KDE2 dependence problem

2000-10-27 Thread Todd_La_Pittus
La Pittus/HQ/3Com) Subject: Re: KDE2 dependence problem On Fri, 27 Oct 2000, Peter Fedichev wrote: > Hello, > > I have seen a couple of "I have installed KDE2" reports here. How have > you managed, since .debs on ftp.kde.org seem to require libgl1? > > Thanks in

Re: KDE2 dependence problem

2000-10-27 Thread Todd_La_Pittus
I just completed installing the other day- works great! //Todd P.S. Needed to change my /etc/apt/sources.list to point to woody's unstable stuff instead of the stable archives... Peter Fedichev <[EMAIL PROTECTED]> on 10/27/2000 04:14:14 AM Sent by: Peter Fedichev <[EMAIL PROTECTED]>

Re: KDE2 dependence problem

2000-10-27 Thread Jeff Green
I've had rather better luck, KDE2 went straight onto my storm box with the exception of the sign-on box at the beginning needing to change which system to pick, konqueror won't run Java stuff but that apart seems nice and stable. Jeff Mario Olimpio de Menezes wrote: > > On Fri, 27 Oct 2000, Antho

Re: KDE2 dependence problem

2000-10-27 Thread Mario Olimpio de Menezes
On Fri, 27 Oct 2000, Anthony Fox wrote: > kde2 is another story though. kde2 apps seem to be crashing on me left > and right. Within 5 min of starting up, the little kde2 clipboard app > crashes and pops up an annoying segfault warning window. Then, every time > I exit an app from within the kd

Re: KDE2 dependence problem

2000-10-27 Thread romeu
I am experiencing KDE2 crashes, too. I got a few crashes in the Control Center. It looks like win. At least, you can kill the app without rebooting. Hope they fix these problems. Anthony Fox wrote: > > On Fri, 27 Oct 2000, Peter Fedichev wrote: > > > Hello, > > > > I have seen a couple of "I

Re: KDE2 dependence problem

2000-10-27 Thread Manegold
Anthony Fox wrote: > > On Fri, 27 Oct 2000, Peter Fedichev wrote: > > > Hello, > > > > I have seen a couple of "I have installed KDE2" reports here. How have > > you managed, since .debs on ftp.kde.org seem to require libgl1? > > > > Thanks in advance > > > > I apt-got kde2 debs from http://kde.

Re: KDE2 dependence problem

2000-10-27 Thread Anthony Fox
On Fri, 27 Oct 2000, Peter Fedichev wrote: > Hello, > > I have seen a couple of "I have installed KDE2" reports here. How have > you managed, since .debs on ftp.kde.org seem to require libgl1? > > Thanks in advance > I apt-got kde2 debs from http://kde.tdyc.com. It installed without a hitch o

Re: Kde2 crashing and debugging

2000-10-16 Thread Aaron Brashears
You could do an apt-get source ... and then do a dpkg-buildpackage to build your own binary debs with debugging info. I've never done it myself, so I can't give you any pointers, but it should be possible. Alwyn Schoeman wrote: > Could we please build the kde2 .debs with debugging enabled so > tha

Re: kde2 problem

2000-10-13 Thread Michael Epting
On Fri, Oct 13, 2000 at 11:26:07AM -0400, Andy Bastien wrote: > I've installed KDE2 from Debian's servers, but I haven't had much luck > getting it running. What happens, basically, is kicker dies with a > signal 11 almost as soon as it starts up (the status indicator is on > "Restoring session").

Re: kde2 problem

2000-10-13 Thread Michael Epting
On Fri, Oct 13, 2000 at 11:26:07AM -0400, Andy Bastien wrote: > I've installed KDE2 from Debian's servers, but I haven't had much luck > getting it running. What happens, basically, is kicker dies with a > signal 11 almost as soon as it starts up (the status indicator is on > "Restoring session").

Re: kde2 for potato

2000-09-27 Thread Jesse Goerz
KDE2 is only available for woody, however, just add this to your /etc/apt/sources.list file and you should be able to get what you need. <---add this to /etc/apt/sources.list---> deb http://http.us.debian.org/debian woody main contrib non-free # You may have to add this as well for some of the de

Re: KDE2 for potato

2000-09-27 Thread Marc Maute
hi, I have buy a german debian potato box and they tell in the box that kde2.0 beta and koffice is inside I think i musst call the german guys, or Marc -- Sent through GMX FreeMail - http://www.gmx.net

Re: KDE2 for potato

2000-09-25 Thread Jesse Goerz
KDE2 is only available for woody, however, just add this to your /etc/apt/sources.list file and you should be able to get what you need. <---add this to /etc/apt/sources.list---> deb http://http.us.debian.org/debian woody main contrib non-free # You may have to add this as well for some of the de

Re: KDE2 for potato

2000-09-24 Thread Bruce Sass
On Sun, 24 Sep 2000, Marc Meier wrote: > I am looking for qt2.2/ kde2 binaries for potato. http://kde.tdyc.com/Debian/ will get you sources.list entries for apt ftp://kde.tdyc.com/pub/kde/debian/dists/potato/kde2 for a more direct approach > I have still visited the usual resources for KDE-debs

Re: kde2 window manager

2000-09-13 Thread Dirk Schreiber
> On Thu, 7 Sep 2000 09:58:09 -0300 (BRT), Mario Olimpio de Menezes <[EMAIL > PROTECTED]> said: Hello, Mario> I've installed kde2packages for potato (before Qt went Mario> GPL). Almost everything is working fine, except I'm not being able Mario> to start kwm either from kdm

Re: KDE2 debs from TDYC

2000-08-24 Thread Michael Epting
A quick update: shortly after posting my original questions last weekend, new KDE2 .debs were made available on tdyc -- these solved the problems I had been having. I noted this morning (8/24) that yet again new ones were up -- these also work fine. If you don't need KDE for real work and want t

Re: KDE2 debs from TDYC

2000-08-24 Thread Noah L. Meyerhans
-BEGIN PGP SIGNED MESSAGE- On 23 Aug 2000, Ian Zimmerman wrote: > Hmmm. I installed KDE for the first time this last weekend, and it > pretty much works outta the box (including the panel, which I have > immediately auto-hidden :) Are you sure you installed kde2? What's your apt-source

Re: KDE2 debs from TDYC

2000-08-24 Thread Ian Zimmerman
> "Michael" == Michael Epting <[EMAIL PROTECTED]> writes: Michael> There have been some new .debs made available from tdyc the Michael> last couple of days. These *almost* work for me, unlike the Michael> ones available before yesterday. If anybody else is Michael> successfully using these,

Re: KDE2 error loading libkofficeui

2000-08-08 Thread Kent West
Moritz Schulte wrote: > > On Tue, Aug 08, 2000 at 10:47:19AM -0500, Kent West wrote: > > > I've just installed KDE2 and KOffice from > > "http://spidermonkey.helixcode.com/evolution/distributions/Debian > > ./". > > are you sure? ;) > > moritz Oops; copy/pasted wrong line: "ftp://kde.tdyc

  1   2   >