Re: speed of transfer

2002-04-09 Thread m.w.Chang

snmp... do I need special steps to get it working?

As long as things can be set up without too much headache, I don't mind 
adventuring with new products.

Matthew Carpenter wrote:
 It may be a bit bigger than what you need, but I have to take a moment and
 plug OpenNMS.  It's a very well done Network Management System that
 collects data using SNMP and service polling, providing a simple yet
 

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: procmail, day 2

2002-04-09 Thread m.w.Chang

I need a few nights before firing another volley of questions.  The 
errors were all related to word-wrapping and cut-and-paste.

I have turned off all locks in the /etc/procmailrc. I am going to add 
even more new rules 

Matthew Carpenter wrote:
 what does you config look like?  Do the first lines of each rule make
 sense?  Or does procmail think you are listing two lock files? You can
 typically go without the lockfiles.
 

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



boot

2002-04-09 Thread jujar

I am now using dual boot for using Linux and W2K on same machine. But on
booting, option for both the OS is shown of it, one can select any of it and
go to any OS.

Now the W2K can be started in safe mode-command prompt so anyone can tamper
with files in the system.

I want to do such that when the the boot-up screen for selecting OS should
contain any string or logo or anything so that one knows that he/she has
reached to the boot up screen and also if the chioce is not done for some
time , it is automatically booted up using the default OS.

But the selection of the OS can be done only by pressing some combination of
keys which is not reflected to be true or false, as done in command prompt
of linux.

In advance, Thankx for help .

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



RE: QT Install problems

2002-04-09 Thread Brian Witowski

I haven't seen all of this thread but thought I'd share some of the issues
I've had with installing QT 3.0.3.

Make ./configure went off without a hitch, as did Make.  But when I
attempted Make Install I got No rule to make target ../linux-g++/qmake.conf
needed by Makefile'

After looking in linux-g++, there was NO qmake.conf.

So I started from scratch.  But first I made a copy of qmake.conf.  Then
tried it again.  After doing a Make then Make Install I checked for
../linux-g++ and again the qmake.conf was gone.  So I put the copy back
there and tried it again.  Same thing, except the error message was the only
text in the qmake.conf file!  On a whim I did a make clean before doing a
make (maybe not a good idea.  I was willing to try anything).  Then I put
fresh copies of qmake.conf and qplatformdefs.h in ../linux-g++/ and then did
a make install once again.  This time it finished without error, although it
took hours, literally.  However when I attempted to install Kmyfirewall, it
errored out saying that Qt = 3.0.2 ( library qt-mt) not found.

Thats where it is now.

Brian

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Douglas J Hunley
 Sent: Monday, April 08, 2002 6:42 PM
 To: [EMAIL PROTECTED]
 Subject: Re: QT Install problems


 On Tuesday 09 April 2002 07:43, Keith Antoine wrote:
  I do not know how they make an rpm of qt but you will find that
 there is no
  way to make install. It is supposed to be compiled to
 /xxx/xxx/kde3 with a
  ./configure --prefix=/usr/lib/kde3 and a make is all thats required so
  checkinstall will bomb out.

 you can run 'checkinstall make' and create an rpm that way.
 according to the
 docs (and the Makefile) there is a 'make install' step. damned if
 I can get
 to work though..
 --
 Douglas J Hunley (doug at hunley.homeip.net) - Linux User #174778
 Admin: Linux StepByStep - http://www.linux-sxs.org
   and http://jobs.linux-sxs.org

 A day without sunshine is like... night.



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: QT Install problems

2002-04-09 Thread Tim Wunder

Hi Brian,
I think the consesus is that a 'make install' is not required. That 
being said, you need to make sure /etc/ld.so.conf contains 
'/usr/lib/qt3/lib' (or whatever directories contain the qt3 libs), then 
run ldconfig to update the libraries once qt3 is installed. 
Alternatively, you can create the environment variable LD_LIBRARY_PATH 
(read this, http://www.visi.com/~barr/ldpath.html) and set it to include 
the path to the qt3 libs.
HTH,
Tim

Brian Witowski wrote:
 I haven't seen all of this thread but thought I'd share some of the issues
 I've had with installing QT 3.0.3.
 
 Make ./configure went off without a hitch, as did Make.  But when I
 attempted Make Install I got No rule to make target ../linux-g++/qmake.conf
 needed by Makefile'
 
 After looking in linux-g++, there was NO qmake.conf.
 
 So I started from scratch.  But first I made a copy of qmake.conf.  Then
 tried it again.  After doing a Make then Make Install I checked for
 ../linux-g++ and again the qmake.conf was gone.  So I put the copy back
 there and tried it again.  Same thing, except the error message was the only
 text in the qmake.conf file!  On a whim I did a make clean before doing a
 make (maybe not a good idea.  I was willing to try anything).  Then I put
 fresh copies of qmake.conf and qplatformdefs.h in ../linux-g++/ and then did
 a make install once again.  This time it finished without error, although it
 took hours, literally.  However when I attempted to install Kmyfirewall, it
 errored out saying that Qt = 3.0.2 ( library qt-mt) not found.
 
 Thats where it is now.
 
 Brian
 
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Douglas J Hunley
Sent: Monday, April 08, 2002 6:42 PM
To: [EMAIL PROTECTED]
Subject: Re: QT Install problems


On Tuesday 09 April 2002 07:43, Keith Antoine wrote:

I do not know how they make an rpm of qt but you will find that

there is no

way to make install. It is supposed to be compiled to

/xxx/xxx/kde3 with a

./configure --prefix=/usr/lib/kde3 and a make is all thats required so
checkinstall will bomb out.

you can run 'checkinstall make' and create an rpm that way.
according to the
docs (and the Makefile) there is a 'make install' step. damned if
I can get
to work though..
--
Douglas J Hunley (doug at hunley.homeip.net) - Linux User #174778
Admin: Linux StepByStep - http://www.linux-sxs.org
  and http://jobs.linux-sxs.org

A day without sunshine is like... night.


 
 
 ___
 Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
 Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.
 



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: QT Install problems

2002-04-09 Thread Roger Oberholtzer

On Tue, 09 Apr 2002 08:47:24 -0400
Tim Wunder [EMAIL PROTECTED] wrote:

 Hi Brian,
 I think the consesus is that a 'make install' is not required. That 
 being said, you need to make sure /etc/ld.sod.so.conf.conf contains 
 '/usr/lib/qt3/lib' (or whatever directories contain the qt3 libs), then 
 run ldconfig to update the libraries once qt3 is installed. 
 Alternatively, you can create the environment variable LD_LIBRARY_PATH 
 (read this, http://www.visi.com/~barr/ldpath.html) and set it to include 
 the path to the qt3 libs.

I think LD_LIBRARY_PATH is by far the best way to do this. This applies
when you compile KDE as well! That way the binaries will find their parts no matter
what /etc/ld.so.conf contains. When compiling KDE, add the KDE library
directory as well as the QT directory to LD_LIBRARY_PATH

-- 
++===+
| Roger Oberholtzer  |   E-mail:[EMAIL PROTECTED] |
| OPQ Systems AB |  WWW:  http://www.opq.se/ |
| Erik Dahlbergsgatan 41-43  |Phone: Int + 46 8   314223 |
| 115 32 Stockholm   |   Mobile: Int + 46 733 621657 |
| Sweden |  Fax: Int + 46 8   302602 |
++===+

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: QT Install problems

2002-04-09 Thread dep

begin  Brian Witowski's  quote:

| Make ./configure went off without a hitch, as did Make.  But when I
| attempted Make Install I got No rule to make target
| ../linux-g++/qmake.conf needed by Makefile'

i'm a little surprised that it built at all. qt is generally built in 
place -- you don't install it after you've built it, because it's 
already where it's supposed to be. (the reason i'm surprised it built 
is that it in the past has thrown an error if it's not in $QTDIR as 
defined by the system configuration. this used to be easier to deal 
with than it is in some distributions now -- for instance, suse has 
some nonstandard configuration files that sometimes need to be edited 
to get the environmental variable override to take place.)
-- 
dep

http://www.linuxandmain.com -- outside the box, barely within the 
envelope, and no animated paperclip anywhere.
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: xfree-lite

2002-04-09 Thread Net Llama!

On Tue, 9 Apr 2002, m.w.Chang wrote:
 You should give it a try if you don't like IE. But IE is too popular
 among the kids to be removed from Win98 or be ignored anyway.

That's the mentality that will keep M$ in its dominant monopolitic
position forever.

 Kurt Wall wrote:
 we have 98lite for Window$ 98 to knock out IE.
  Never heard of it, but I do as little as possible in the Windows
  world.

 Is it do-able after full/partial installation?
 To avoid missing some crucial modules,
 I always install all packages.

 Now i want to try building Xfree86 from scratch rather
 paying extra for an product upgrade. SO is there a
 dummy's guide for newbies to remove existing RPMs?

On the SxS site.  Its been there since 4.00 was released.


 I read that it's dam easy to build a Xfree86 from scratch.
 But shouldn't one first remove the old version BEFORE
 installing a new version?

No.  The old version will get wiped out.

-- 
~~
Lonni J Friedman[EMAIL PROTECTED]
Linux Step-by-step   http://netllama.ipfox.com

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: OT installation

2002-04-09 Thread Net Llama!

This 'feature' is called static binaries.  Its what prevents reuse of
common libraries, and leads to overall bloat.

Please join us in the 21st century.  You might actually like it here.

On Tue, 9 Apr 2002, m.w.Chang wrote:
 Of one thing that I liked about DOS:

 There were little dependence between products. SO you can always
 add/remove packages without breaking others. YOu always knew where your
 data and the program (games, dbase, wordstar, wordperfect, lotus,
 harvard graphics, ...) were (well, at least in my PC).

 Both linux and the new Window$ broke this nice feature.
 One basically need to panic whenever you want to remove something from
 these multi-tasking, dyanmic binding system, expecting something to break.

  I read that it's dam easy to build a Xfree86 from scratch.
  But shouldn't one first remove the old version BEFORE
  installing a new version?

 ___
 Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
 Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.


-- 
~~
Lonni J Friedman[EMAIL PROTECTED]
Linux Step-by-step   http://netllama.ipfox.com

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Stupid checkinstall question

2002-04-09 Thread Tim Wunder

I think I know the answer, but I'll throw this out there...
If I compile a program as a normal user, with the correct environment 
variables (eg for KDE3: QTDIR, KDEDIR and KDEDIRS) when I switch to root 
to run checkinstall, there's no need for me to re-create those env 
variables as root, is there? I'm thinking not, since once the 
./configure is done, the env variables aren't looked at any more. At 
least that's my understanding of the process (which oftentimes proves to 
be wrong ;-( ).

Regards,
Tim

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Open Source/Technology PAC

2002-04-09 Thread DOUGLAS HUNLEY



http://www.thelinuxshow.com/otc.htm

We need this so badly in the US, IMHO..
Please support where/how you can (even if only to say "this is 
stupid. you should focus on that instead")

--Douglas J. HunleyUnix/Linux Adminhttp://www.linux-sxs.org

 SELECT * FROM users WHERE clue  0;0 rows 
returned


New SxS for 9 Apr

2002-04-09 Thread Net Llama!

Networking - Wireless - 3COM Airconnect Access Point (Bill Day)

-- 
~~
Lonni J Friedman[EMAIL PROTECTED]
Linux Step-by-step   http://netllama.ipfox.com

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Caldera CSSAs eD2.4

2002-04-09 Thread Bill Day

Ummm.. anyone know if the CSSAs from Caldera pertain to eD2.4 anymore.. I 
havent seen any in the last 3 or so CSSAs..

Are they not worrying about 2.4 anymore.  I really truly don't care, just as 
soon as I get the bigger my new connection I will no longer have the need for 
the 2.4 and can get on with bigger and better...


-- 
  Bill Day 
  
  Linux for Windows Addicts:
  A Twelve Step Program for Habitual Windows Users.
  ISBN: 0072130814
  
  Get it cause Ol' Billy Gates don't want you too!
  
 12:30pm  up 13 days, 17:06,  3 users,  load average: 0.00, 0.00, 0.00
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Caldera CSSAs eD2.4

2002-04-09 Thread Net Llama!

On Tue, 9 Apr 2002, Bill Day wrote:
 Ummm.. anyone know if the CSSAs from Caldera pertain to eD2.4 anymore.. I
 havent seen any in the last 3 or so CSSAs..

 Are they not worrying about 2.4 anymore.  I really truly don't care, just as
 soon as I get the bigger my new connection I will no longer have the need for
 the 2.4 and can get on with bigger and better...

Prolly better to ask on the Caldera list.  There are a few Caldear
employees that seem to be responsive.

-- 
~~
Lonni J Friedman[EMAIL PROTECTED]
Linux Step-by-step   http://netllama.ipfox.com

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Make errors

2002-04-09 Thread Brian Witowski

This is related to the issues I had with installing Qt 3.0.3.  I finally got
it to install.  I was missing some necessary switches.  It installed without
error.

Now, the app I'm trying to install (kmyfirewall) is puking during make.
Here are the last few lines:

make[2]: *** [kmfruleeditip.o] Error 1
make[2]: Leaving directory `/opt/kmyfirewall-0.4.2/kmyfirewall'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/opt/kmyfirewall-0.4.2'
make: *** [all-recursive-am] Error 2

In addition there are other errors sprinkled in the output:


/opt/kde2/include/kmainwindow.h:94: base class `QMainWindow' has incomplete
type

/usr/local/qt/include/qlineedit.h:193: parse error before `*'

/opt/kde2/include/kpopupmenu.h:97: base class `QPopupMenu' has incomplete
type
In file included from kmyfirewall.h:27,
 from kmfruleedit.h:16,
 from kmfruleeditip.h:16,
 from kmfruleeditip.cpp:10:

I'm unclear as to what the [all-recursive] messages mean.

This program is supposed to run under kde 2.2.x, which is what I'm using.
What should I be looking for?

Brian


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: xfree-lite

2002-04-09 Thread Bill Davidson

On Monday 08 April 2002 11:39 pm, m.w.Chang wrote:
 Is it do-able after full/partial installation?
 To avoid missing some crucial modules,
 I always install all packages.

 Now i want to try building Xfree86 from scratch rather
 paying extra for an product upgrade. SO is there a
 dummy's guide for newbies to remove existing RPMs?

 I read that it's dam easy to build a Xfree86 from scratch.
 But shouldn't one first remove the old version BEFORE
 installing a new version?

You don't need to. But you might want to back up /etc/X11 and /usr/X11R6 
in case something goes wrong in the install.

Bill
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Caldera CSSAs eD2.4

2002-04-09 Thread Bill Day

Nah, it's no biggie   I havent been on that list in a while.. t much good 
help here   8^)


On Tuesday 09 April 2002 13:34, you were heard blurting out:
 On Tue, 9 Apr 2002, Bill Day wrote:
  Ummm.. anyone know if the CSSAs from Caldera pertain to eD2.4 anymore.. I
  havent seen any in the last 3 or so CSSAs..
 
  Are they not worrying about 2.4 anymore.  I really truly don't care, just
  as soon as I get the bigger my new connection I will no longer have the
  need for the 2.4 and can get on with bigger and better...

 Prolly better to ask on the Caldera list.  There are a few Caldear
 employees that seem to be responsive.

-- 
  Bill Day 
  
  Linux for Windows Addicts:
  A Twelve Step Program for Habitual Windows Users.
  ISBN: 0072130814
  
  Get it cause Ol' Billy Gates don't want you too!
  
  3:30pm  up 13 days, 20:06,  4 users,  load average: 0.27, 0.20, 0.12
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Time to switch

2002-04-09 Thread Wil McGilvery

I have presented the owner of our company the bill for our M$ servers and client 
access licenses. One that I am sure he will choke on.

I am working on a proposal that will allow me to use alternative software to M$ 
Exchange and M$ SQL Server.

I am curious to know what other people are using.

Regards,
 
Wil McGilvery
Manager, Digital Media

 
Lynch Technologies Inc.
416-744-7191
1-888-622-3729
416-744-0406  FAX
www.lynchdigital.com




___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



iptables to limit no. of connection per domain

2002-04-09 Thread =?x-user-defined?q?toylet=2Elinux=5B=A4p=AA=B1=B7N=5D?=

can it be done? a little example would be appreciated.

-- 
May the Force and Farce be with Linux and you.
Join the kids in http://www.linux-sxs.org  news://news.hkpcug.org
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Time to switch

2002-04-09 Thread Kurt Wall

[newlines added for easier reading]

Scribbling feverishly on April 09, Wil McGilvery managed to emit:
 I have presented the owner of our company the bill for our M$ servers 
 and client access licenses. One that I am sure he will choke on.

Just curious, but how much will he choke?

 I am working on a proposal that will allow me to use alternative 
 software to M$ Exchange and M$ SQL Server.
 
 I am curious to know what other people are using.

I need a bit more data before I can make a recommendation. How many
users? What kind of transaction level for SQL server? For what are
you using SQL Server? Any existing code that takes advantage of SQL
extensions? Etcetera.

Kurt
-- 
You attempt things that you do not even plan because of your extreme stupidity.
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Make errors

2002-04-09 Thread Net Llama!

Brian Witowski wrote:
 This is related to the issues I had with installing Qt 3.0.3.  I finally got
 it to install.  I was missing some necessary switches.  It installed without
 error.
 
 Now, the app I'm trying to install (kmyfirewall) is puking during make.
 Here are the last few lines:
 
 make[2]: *** [kmfruleeditip.o] Error 1
 make[2]: Leaving directory `/opt/kmyfirewall-0.4.2/kmyfirewall'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/opt/kmyfirewall-0.4.2'
 make: *** [all-recursive-am] Error 2
 
 In addition there are other errors sprinkled in the output:
 
 
 /opt/kde2/include/kmainwindow.h:94: base class `QMainWindow' has incomplete
 type
 
 /usr/local/qt/include/qlineedit.h:193: parse error before `*'
 
 /opt/kde2/include/kpopupmenu.h:97: base class `QPopupMenu' has incomplete
 type
 In file included from kmyfirewall.h:27,
  from kmfruleedit.h:16,
  from kmfruleeditip.h:16,
  from kmfruleeditip.cpp:10:
 
 I'm unclear as to what the [all-recursive] messages mean.
 
 This program is supposed to run under kde 2.2.x, which is what I'm using.
 What should I be looking for?

The correct version of KDE would be a good start.  According to the 
webpage for kmyfirewall the version that you're trying to build requires 
KDE3, with qt3.

-- 
~
L. Friedman[EMAIL PROTECTED]
Linux Step-by-step: http://netllama.ipfox.com

   4:30pm  up 11 days,  6:23,  3 users,  load average: 0.01, 0.21, 0.32

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.




Re: QT Install problems

2002-04-09 Thread Rick Sivernell

Dennis  / Kurt or Any one else


  In the book call CNU C++ they talk about a tdate.h  cpp files.
During compile I get an error of unknown external. I take it that 
this gnu stuff  should it be on ew 3.1.1 /3.1 systems.

cheers

-- 
Rick Sivernell
Dallas, Texas  75287
972 306-2296
[EMAIL PROTECTED]
Caldera Open Linux eWorkStation 3.1.1
Registered Linux User

   .~.
  / v \
 /( _ )\
   ^ ^
In Linux we trust!
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Make errors

2002-04-09 Thread Kurt Wall

Scribbling feverishly on April 09, Brian Witowski managed to emit:
 This is related to the issues I had with installing Qt 3.0.3.  I finally got
 it to install.  I was missing some necessary switches.  It installed without
 error.
 
 Now, the app I'm trying to install (kmyfirewall) is puking during make.
 Here are the last few lines:
 
 make[2]: *** [kmfruleeditip.o] Error 1
 make[2]: Leaving directory `/opt/kmyfirewall-0.4.2/kmyfirewall'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/opt/kmyfirewall-0.4.2'
 make: *** [all-recursive-am] Error 2

Not enough from the end of the process before it hurls.

 /opt/kde2/include/kmainwindow.h:94: base class `QMainWindow' has incomplete
 type
 
 /usr/local/qt/include/qlineedit.h:193: parse error before `*'
 
 /opt/kde2/include/kpopupmenu.h:97: base class `QPopupMenu' has incomplete
 type
 In file included from kmyfirewall.h:27,
  from kmfruleedit.h:16,
  from kmfruleeditip.h:16,
  from kmfruleeditip.cpp:10:
 
 I'm unclear as to what the [all-recursive] messages mean.

all-recursive is a make target. It's the rules that constitute the
target that's causing the problem.

Kurt
-- 
You will overcome the attacks of jealous associates.
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: OT installation

2002-04-09 Thread Rick Sivernell

On Tue, 9 Apr 2002 09:52:48 -0400 (EDT)
Net Llama! [EMAIL PROTECTED] wrote:

 On Tue, 9 Apr 2002, dep wrote:
  begin  Net Llama!'s  quote:
  | This 'feature' is called static binaries.  Its what prevents reuse
  | of common libraries, and leads to overall bloat.
 
  which must be why all those old dos apps wouldn't run on an 8088 with
  640k and a 20-meg hd.g
 
 And think how much better they would have run, if shared libs were used
 back then.
 
 -- 
 ~~
 Lonni J Friedman  [EMAIL PROTECTED]
 Linux Step-by-step http://netllama.ipfox.com
 
 ___
 Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
 Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.
Lonnie

  actually they ran better in OS/2 doswindow  windows apps ran better too.
Go figure, well not really, OS/2 was a better windows than M$sludge. Big Time

cheers

-- 
Rick Sivernell
Dallas, Texas  75287
972 306-2296
[EMAIL PROTECTED]
Caldera Open Linux eWorkStation 3.1.1
Registered Linux User

   .~.
  / v \
 /( _ )\
   ^ ^
In Linux we trust!
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: QT Install problems

2002-04-09 Thread Kurt Wall

Scribbling feverishly on April 09, Rick Sivernell managed to emit:
 Dennis  / Kurt or Any one else
 
 
   In the book call CNU C++ they talk about a tdate.h  cpp files.
 During compile I get an error of unknown external. I take it that 
 this gnu stuff  should it be on ew 3.1.1 /3.1 systems.

Never heard of it. You sure it isn't something you're supposed to
create?

Kurt
-- 
You will stop at nothing to reach your objective, but only because your
brakes are defective.
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: QT Install problems

2002-04-09 Thread Rick Sivernell

On Tue, 9 Apr 2002 18:55:51 -0500
Kurt Wall [EMAIL PROTECTED] wrote:

 Scribbling feverishly on April 09, Rick Sivernell managed to emit:
  Dennis  / Kurt or Any one else
  
  
In the book call CNU C++ they talk about a tdate.h  cpp files.
  During compile I get an error of unknown external. I take it that 
  this gnu stuff  should it be on ew 3.1.1 /3.1 systems.
 
 Never heard of it. You sure it isn't something you're supposed to
 create?
 
 Kurt
 -- 
 You will stop at nothing to reach your objective, but only because your
 brakes are defective.
 ___
 Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
 Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.
Kurt

 no, it had a class def and all, well if I have the stuff, maybe I
just create it, slap slap
   Thanks for the wake up call, night and days are running together here. 4 
course at one time tend to do that, especially toward the end.
cheers

-- 
Rick Sivernell
Dallas, Texas  75287
972 306-2296
[EMAIL PROTECTED]
Caldera Open Linux eWorkStation 3.1.1
Registered Linux User

   .~.
  / v \
 /( _ )\
   ^ ^
In Linux we trust!
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: xfree-lite

2002-04-09 Thread Kurt Wall

Scribbling feverishly on April 09, m.w.Chang managed to emit:
 You should give it a try if you don't like IE. But IE is too popular 
 among the kids to be removed from Win98 or be ignored anyway.

Thanks, I'll pass.

 Is it do-able after full/partial installation?
 To avoid missing some crucial modules,
 I always install all packages.

What, removing XFree86? Sure:

# rm -rf /usr/X11R6
# rm -rf /etc/X11

 Now i want to try building Xfree86 from scratch rather
 paying extra for an product upgrade. SO is there a
 dummy's guide for newbies to remove existing RPMs?

# rpm -qa | grep -E -i xfree86
pkg1
pkg2
pkg3
etc
# rpm -e pkg1 pkg2 pkg3 etc
 
 I read that it's dam easy to build a Xfree86 from scratch.

And slow...

 But shouldn't one first remove the old version BEFORE
 installing a new version?

Yes. It isn't always necessary.

Kurt
-- 
Never commit yourself!  Let someone else commit you.
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



RE: Make errors

2002-04-09 Thread Brian Witowski

We must have been looking at two different web pages.  The spec's I read
called for KDE 2.2.x

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Net Llama!
 Sent: Tuesday, April 09, 2002 7:35 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Make errors
 
 
 Brian Witowski wrote:
  This is related to the issues I had with installing Qt 3.0.3.  
 I finally got
  it to install.  I was missing some necessary switches.  It 
 installed without
  error.
  
  Now, the app I'm trying to install (kmyfirewall) is puking during make.
  Here are the last few lines:
  
  make[2]: *** [kmfruleeditip.o] Error 1
  make[2]: Leaving directory `/opt/kmyfirewall-0.4.2/kmyfirewall'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory `/opt/kmyfirewall-0.4.2'
  make: *** [all-recursive-am] Error 2
  
  In addition there are other errors sprinkled in the output:
  
  
  /opt/kde2/include/kmainwindow.h:94: base class `QMainWindow' 
 has incomplete
  type
  
  /usr/local/qt/include/qlineedit.h:193: parse error before `*'
  
  /opt/kde2/include/kpopupmenu.h:97: base class `QPopupMenu' has 
 incomplete
  type
  In file included from kmyfirewall.h:27,
   from kmfruleedit.h:16,
   from kmfruleeditip.h:16,
   from kmfruleeditip.cpp:10:
  
  I'm unclear as to what the [all-recursive] messages mean.
  
  This program is supposed to run under kde 2.2.x, which is what 
 I'm using.
  What should I be looking for?
 
 The correct version of KDE would be a good start.  According to the 
 webpage for kmyfirewall the version that you're trying to build requires 
 KDE3, with qt3.
 
 -- 
 ~
 L. Friedman  [EMAIL PROTECTED]
 Linux Step-by-step:   
http://netllama.ipfox.com

   4:30pm  up 11 days,  6:23,  3 users,  load average: 0.01, 0.21, 0.32


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Make errors

2002-04-09 Thread Net Llama!

Which version of kmyfirewall are you trying to build, 0.4.1 or 0.4.2?

Brian Witowski wrote:
 I double-checked the requirements at sourceforge and KDE 2.2.0 is whats
 required.  Let me know when you have some usefull input.
 
 
The correct version of KDE would be a good start.  According to the 
webpage for kmyfirewall the version that you're trying to build requires 
KDE3, with qt3.


-- 
~
L. Friedman[EMAIL PROTECTED]
Linux Step-by-step: http://netllama.ipfox.com

   5:25pm  up 11 days,  7:18,  4 users,  load average: 0.24, 0.20, 0.14

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



RE: Make errors

2002-04-09 Thread Brian Witowski

I double-checked the requirements at sourceforge and KDE 2.2.0 is whats
required.  Let me know when you have some usefull input.

 The correct version of KDE would be a good start.  According to the 
 webpage for kmyfirewall the version that you're trying to build requires 
 KDE3, with qt3.
 
 -- 
 ~
 L. Friedman  [EMAIL PROTECTED]
 Linux Step-by-step:   
http://netllama.ipfox.com

   4:30pm  up 11 days,  6:23,  3 users,  load average: 0.01, 0.21, 0.32


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: JAVA RAD

2002-04-09 Thread Bill Davidson

On Tuesday 09 April 2002 01:17 pm, zohar wrote:
 Is there some application which make the code of Java language for the
 controls(command buttons. option buttons, list box, combo box, etc) that
 are in the screen using AWT library and JDBC as I have connect it to
 database (particularly of mysql, though for the time
 being I could work with Access OR Oracle till I have to design the
 screen and to do system testing) so that after getting the framework
 done I can write code for the procedure. Need some RAD tool like VB but
 like VB it should not make code that is ultimately dependent on OS but
 that code should works on its own, as a code of Java language for
 interfacting with database and hardware..

 For any of windows(more preferably as this is the OS in my college
 machines) or linux platform.

 Also mysql 4.0 is said to be released.  What it has more features than
 3.23(the current one that is on my machine.

 Hope to get a help from you.

 Zohar

Have a look at Forte. It's from Sun and it's at java.sun.com.

Bill
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Time to switch

2002-04-09 Thread m.w.Chang


http://www.smvfp.com presented a M$ frontend+linux backend solution.
it's something you possibly were after.

Wil McGilvery wrote:
 I am working on a proposal that will allow me to use alternative software to M$ 
Exchange and M$ SQL Server.
 I am curious to know what other people are using.

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Time to switch

2002-04-09 Thread Net Llama!

WTF??
I tried to load that page, and gave up after the 130KB background image 
stalled mid-way through download.  I saw some BS about Visual FoxPro as 
well.

I think Wil was looking to escape M$ debauchery, not get further 
entrenched in it.

m.w.Chang wrote:
 
 http://www.smvfp.com presented a M$ frontend+linux backend solution.
 it's something you possibly were after.
 
 Wil McGilvery wrote:
 
 I am working on a proposal that will allow me to use alternative 
 software to M$ Exchange and M$ SQL Server.
 I am curious to know what other people are using.
 
 
 ___
 Linux-users mailing list - 
 http://linux-sxs.org/mailman/listinfo/linux-users
 Subscribe/Unsubscribe info, Archives,and Digests are located at the 
 above URL.


-- 
~
L. Friedman[EMAIL PROTECTED]
Linux Step-by-step: http://netllama.ipfox.com

   6:55pm  up 11 days,  8:48,  4 users,  load average: 0.54, 0.74, 0.53

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Time to switch

2002-04-09 Thread Kurt Wall

Scribbling feverishly on April 09, Net Llama! managed to emit:
 WTF??
 I tried to load that page, and gave up after the 130KB background image 
 stalled mid-way through download.  I saw some BS about Visual FoxPro as 
 well.
 
 I think Wil was looking to escape M$ debauchery, not get further 
 entrenched in it.

Great scott! That is one butt-ugly web page... And, the Java applet
froze Nutscrape.

  http://www.smvfp.com presented a M$ frontend+linux backend solution.
  it's something you possibly were after.

Kurt
-- 
You fill a much-needed gap.
[Ed.: gap as in missing link?]
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Time to switch

2002-04-09 Thread Ted Ozolins

On April 9, 2002 07:07 pm, Kurt Wall wrote:
 Scribbling feverishly on April 09, Net Llama! managed to emit:
  WTF??
  I tried to load that page, and gave up after the 130KB background image
  stalled mid-way through download.  I saw some BS about Visual FoxPro as
  well.
 
  I think Wil was looking to escape M$ debauchery, not get further
  entrenched in it.

 Great scott! That is one butt-ugly web page... And, the Java applet
 froze Nutscrape.

   http://www.smvfp.com presented a M$ frontend+linux backend solution.
   it's something you possibly were after.


Loaded OK with NS6.2.2 but still all I saw was more M$ crap. What a waste of 
time! Even on ADSL its slow. I don't see WTF this has to do with LINUX! 

 Kurt

-- 
Ted Ozolins (VE7TVO)
Westbank, B. C.
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Time to switch

2002-04-09 Thread dep

begin  Collins's  quote:

| Well, konqueror fields the ugly thing without a blip.

here, too. of course, i have java turned off; it would be good if in 
their attempt to prove that they can echo a time to the page they'd 
specify the zone. and as a rule, one does not put up a hit counter if 
it's going to register results indicative of a so-so day for the 
entire life of the site.
-- 
dep

http://www.linuxandmain.com -- outside the box, barely within the 
envelope, and no animated paperclip anywhere.
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: iptables to limit no. of connection per domain

2002-04-09 Thread David A. Bandel

On Wed, 10 Apr 2002 09:37:16 +0800
begin  m.w.Chang [EMAIL PROTECTED] spewed forth:

 so wu-ftpd can also enjoy all the special
 featuers offered by proftpd.
 
 Does iptables-1.2.6's patch-o-magic work magically (without any 
 complaints) with kernel-2.4.18?

umm.  sometimes.  depends on what you select.

 
 No luck for me with 1.2.5. lots of weird errors the last tiem I tried
 it.

never tried 1.2.5 -- went from 1.2.4 to 1.2.6a.

Ciao,

David A. Bandel
-- 
Focus on the dream, not the competition.
-- Nemesis Racing Team motto
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



OT Windows question: Splitting large files

2002-04-09 Thread Joel Hammer

I hate to ask this question on this list but I need help.
I have to copy a 2.2 meg file (powerpoint presentation done in win4lin) from
my linux box to a dos floppy to carry to work and load on the computer there
for a presentation. Is there a way to split the file across two dos disks?
I tried to zip it but it is already zipped, according to zip.
Thanks,
Joel


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: OT Windows question: Splitting large files

2002-04-09 Thread David Aikema

On April 9, 2002 09:04 pm, Joel Hammer wrote:
 I hate to ask this question on this list but I need help.
 I have to copy a 2.2 meg file (powerpoint presentation done in win4lin)
 from my linux box to a dos floppy to carry to work and load on the computer
 there for a presentation. Is there a way to split the file across two dos
 disks? I tried to zip it but it is already zipped, according to zip.
 Thanks,
 Joel

Zip files can span multiple disks (so can a bunch of others but this is 
probably best supported under windows in ZIP form).  Just zip up that zip 
file a second time.

Personally I prefer to transfer things via sftp, but I guess that's not an 
option.  I've just had too many bad experiences from trusting floppy disks.

David Aikema
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: OT Windows question: Splitting large files

2002-04-09 Thread Andrew Mathews

Joel Hammer wrote:
 
 I hate to ask this question on this list but I need help.
 I have to copy a 2.2 meg file (powerpoint presentation done in win4lin) from
 my linux box to a dos floppy to carry to work and load on the computer there
 for a presentation. Is there a way to split the file across two dos disks?
 I tried to zip it but it is already zipped, according to zip.
 Thanks,
 Joel
 
 ___

Yes, I believe you can use split to break it into floppy sized files,
then use the copy command to merge the two back into one on the other
machine. Sun uses this to merge multiple .iso's for their Solaris 9 for
sparc platform downloads. I assume copy will be indifferent to the file
extension.
-- 
Andrew Mathews

 10:25pm  up 2 days,  5:18,  4 users,  load average: 1.07, 1.04, 1.01

Bend over and take it like a man!


smime.p7s
Description: S/MIME Cryptographic Signature