konqueror crash

2002-03-05 Thread Michael Schwendt

kdebase-3.0.0-0.cvs20020218.1

As soon as I type the first '/' character of http://...; in the
Location field, konqueror crashes with a segmentation fault.
100% reproducible.

Is anyone else seeing this?



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: konqueror crash

2002-03-05 Thread Bernhard Rosenkraenzer

On Tue, 5 Mar 2002, Michael Schwendt wrote:

 As soon as I type the first '/' character of http://...; in the
 Location field, konqueror crashes with a segmentation fault.
 100% reproducible.
 
 Is anyone else seeing this?

No, and Konqueror is the only graphical browser I'm using.
Did you try a later version yet?

LLaP
bero

-- 
This message is provided to you under the terms outlined at
http://www.bero.org/terms.html



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: konqueror crash

2002-03-05 Thread Michael Schwendt

On 2002-03-05, Hetz Ben Hamo wrote:

:If you're planning to use KDE on RH 8.0 - then I would recommend you to 
:either compile KDE from CVS or wait for the binaries that bero provides from 
:time to time (bero, any time frame for releasing binaries or you'll release 
:the 3.0 final version only?)
:
:Last week there were around almost 3,000 (yes, three thousands) commits to 
:KDE CVS to fix most of the bugs - so you might want to try the CVS version...

Doesn't answer my question whether anyone sees that bug too. I'm
referring to current Raw Hide _as is_, not any future release of Red
Hat Linux that might be called 8.0, 2002, or XP.



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: konqueror crash

2002-03-05 Thread Michael Schwendt

On 2002-03-05, Bernhard Rosenkraenzer wrote:

: As soon as I type the first '/' character of http://; in the
: Location field, konqueror crashes with a segmentation fault
: 100% reproducible
: 
: Is anyone else seeing this?
:
:No, and Konqueror is the only graphical browser I'm using
:Did you try a later version yet?

No But I've found out where it comes from:

  ~/kde/share/config/kioslaverc

Which appears to contain the Proxy Settings and User Agent
definition for konqueror, dated Oct 30 15:32 2001, and which was
taken over from Enigma where it works fine File is attached



kioslaverc.gz
Description: Zip archive


Re: konqueror crash

2002-03-05 Thread John Summerfield

 kdebase-3.0.0-0.cvs20020218.1
 
 As soon as I type the first '/' character of http://...; in the
 Location field, konqueror crashes with a segmentation fault.
 100% reproducible.
 
 Is anyone else seeing this?


Doesn't look like a development issue to me.
-- 
Cheers
John Summerfield

Microsoft's most solid OS: http://www.geocities.com/rcwoolley/

Note: mail delivered to me is deemed to be intended for me, for my 
disposition.

==
If you don't like being told you're wrong,
be right!





___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Why no core dump???????????

2002-03-05 Thread Vimol

The C program here is giving out Hello world while running in Rethat Linux 
7.2 . It is compiled with ''gcc.

WHY NO CORE DUMP??? I have malloc only one byte.
Please explain me.


Kvimol

#include stdioh
#include stdlibh

void
my_strcat(char *dest, const char *src)
{
while( *dest++ );
dest--;

while( *dest++ = *src++ );
*dest=0;
}
char *
my_strcpy(char *dest, const char *src)
{
   int i=0;
   while (*src){
 dest[i++] = *src++;
   }
   dest[i]=0;
}
int
main()
{
  char *s=malloc(1);

  my_strcpy(s,Hello);
  
  my_strcat(s, world);

  printf(%s\n,s);

  free(s);

  return 0;
}



Re: Why no core dump???????????

2002-03-05 Thread Step

You are confusing 'segmentation fault' with 'accessing memory not
(yet) allocated'. A program has certain space allocated to it by
the OS. To use this memory in an organized manner, you use (m)alloc.
So in your program you are accessing your memory only, and that is
why no seg-fault(and hence no core dump).

Quoting Vimol ([EMAIL PROTECTED]):
 The C program here is giving out Hello world while running in Rethat Linux 
 7.2 . It is compiled with ''gcc.
 
 WHY NO CORE DUMP??? I have malloc only one byte.
 Please explain me.
 
 
 Kvimol



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: Why no core dump???????????

2002-03-05 Thread Mikael Aronsson

Hi !

malloc() never allocates just one byte, it depends on the implementation,
but you get at least 4 bytes to use maybe 8 or more so there is room for
that number of bytes.

And even if you do overwrite the end, you may not get a core dump, a normal
C app runs in a single segment and writing outside an allocated area is not
violation in that sense, even though most of the time you do get a core dump
(sooner or later).

If you want the kind of checking you must use some extra library with
support for this, I think ElectricFence is included with ReadHat.

Mikael

- Original Message -
From: Vimol [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Wednesday, March 06, 2002 6:59 AM
Subject: Why no core dump???


 The C program here is giving out Hello world while running in Rethat
Linux
 7.2 . It is compiled with ''gcc.

 WHY NO CORE DUMP??? I have malloc only one byte.
 Please explain me.


 Kvimol



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: Why no core dump???????????

2002-03-05 Thread Bernhard Rosenkraenzer

On Wed, 6 Mar 2002, Vimol wrote:

 The C program here is giving out Hello world while running in Rethat Linux 
 7.2 . It is compiled with ''gcc.
 
 WHY NO CORE DUMP??? I have malloc only one byte.
 Please explain me.

We've seen quite a few bug reports from newbies about core files filling 
up their diskspace, so we disabled their generation by default (assuming 
that people who know what to do with a core file are much more likely to 
know how to turn them on than people who don't know what it is being able 
to turn them off).

Use ulimit -c whatever to turn core file generation on.

LLaP
bero

-- 
This message is provided to you under the terms outlined at
http://www.bero.org/terms.html



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



rh 8 beta 233 mmx install..

2002-03-05 Thread Jim Bija



i have tried to install rhl 8.0 beta on a 233mmx. 
so did my friend. both came up with errors.
i reported my bug to
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=60526

with no response... please help..

jim



Re: rh 8 beta 233 mmx install..

2002-03-05 Thread rpjday

On Tue, 5 Mar 2002, Jim Bija wrote:

 i have tried to install rhl 8.0 beta on a 233mmx. so did my friend.
 both came up with errors. i reported my bug to
 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=60526

if you're talking about the new release called pensacola,
that is *not* the beta of red hat 8.0.  spreading rumors like
that will only get people worked up into a lather.

rday



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Empty FTP window.

2002-03-05 Thread ABrady

On Tue, 5 Mar 2002 01:53:29 -0500
SignGuy [EMAIL PROTECTED] quietly intimated:

 Hello All.
  need some help..RH 7.1 has been running error free for months.
 
  today went to upload some new files and everything in FTP window is
  gone.??
 
 FTP Logs into server fine ... but  NO DIRECTORIES or files? even if I
 go back every directory
 
  so I tried to create a new test directory. it created it but still
  was not showing in FTP window.
 
 I jumped over to telnet just to see.. everything is still there
 INCLUDING new test directory.
 
 
 -jg
 
 *I FTPed into another server to test FTP program, and it works fine

I have the same thing (7.1, tons of updates/patches/homemade). Mine happened about the 
same time I added a linksys router, which I'm sure is coincidence. I don't remember 
doing any updates at the same time or just prior to it disappearing. But if there were 
any, I guarantee I made them because I always stay on top of them. I'm running 
pure-ftpd, but I don't know if it makes any difference. What I found:

1. I can get in with a regular ftp client (gftp, axyftp, etc) and can see everything.

2. I can symlink the /pub directory into a user's public_html tree and see everything.

3. None of the browers (galeon, mozilla, netscape, opera, konqueror) can see anything 
there.

4. Commandline ftp works as well as the graphical ftp clients.

So, it's there, I can see it, I can access it. But none of the browsers can see a 
thing.

Since I'm generally only serving files for a limited base right now, I left it alone 
until I have more time. Now it makes me wonder what's happening even more, since there 
are at least 2 of us with this oddity.

-- 
We are what we eat; I'm cheap, fast, and easy.



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



How to format man pages for A4 paper printing?

2002-03-05 Thread José Romildo Malaquias

Hello.

I want to print some manuals, but the default formatting I am getting
is for letter paper and I am using A4 paper. I am doing:


$ man -t fvwm2 | lpr

to print the fvwm2 manual, for example. What should I do to get
A4 paper formatting?

Thanks.

Romildo
-- 
Prof. José Romildo Malaquias   Departamento de Computação
http://iceb.ufop.br/~romildo   Universidade Federal de Ouro Preto
[EMAIL PROTECTED]   Brasil
[EMAIL PROTECTED]



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: How to format man pages for A4 paper printing?

2002-03-05 Thread Rick van der Linde



Hello.

I want to print some manuals, but the default formatting I am getting
is for letter paper and I am using A4 paper. I am doing:


  $ man -t fvwm2 | lpr

to print the fvwm2 manual, for example. What should I do to get
A4 paper formatting?

I can't tell you exactly what to do. But I know you'll need
to change an/some entries in your /etc/printcap file.

Probably you'll be able to change settings in  printconf
too. It will allow you to choose the default paper size.

Hope this helps.

Rick




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: rh 8 beta 233 mmx install..

2002-03-05 Thread Paul Hamm



There 
is a reason that they call them beta. If you don't like it reinstall 
7.2

  -Original Message-From: Jim Bija 
  [mailto:[EMAIL PROTECTED]]Sent: Tuesday, March 05, 2002 3:18 
  AMTo: [EMAIL PROTECTED]Subject: rh 8 beta 233 mmx 
  install..
  i have tried to install rhl 8.0 beta on a 233mmx. 
  so did my friend. both came up with errors.
  i reported my bug to
  https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=60526
  
  with no response... please help..
  
  jim
  


RE: mounting a floppy

2002-03-05 Thread Kevin Krieser

My understanding is that vfat provides the long filename support, whether
the filesystem is a FAT16 or FAT32.  MSDOS provides the old 8.3 filenames.

I just tried it.  One of my computers doesn't have msdos compiled in the
kernel, though vfat is.  The other only gave me the short filenames, even
when I tried to create a long filename under Linux.  Vfat gave me long
filenames.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Statux
Sent: Monday, March 04, 2002 10:22 PM
To: list redhat (general)
Subject: Re: mounting a floppy


 i put a floppy disc in
 it's a windows disc.
 i type the following as root:

There's no such thing as a Windows disk :) anyway...

 mount /dev/fd0 /mnt/floopy/ -t vfat

vfat is for mounting fat32 partitions (or the like).




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: [REDHAT] Re: php upgraded or not? and two other php Q

2002-03-05 Thread David Kramer

On Tue, 5 Mar 2002, Michael Mayer wrote:

 Hi David,
 
 On Tue, 5 Mar 2002, David Kramer wrote:
  I have a Red Hat 7.0 system [0] that I just updated with the php-4.0.6 
  RPM's.  phpinfo() is still reporting my previous version of 4.0.4pl1 
  though.  All other evindence indicates that the upgrade happened, but...
 
 just try to restart your apache server: /etc/init.d/https restart
 for security reasons, you should use php 4.1.2!

Can I run 4.1.2 with Red Hat 7.0?  4.0.6 was the most recent listed for 
Red Hat 7.0.

---
   David Kramer   http://thekramers.net
DK KD  This must be Thursday, said Arthur to himself, sinking low
DKK D  over his beer.  I never could get the hang of Thursdays.
DK KD  
 Douglas Adams, Hitchhiker's Guide to the Galaxy.



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: [REDHAT] Re: php upgraded or not? and two other php Q

2002-03-05 Thread Rick Warner


1) RedHat has not released and RPM for 4.1.2  - for any RH release.

2) 4.0.6 is fine if patched.  RH released patched RPM's last week; if you
got those you are fine.

3) If you want 4.1.2, at this time it is 'roll your own'. It will run with
7.0, but you have to do it yourself.

- rick warner


On Tue, 5 Mar 2002, David Kramer wrote:

 On Tue, 5 Mar 2002, Michael Mayer wrote:
 
  Hi David,
  
  On Tue, 5 Mar 2002, David Kramer wrote:
   I have a Red Hat 7.0 system [0] that I just updated with the php-4.0.6 
   RPM's.  phpinfo() is still reporting my previous version of 4.0.4pl1 
   though.  All other evindence indicates that the upgrade happened, but...
  
  just try to restart your apache server: /etc/init.d/https restart
  for security reasons, you should use php 4.1.2!
 
 Can I run 4.1.2 with Red Hat 7.0?  4.0.6 was the most recent listed for 
 Red Hat 7.0.
 
 ---
    David Kramer   http://thekramers.net
 DK KD  This must be Thursday, said Arthur to himself, sinking low
 DKK D  over his beer.  I never could get the hang of Thursdays.
 DK KD  
  Douglas Adams, Hitchhiker's Guide to the Galaxy.
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: [REDHAT] Re: [REDHAT] Re: php upgraded or not? and two otherphp Q

2002-03-05 Thread David Kramer

On Tue, 5 Mar 2002, Rick Warner wrote:

 
 1) RedHat has not released and RPM for 4.1.2  - for any RH release.
 
 2) 4.0.6 is fine if patched.  RH released patched RPM's last week; if you
 got those you are fine.

Yes, I just grabbed them yesterday and installed them.

I did try restarting apache, and also rebooting the box.  I'm afraid my 
questions still stand.


---
   David Kramer   http://thekramers.net
DK KD  The most likely way for the world to be destroyed, most
DKK D  experts agree, is by accident. That's where we come in; 
DK KD  we're computer professionals. We cause accidents. 
  -Nathaniel Borenstein 





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



ntpd doesn't use distant servers time

2002-03-05 Thread Dumas Patrice

Hi,
I have a redhat 7.2, ntp-4.1.0-4.
I have a single host I try to synchronise with external servers. I took the
servers from my country (france) in the list of public servers. I put them in
my /etc/ntp.conf:

#begin /etc/ntp.conf
server  127.127.1.0 # local clock
fudge   127.127.1.0 stratum 10

server ntp.univ-lyon1.fr
server ntp.via.ecp.fr
server ntp.tuxfamily.net
server ntp.obspm.fr

driftfile /etc/ntp/drift
#multicastclient# listen on default 224.0.1.1
broadcastdelay  0.008

#logconfig =syncall +clockall
logconfig all
authenticate no

#end of ntp.conf

After starting, it seems that I can only synchronize with the local clock, here
is the ntpq output of peer and associations:

[root@zeus root]# ntpq
ntpq pe
 remote   refid  st t when poll reach   delay   offset  jitter
==
 LOCAL(0)LOCAL(0)10 l   17   6470.0000.000   0.008
 dns.univ-lyon1. 0.0.0.0 16 u-   6400.0000.000 4000.00
 lptfpc46.obspm. 0.0.0.0 16 u-   6400.0000.000 4000.00
 zen.via.ecp.fr  0.0.0.0 16 u-   6400.0000.000 4000.00
 sherkan.tuxfami 0.0.0.0 16 u-   6400.0000.000 4000.00
ntpq ass
ind assID status  conf reach auth condition  last_event cnt
===
  1  8812  9014   yes   yes  nonereject   reachable  1
  2  8813  8000   yes   yes  nonereject
  3  8814  8000   yes   yes  nonereject
  4  8815  8000   yes   yes  nonereject
  5  8816  8000   yes   yes  nonereject
ntpq

Here is my /etc/sysconfig/clock:
ZONE=Europe/Paris
UTC=true
ARC=false

and the date is quite good allready.
mar mar  5 16:19:02 CET 2002

Note: I run timed, but with the options such that it is a master:
[root@zeus sysconfig]# ps -awx | grep timed
3028 ?S  0:00 timed -t -M -F localhost

Any help apreciated.

Pat



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



ClanLib install question

2002-03-05 Thread hanfamily

Hi all,
I am trying to install the ClanLib rpms I managed to solve
most of the dependency problems with mandrake rpms off of
rpmfind. I hope that wont cause problems with the system.
I have one problem left it says it needs libGLcore.so.1.
I did a goggle search and found a suggestion to make a
soft link from libGL.so but it still won't install. Does
anyone know what I have to do to get ClanLib to work?
   Thanks
 Linda



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: stop checking for new hardware?

2002-03-05 Thread Vinny Valdez

Doesn't this only work if the service has predefined chkconfig levels at the top of 
the init script in /etc/rc.d/init.d?  For instance, I seem to remember httpd used to 
require `chkconfig httpd --level 2345 on` or whatever levels you wanted, and simply 
`chkconfig httpd on` wouldn't work.  This may be pre-7.2, though, or may just be 
service-specific.  

Vinny Valdez
Office of Court Administration
Systems Analyst IV

 chkconfig kudzu off - you forgot the service name, and the 
 level specification isn't necesarry (unless you only want to 
 turn it off for level 5 or something similar)
 
 
 
 -- 
 Trond Eivind Glomsrød
 Red Hat, Inc.
 



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: ClanLib install question

2002-03-05 Thread Emmanuel Seyman

On Tue, Mar 05, 2002 at 10:48:50AM -0600, [EMAIL PROTECTED] wrote:

 Does anyone know what I have to do to get ClanLib to work?

If you're using Enigma, I'ld recommend getting the RPMS from
http://www.freshrpms.net/ .

Emmanuel



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: [REDHAT] Re: php upgraded or not? and two other php Q

2002-03-05 Thread Michael Mayer


On Tue, 5 Mar 2002, David Kramer wrote:
 Can I run 4.1.2 with Red Hat 7.0?  4.0.6 was the most recent listed for 
 Red Hat 7.0.

yes. in the worst case, you'll have to compile it on your own or update
your system with the current glibc, mysql and apache rpms.

-- 
michael

liquid bytes technologies
www.liquidbytes.net



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Not to waste a CD

2002-03-05 Thread Ismael Touama

Hi,

Regarding the NetFilter vulnerability I downloaded the rpm to fill in the
weakness...
from my windows post [My Server 'll not on the LAN 'till more secure and me
more comfortable
with Linux, anyway]. Is the quite good command line to save these rpm on my
Linux post ?

mount -t vfat /dev/cdrom /mnt/cdrom

and then
cp kernel-2.4.9-31.i686.rpm /mnt/cdrom/kernel-2.4.9-31.i686.rpm
cp kernel-debug-2.4.9-31.i686.rpm /mnt/cdrom/kernel-debug-2.4.9-31.i686.rpm
...

and then install it one by one ?
Secondly is doing it via a CD-RW is changing factors
because of table of contents ?

Thank you,
I'm waiting for you...
only not to waste a CD!
ism



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



question about packages rawhide, bugzilla etc.

2002-03-05 Thread Jeff Bearer

What is the best place to find information about rawhide packages
bugzilla?  

The reason I'm asking is that I saw the Amanda package in rawhide.
(2.42p2-5) and the latest production rpm from RH is 2.4.2p2-4. I want to
know what has been changed in the last revision, but from bugzilla I
can't find out.  Is there someplace I can find a change log, or is there
a WebCVS or something that has this information?


-- 
Jeff Bearer, RHCE
Webmaster
PittsburghLIVE.com
2002 EPpy Award, Best Online U.S. Newspaper



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: xwin32

2002-03-05 Thread Michael S. Dunsavage



what did u do on the linux machine and on the 
Xwin32 config for setting it up?

  - Original Message - 
  From: 
  [EMAIL PROTECTED] 
  To: [EMAIL PROTECTED] 
  Sent: Tuesday, March 05, 2002 1:58 
  AM
  Subject: RE: xwin32
  
  tell 
  me what you need to know about it 
  i 
  have Xwin32
  its 
  for remote administration
  take 
  care
  
  
  
  


  
|BrAiN 
aToMS||| - mAkEs YoU 
ThInK ThAt yOu aRe tHiNkInG 
!!|||
|BrYaN 
AdAMS|| - mAkEs YoU SiNg 
WhEn yOu aRe sInKiNg 
!!|||
  
  
-Original Message-From: Michael S. Dunsavage 
[mailto:[EMAIL PROTECTED]]Sent: Tuesday, March 05, 2002 9:31 
AMTo: [EMAIL PROTECTED]Subject: 
xwin32
Has anyone got Xwin 32 to work? and if 
so,how?
--Michael S. 
  Dunsavage
  
  This electronic communication and any accompanying 
  document is being transmitted over the Indian Oil Network and contains 
  confidential information that is for the exclusive use of the individual or 
  entity to which it is addressed and is protected against unauthorised 
  disclosure. If the reader of this message is not the intended receipient or 
  the employee or agent responsible to deliver to the intended receipient, or is 
  not intended to act on it, be aware that any disclosure, dissemination, 
  distribution or copying of this communication, or the use of its contents is 
  prohibited and is likely to be attended by legal consequences. If you have 
  received this communication in error and/or are not the intended receipient, 
  please immediately notify the undersigned or Indian Oil Corporation Ltd. at 
  the telephone or the fax number or email address given above and permanently 
  delete the original message from your email system. Whilst this mail has been 
  checked for all the known viruses, recipients should undertake their own virus 
  checking as Indian Oil Corporation Ltd. will not accept any liability 
  whatsoever 
  


Port 6000 (X) Disable?

2002-03-05 Thread Scott Sharkey

Hi All,

I know that the -nolisten tcp option is supposed to stop X from
opening a TCP Port and listening on it.  BUT, with RH 7.2 with
all errata applied, this option does not seem to be having any
effect.  I've put the option on both the /etc/X11/xdm/Xservers
file and in the /etc/X11/gdm/gdm.conf file.  So, where, exactly,
does RH run the X command if it's not one of these two files?

Thanks!
-Scott



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Booting from external FireWire drive

2002-03-05 Thread Rev. David P. Giffen

As far as I know you will not be able to boot from the Ilink port. I own a
Vaio F560. Sony never meant it to be used at boot time. When they set it up
they had there digital recorders in mind. Not diskdrives. You would have to
boot from the internal harddrive then possibly you be able to use the ilink
port.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Todd A. Jacobs
 Sent: Saturday, March 02, 2002 1:26 AM
 To: RedHat List
 Subject: Booting from external FireWire drive


 Has anyone had any experience with getting Linux to boot from an external
 FireWire drive--especially through a Vaio Z505-JS i.Link port? I've
 searched extensively via Google, and haven't turned up a single reference
 to someone doing this successfully.

 Any feedback or useful links would be very much appreciated.

 --
 The only thing that helps me maintain my slender grip on reality is the
 friendship I share with my collection of singing potatoes.

   - Holly, JMC Vessel *Red Dwarf*



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: question about packages rawhide, bugzilla etc.

2002-03-05 Thread Ed Wilts

On Tue, Mar 05, 2002 at 11:01:59AM -0500, Jeff Bearer wrote:
 What is the best place to find information about rawhide packages
 bugzilla?  
 
 The reason I'm asking is that I saw the Amanda package in rawhide.
 (2.42p2-5) and the latest production rpm from RH is 2.4.2p2-4. I want to
 know what has been changed in the last revision, but from bugzilla I
 can't find out.  Is there someplace I can find a change log, or is there
 a WebCVS or something that has this information?

Assuming that the package developer has done his/her job properly, you should
be able to download the package and then do an rpm -q package --changelog.
This will extract the changelog from the package and display it to the screen -
you may want to pipe this to less.

Not all packages have complete changelogs, and some don't have a changelog at
all, but this is usually a good start.

-- 
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Simple printer setup

2002-03-05 Thread fred smith

On Mon, Mar 04, 2002 at 07:31:46PM -0600, bbales wrote:
 I have RH7.2 and a canon bjc6000 printer.  It does a great job printing 
 pictures with gimp, but I can't get it to print text.
 
 I set it up with printconf-gui, it showed me a bjc6000 driver which I 
 selected.  Hit apply and then test.  Popup box said sent test page to 
 printer, but the printer was silent.  Same thing with lpr test2.txt.  No 
 response from the printer.  What have I neglected to do?

Have you installed all the printing-related updates for RH 7.2? if not
go to redhat.com and look at the errata list. there are several that
affect the printing subsystem.

Fred
-- 
 Fred Smith -- [EMAIL PROTECTED] -
Not everyone who says to me, 'Lord, Lord,' will enter the kingdom of
 heaven, but only he who does the will of my Father who is in heaven.
-- Matthew 7:21 (niv) -



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: question about packages rawhide, bugzilla etc.

2002-03-05 Thread Jeff Bearer

Thanks Ed,

And in-case anyone else is listening, if you want to query the rpm file
without installing it, the command will be rpm -qp file.rpm --changelog

On Tue, 2002-03-05 at 12:07, Ed Wilts wrote:
 On Tue, Mar 05, 2002 at 11:01:59AM -0500, Jeff Bearer wrote:
  What is the best place to find information about rawhide packages
  bugzilla?  
  
  The reason I'm asking is that I saw the Amanda package in rawhide.
  (2.42p2-5) and the latest production rpm from RH is 2.4.2p2-4. I want to
  know what has been changed in the last revision, but from bugzilla I
  can't find out.  Is there someplace I can find a change log, or is there
  a WebCVS or something that has this information?
 
 Assuming that the package developer has done his/her job properly, you should
 be able to download the package and then do an rpm -q package --changelog.
 This will extract the changelog from the package and display it to the screen -
 you may want to pipe this to less.
 
 Not all packages have complete changelogs, and some don't have a changelog at
 all, but this is usually a good start.
 
 -- 
 Ed Wilts, Mounds View, MN, USA
 mailto:[EMAIL PROTECTED]
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
-- 
Jeff Bearer, RHCE
Webmaster
PittsburghLIVE.com
2002 EPpy Award, Best Online U.S. Newspaper



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: ifconfig problem and rh 72

2002-03-05 Thread Edward Marczak

On 3/4/02 2:32 PM, Keith Morse [EMAIL PROTECTED] wrote:

 Not IIRC, 'ip' has been around quite awhile and is independent of (or
 maybe more accurately, included in ) most linux distributions.  I believe
 the package on Redhat systems is 'iproute' or 'iproute2'.

Interesting.  Yeah - the command is 'ip'.  On my 7.2 box, for the package, I
get:

# rpm -q iproute
iproute-2.2.4-14

Learn something new every day.  Thanks.
-- 
Ed Marczak
[EMAIL PROTECTED]



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Booting from external FireWire drive

2002-03-05 Thread Gordon Messmer

just grub-install /dev/hda won't be enough.  In order to boot from a
device, the BIOS has to know enough to load your OS's boot loader. 
Then, your boot loader has to have the smarts to load the kernel. 
Normally (as in, with lilo or grub) your boot loader isn't going to be
able to access devices that the BIOS itself can not.  So, if your BIOS
doesn't support booting from the media you want your root FS on, then
your boot loader, kernel, and initrd must all exist on a media that the
BIOS can access.

A couple of years ago, when we were loading a linux installation from a
parallel port ZIP disk, we had the kernel and boot loader on a floppy
disk, for instance.  Another option is to keep loadlin, your kernel, and
your initrd on a DOS partition (if you use that OS).  loadlin can boot
Linux if its run in DOS mode.  This option is becoming less frequently
feasible, as there is no DOS mode under Win2k or XP.

On Mon, 2002-03-04 at 08:22, Paul Hamm wrote:
 Have never worked with firewire.  But as it works in a similar fashion to
 scsi I suspect you will be able to get this to work.  There are several
 issue which you will need to deal with.  Booting directly from the firewire
 drive will most likely not be possible.  The reason is that IDE likes to go
 first.  So unless the bios has an option to boot from the firewire port I
 expect you will need to # grub-install /dev/hda to get the boot loader
 rolling.  The other issue is that you will need to be sure that the initrd
 includes the firewire modules.  Again I am not sure but are the drivers for
 this port in the release?  Can you get the drivers for linux?  If the
 drivers are not in the release but you can get them on disk for linux you
 will need to do an expert install of RH and feed the driver disk when asked.
 What exactly is the problem you are currently having?.
 
 -Original Message-
 From: Todd A. Jacobs [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, March 02, 2002 2:26 AM
 To: RedHat List
 Subject: Booting from external FireWire drive
 
 
 Has anyone had any experience with getting Linux to boot from an external 
 FireWire drive--especially through a Vaio Z505-JS i.Link port? I've 
 searched extensively via Google, and haven't turned up a single reference 
 to someone doing this successfully.
 
 Any feedback or useful links would be very much appreciated.
 
 -- 
 The only thing that helps me maintain my slender grip on reality is the
 friendship I share with my collection of singing potatoes.
 
   - Holly, JMC Vessel *Red Dwarf*
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Empty FTP window.

2002-03-05 Thread Gordon Messmer

Make sure that you're either using PASV FTP or your firewall supports
NAT for FTP.

If you're running RH 7 on your router, you may need to load the
ip_conntrack, ip_conntrack_ftp, and ip_nat_ftp modules.


On Mon, 2002-03-04 at 22:53, SignGuy wrote:
 Hello All.
  need some help..RH 7.1 has been running error free for months.
 
  today went to upload some new files and everything in FTP window is gone.??
 
 FTP Logs into server fine ... but  NO DIRECTORIES or files? even if I go back every 
directory
 
  so I tried to create a new test directory. it created it but still was not showing 
in FTP window.
 
 I jumped over to telnet just to see.. everything is still there INCLUDING new test 
directory.
 
 
 -jg
 
 *I FTPed into another server to test FTP program, and it works fine




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: How to format man pages for A4 paper printing?

2002-03-05 Thread Linux

This can be best done by using Google and typing for example man iptables
or whatever they are all up there

Mike

-Original Message-
From: Rick van der Linde [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 5 March 2002 23:42
To: [EMAIL PROTECTED]
Subject: Re: How to format man pages for A4 paper printing?




Hello.

I want to print some manuals, but the default formatting I am getting
is for letter paper and I am using A4 paper. I am doing:


  $ man -t fvwm2 | lpr

to print the fvwm2 manual, for example. What should I do to get
A4 paper formatting?

I can't tell you exactly what to do. But I know you'll need
to change an/some entries in your /etc/printcap file.

Probably you'll be able to change settings in  printconf
too. It will allow you to choose the default paper size.

Hope this helps.

Rick




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


This mail was processed by Mail essentials for Exchange/SMTP, 
the email security  management gateway. Mail essentials adds 
content checking, email encryption, anti spam, anti virus, 
attachment compression, personalised auto responders, archiving 
and more to your Microsoft Exchange Server or SMTP mail server. 
For more information visit http://www.mailessentials.com



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: rh 8 beta 233 mmx install..

2002-03-05 Thread Jesus Ortega (a.k.a. Nitebirdz)

On Tue, 5 Mar 2002, Paul Hamm wrote:

 There is a reason that they call them beta.  If you don't like it reinstall
 7.2
 


... and subscribe to the mailing list that Red Hat itself created for the 
pensacola beta.  



-- 
Nitebirdz

Mozilla-- http://www.mozilla.org/
Linux XFS-- http://oss.sgi.com/projects/xfs/



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: rh 8 beta 233 mmx install..

2002-03-05 Thread Timothy Lee Young

I thought this wasn't actually RH 8 beta; can we stop confusing ourselves!




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: ntpd doesn't use distant servers time

2002-03-05 Thread Todd A. Jacobs

On Tue, 5 Mar 2002, Dumas Patrice wrote:

  remote   refid  st t when poll reach   delay   offset  jitter
 ==
  LOCAL(0)LOCAL(0)10 l   17   6470.0000.000   0.008
  dns.univ-lyon1. 0.0.0.0 16 u-   6400.0000.000 4000.00
  lptfpc46.obspm. 0.0.0.0 16 u-   6400.0000.000 4000.00
  zen.via.ecp.fr  0.0.0.0 16 u-   6400.0000.000 4000.00
  sherkan.tuxfami 0.0.0.0 16 u-   6400.0000.000 4000.00

Reachability for all the listed timeservers is 0, which means you have
never had a successful connect. Check your firewall logs, or do an
ntptrace. Chances are, the packets are being rejected at your side or
theirs.

-- 
The only thing that helps me maintain my slender grip on reality is the
friendship I share with my collection of singing potatoes.

- Holly, JMC Vessel *Red Dwarf*





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: C++ on RedHat 7.2

2002-03-05 Thread David Winters

On 4 Mar 2002, Carey F. Cox wrote:

On Mon, 2002-03-04 at 19:33, Graeme Jensen wrote:
 I'm studying C++ at the moment using Code Warrior on windows, but would like
 to do it using the development software in red hat 7.2.  Have tried a few
 times but can't seem to configure it to work properly.  Do I have to install
 the libraries for C++ or make them myself?  As I'm only a beginner with C++
 I can't do that.  What can I do??
 Graeme
 

Assuming that you opted for the installation of development tools, C++
should be ready for use. Try the following on the command line...

$ g++
g++: No input files   -This should be the response.

Now there are several choices for C/C++ integrated environments to
choose from. 

   SourceNavigator
   Kdevelop
   Vide
   RHIDE
   Anjuta

On the buyware front, if you're really happy with CodeWarrior, Metrowerks 
offers it for Linux.  I don't know if it's exactly like the Win32 versions; 
YMMV.

I haven't used it myself, but I haven't heard complaints from the students 
that have installed it, either.  IIRC it's designed to use RPM to install.


D.

I have personally used rhide and vide with good results. These will both
run under windows as well as linux and as such are the obvious choice
for use in our courses here. Of the two, I prefer vide, though neither
should probably be used for any massive coding project undertakings. I
have tried Source Navigator, but wasn't very successful with it.
...steep learning curve and little documentation. I haven't tried anjuta
yet, but it appears to have a very nice interface. I know nothing at all
about kdevelop. 

Try using google to search for those keywords or go perform a search on 
http://www.freshmeat.net

Hope that helps!

Carey   




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Simple printer setup

2002-03-05 Thread bbales

Ran up2date yesterday and today downloaded all the rpms that looked like 
pertinent to printing and ran them.  All answered Already installed.

Symptoms are still the same - Abiword and using lpr just end with no error 
message.  Kword answers print error - error while filtering - enscript  -p 
%out  %in   Gimp still prints great in full color.

Don't know  if it means anything, but   /usr/share/config/kdeprintrc only 
contains the following:

[General]
Orientation=1
ViewType=1
ViewToolBar=true
ViewPrinterInfos=true

while the printrc in the .gimp directory has lots more:  

#PRINTRCv1 written by GIMP-PRINT 4.0.4 - 02 Dec 2000
Current-Printer: bjc6000@bertha

Printer: File
Destination:
Driver: ps2
PPD-File:
Output-Type: 1
Resolution:
Media-Size:
Media-Type:
Media-Source:
Brightness: 1.000
Scaling: 100.000
Orientation: -1
Left: -1
Top: -1
Gamma: 1.000
Contrast: 1.000
Cyan: 1.000
Magenta: 1.000
Yellow: 1.000
Linear: 0
Image-Type: 2
Saturation: 1.000
Density: 1.000
Ink-Type:
Dither-Algorithm:
Unit: 0


On Tuesday 05 March 2002 06:32 am, you wrote:
 On Mon, Mar 04, 2002 at 07:31:46PM -0600, bbales wrote:
  I have RH7.2 and a canon bjc6000 printer.  It does a great job printing
  pictures with gimp, but I can't get it to print text.
 
  I set it up with printconf-gui, it showed me a bjc6000 driver which I
  selected.  Hit apply and then test.  Popup box said sent test page to
  printer, but the printer was silent.  Same thing with lpr test2.txt.  No
  response from the printer.  What have I neglected to do?

 Have you installed all the printing-related updates for RH 7.2? if not
 go to redhat.com and look at the errata list. there are several that
 affect the printing subsystem.

 Fred



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



vmware, running windows XP

2002-03-05 Thread nit etc

Hello,

I'm about to install Linux on my laptop which runs
Windows XP as of now. However, does anyone know if it
is possible to boot my already installed Windows XP
from Vmware running on Linux? The reason I ask this
question is that Vmware might report pseudo hardware
information to XP and this might cause problems
because of its activation feature or whatever its
called.

Looked on www.vmware.com but I couldnt find an answer
to the above question.

Thanks!

__
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Video card

2002-03-05 Thread ebinc

Does anyone know a Video card I can find at a best buy,CompUSA, staples etc
that will work right out of the box does my motherboard have anything to do
with it
I have a ASUS TUSL-2 I tried a ATI Radeon card a ATI Expert 128 card neither
work
Thanks Ed



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



network selective packet loss

2002-03-05 Thread Aaron M Daley

I get the following ping info on my mail server and now one of our file
servers as well indicating that we may have been hacked or there's a
virus spreading. Here are two ping results from the same machine. Ping
results from the file server are identical.
PING 192.168.10.5 (192.168.10.5) from 192.168.10.60 : 56(84) bytes of
data.
64 bytes from 192.168.10.5: icmp_seq=0 ttl=128 time=0.8 ms
64 bytes from 192.168.10.5: icmp_seq=1 ttl=128 time=8.6 ms
64 bytes from 192.168.10.5: icmp_seq=2 ttl=128 time=16.3 ms
64 bytes from 192.168.10.5: icmp_seq=3 ttl=128 time=24.3 ms
64 bytes from 192.168.10.5: icmp_seq=4 ttl=128 time=32.3 ms
64 bytes from 192.168.10.5: icmp_seq=5 ttl=128 time=40.3 ms
64 bytes from 192.168.10.5: icmp_seq=6 ttl=128 time=48.3 ms
64 bytes from 192.168.10.5: icmp_seq=7 ttl=128 time=56.3 ms
64 bytes from 192.168.10.5: icmp_seq=8 ttl=128 time=64.3 ms
64 bytes from 192.168.10.5: icmp_seq=9 ttl=128 time=72.3 ms
64 bytes from 192.168.10.5: icmp_seq=10 ttl=128 time=80.3 ms
64 bytes from 192.168.10.5: icmp_seq=11 ttl=128 time=88.3 ms
64 bytes from 192.168.10.5: icmp_seq=12 ttl=128 time=96.3 ms
64 bytes from 192.168.10.5: icmp_seq=13 ttl=128 time=104.3 ms
64 bytes from 192.168.10.5: icmp_seq=14 ttl=128 time=112.4 ms
64 bytes from 192.168.10.5: icmp_seq=15 ttl=128 time=120.3 ms
64 bytes from 192.168.10.5: icmp_seq=16 ttl=128 time=128.3 ms
64 bytes from 192.168.10.5: icmp_seq=17 ttl=128 time=136.4 ms
64 bytes from 192.168.10.5: icmp_seq=18 ttl=128 time=144.3 ms
64 bytes from 192.168.10.5: icmp_seq=19 ttl=128 time=152.3 ms
64 bytes from 192.168.10.5: icmp_seq=20 ttl=128 time=160.4 ms
64 bytes from 192.168.10.5: icmp_seq=21 ttl=128 time=168.3 ms
64 bytes from 192.168.10.5: icmp_seq=22 ttl=128 time=176.3 ms
64 bytes from 192.168.10.5: icmp_seq=23 ttl=128 time=184.3 ms
64 bytes from 192.168.10.5: icmp_seq=24 ttl=128 time=192.4 ms
64 bytes from 192.168.10.5: icmp_seq=25 ttl=128 time=200.3 ms
64 bytes from 192.168.10.5: icmp_seq=26 ttl=128 time=208.4 ms
64 bytes from 192.168.10.5: icmp_seq=27 ttl=128 time=216.3 ms
64 bytes from 192.168.10.5: icmp_seq=28 ttl=128 time=224.3 ms
64 bytes from 192.168.10.5: icmp_seq=29 ttl=128 time=232.3 ms
64 bytes from 192.168.10.5: icmp_seq=30 ttl=128 time=240.3 ms
64 bytes from 192.168.10.5: icmp_seq=31 ttl=128 time=248.3 ms
64 bytes from 192.168.10.5: icmp_seq=32 ttl=128 time=256.3 ms
64 bytes from 192.168.10.5: icmp_seq=33 ttl=128 time=264.3 ms
64 bytes from 192.168.10.5: icmp_seq=34 ttl=128 time=272.3 ms
64 bytes from 192.168.10.5: icmp_seq=35 ttl=128 time=280.3 ms
64 bytes from 192.168.10.5: icmp_seq=36 ttl=128 time=288.3 ms
64 bytes from 192.168.10.5: icmp_seq=37 ttl=128 time=296.3 ms
64 bytes from 192.168.10.5: icmp_seq=38 ttl=128 time=304.3 ms
64 bytes from 192.168.10.5: icmp_seq=39 ttl=128 time=312.3 ms
64 bytes from 192.168.10.5: icmp_seq=40 ttl=128 time=320.3 ms
64 bytes from 192.168.10.5: icmp_seq=41 ttl=128 time=328.3 ms
64 bytes from 192.168.10.5: icmp_seq=42 ttl=128 time=336.3 ms
64 bytes from 192.168.10.5: icmp_seq=43 ttl=128 time=344.3 ms
64 bytes from 192.168.10.5: icmp_seq=44 ttl=128 time=352.2 ms
64 bytes from 192.168.10.5: icmp_seq=45 ttl=128 time=360.3 ms
64 bytes from 192.168.10.5: icmp_seq=46 ttl=128 time=368.3 ms
64 bytes from 192.168.10.5: icmp_seq=47 ttl=128 time=376.3 ms
64 bytes from 192.168.10.5: icmp_seq=48 ttl=128 time=384.4 ms
64 bytes from 192.168.10.5: icmp_seq=49 ttl=128 time=392.3 ms
64 bytes from 192.168.10.5: icmp_seq=50 ttl=128 time=400.4 ms
64 bytes from 192.168.10.5: icmp_seq=51 ttl=128 time=408.3 ms
64 bytes from 192.168.10.5: icmp_seq=52 ttl=128 time=416.3 ms
64 bytes from 192.168.10.5: icmp_seq=53 ttl=128 time=424.3 ms
64 bytes from 192.168.10.5: icmp_seq=54 ttl=128 time=432.3 ms
64 bytes from 192.168.10.5: icmp_seq=55 ttl=128 time=440.3 ms
64 bytes from 192.168.10.5: icmp_seq=56 ttl=128 time=448.3 ms
64 bytes from 192.168.10.5: icmp_seq=57 ttl=128 time=456.3 ms
64 bytes from 192.168.10.5: icmp_seq=58 ttl=128 time=464.3 ms
64 bytes from 192.168.10.5: icmp_seq=59 ttl=128 time=472.3 ms
64 bytes from 192.168.10.5: icmp_seq=60 ttl=128 time=480.2 ms
64 bytes from 192.168.10.5: icmp_seq=61 ttl=128 time=488.3 ms
64 bytes from 192.168.10.5: icmp_seq=62 ttl=128 time=496.2 ms
64 bytes from 192.168.10.5: icmp_seq=63 ttl=128 time=504.3 ms
64 bytes from 192.168.10.5: icmp_seq=64 ttl=128 time=512.3 ms
64 bytes from 192.168.10.5: icmp_seq=65 ttl=128 time=520.3 ms
64 bytes from 192.168.10.5: icmp_seq=66 ttl=128 time=528.2 ms
64 bytes from 192.168.10.5: icmp_seq=67 ttl=128 time=536.3 ms
64 bytes from 192.168.10.5: icmp_seq=68 ttl=128 time=544.3 ms
64 bytes from 192.168.10.5: icmp_seq=69 ttl=128 time=552.3 ms
64 bytes from 192.168.10.5: icmp_seq=70 ttl=128 time=560.3 ms
64 bytes 

Re: ClanLib install question - now glut.h

2002-03-05 Thread hanfamily

Thanks Emmanuel
It is a great site I got ClanLib installed however
the game I am trying to compile still wont compile
It says it needs glut.h and gl.h anybody know what
development package I need now?
Linda



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Video card

2002-03-05 Thread Vidiot

Does anyone know a Video card I can find at a best buy,CompUSA, staples etc
that will work right out of the box does my motherboard have anything to do
with it
I have a ASUS TUSL-2 I tried a ATI Radeon card a ATI Expert 128 card neither
work
Thanks Ed

Doesn't work as in you get nothing at all, or doesn't work in that Red Hat
doesn't seem to be able to configure for it?  You need to supply details.
I'm fairly certain that the ATI Expert 128 card is on the compatible list.
Yep, I just looked.

MB
-- 
e-mail: [EMAIL PROTECTED]   It is God's job to forgive bin Laden.
It is our job to set up the meeting.
U.S. Marine Corp.
Visit - URL: http://www.vidiot.com/  (Your link to Star Trek and UPN)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Video card

2002-03-05 Thread daniel

and i've got an all-in-wonder radeon 32mb.  it worked just fine outta the
box with rh72.  don't know about the tv component though (don't know how to
use it in linux) but the video card works nicely (1600x1200x32).  the 3d
acceleration doesn't seem to work very well though (tuxracer is still
chunky).

_
daniel a. g. quinn
starving programmer

your old road is rapidly aging
please get out of the way if you can't lend a hand
for the times they are a changing
  - bob dylan

- Original Message -
From: Vidiot [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, March 05, 2002 2:07 PM
Subject: Re: Video card


 Does anyone know a Video card I can find at a best buy,CompUSA, staples
etc
 that will work right out of the box does my motherboard have anything to
do
 with it
 I have a ASUS TUSL-2 I tried a ATI Radeon card a ATI Expert 128 card
neither
 work
 Thanks Ed

 Doesn't work as in you get nothing at all, or doesn't work in that Red Hat
 doesn't seem to be able to configure for it?  You need to supply details.
 I'm fairly certain that the ATI Expert 128 card is on the compatible list.
 Yep, I just looked.

 MB
 --
 e-mail: [EMAIL PROTECTED]   It is God's job to forgive bin Laden.
 It is our job to set up the meeting.
 U.S. Marine Corp.
 Visit - URL: http://www.vidiot.com/  (Your link to Star Trek and UPN)



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Keyboard and mouse die

2002-03-05 Thread Chet Nichols

Hey there,

I'm running Redhat 7.2 on an IBM Thinkpad i1300 series laptop, and for 
some reason, the keyboard and/or mouse will just stop working at random 
times. The system itself is still okay (ie: if im playing an MP3 it will 
continue to play, or if I'm chatting in IRC the chat will keep coming). 
I just won't be able to move the cursor, enter text with the keyboard, 
or both.. I was wondering why this is happening, and what I can do to 
fix it. Hopefully it's a pretty common problem. Thanks in advance for 
helping! :)

Chet



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Incorrect cursor location

2002-03-05 Thread Chet Nichols

Hey again,

Another problem I'm having is every now and then I'll go to click a 
button with the cursor, but it will click in a different location on the 
screen itself. An example: If I go to click at a coordinate point 
540,600 on the screen, the system will read it as me clicking at 520,600 
instead. It's always incorrect along the x-axis. I have an IBM Thinkpad 
i1300 with RedHat 7.2 installed..do you think the problem has to do with 
the little mouse nipple it has? Thanks in advance for any help! :)

Chet



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



USB on an IBM Thinkpad i1300

2002-03-05 Thread Chet Nichols

Hey everyone,

I've got an IBM Thinkpad i1300 with Redhat 7.2 installed, and I've had 
to disable USB on it because every time the machine boots, it freezes at 
'Initializing USB Controller'. I've tried to read up on how to fix it, 
but haven't found many credible sources. For the time being I just have 
my rc.sysinit file edited to not initialize USB..but I want to figure 
out how to fix my problem so I can get my USB Epson 880 printer working 
:) Thanks in advance for any help! :)

Chet



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: pdf to html

2002-03-05 Thread Chen Shi-Ping


Thanks for response my email. ImageMagick converts my table into an image
file. Thanks.

Shi-Ping

On Tue, 5 Mar 2002, Manoj wrote:

 Try ImageMagick 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Chen Shi-Ping
 Sent: Tuesday, March 05, 2002 10:16 AM
 To: [EMAIL PROTECTED]
 Subject: pdf to html
 
 
 
 I have RH7.1. I need to convert from Adobe files with tables to html
 files.
 
 I have downloaded pdftohtml converter from www.rpmfind.net and tried it,
 but the table's grid has been disappeared.
 
 Has anyone known a better converter on conversion from pdf to htm. Thanks.
 
 Shi-Ping Chen
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: USB on an IBM Thinkpad i1300

2002-03-05 Thread Edward Dekkers

 out how to fix my problem so I can get my USB Epson 880 printer working
 :) Thanks in advance for any help! :)

 Chet

Uhm, I know this doesn't really fix the problem but he 880 has a parallel
port. Why not just use that?

Ed.




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: USB on an IBM Thinkpad i1300

2002-03-05 Thread Ed Wilts

From: Edward Dekkers [EMAIL PROTECTED]
  out how to fix my problem so I can get my USB Epson 880 printer working
  :) Thanks in advance for any help! :)
 
  Chet

 Uhm, I know this doesn't really fix the problem but he 880 has a parallel
 port. Why not just use that?

When I had my Epson Phoot 870, I found it a lot faster on the USB interface
than the parallel interface.  After all, these printers do require the
transfer of a lot of data - it's not like the good old days when we had dot
matrix printers with built-in fonts and no graphics.

.../Ed

Ed Wilts
Mounds View, MN, USA
mailto:[EMAIL PROTECTED]




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Keyboard and mouse die

2002-03-05 Thread Manuel A. Camacho Q.

Does it happen when the screensaver is on?

I had similar problems that dissapeared deselecting some screensavers 
from the list of xscreensaver.

Hope this helps.

-Manuel.



Chet Nichols wrote:

 Hey there,
 
 I'm running Redhat 7.2 on an IBM Thinkpad i1300 series laptop, and for 
 some reason, the keyboard and/or mouse will just stop working at random 
 times. The system itself is still okay (ie: if im playing an MP3 it will 
 continue to play, or if I'm chatting in IRC the chat will keep coming). 
 I just won't be able to move the cursor, enter text with the keyboard, 
 or both.. I was wondering why this is happening, and what I can do to 
 fix it. Hopefully it's a pretty common problem. Thanks in advance for 
 helping! :)
 
 Chet
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
 




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: USB on an IBM Thinkpad i1300

2002-03-05 Thread Edward Dekkers

 When I had my Epson Phoot 870, I found it a lot faster on the USB
interface
 than the parallel interface.  After all, these printers do require the
 transfer of a lot of data - it's not like the good old days when we had
dot
 matrix printers with built-in fonts and no graphics.

 .../Ed

 Ed Wilts

Yep, I do realise this. I have an 880 myself and use USB instead of parallel
for that reason. All I meant to say (although I didn't do it very well) was
that if USB provides such a problem for the original poster, parallel will
get him going at least. He can then weight up the amount of time and effort
required to get USB working on the Thinkpad against how much of a speed
benefit he will gain out of the move.

Regards,
The other Ed.




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Keyboard and mouse die

2002-03-05 Thread Chet Nichols
Title: Re: Keyboard and mouse die



Hey Manuel,

I had actually read about that problem, so I disabled the screen saver to see if it helped..it didn't :( I mean, there are times where APM kicks in, and then it freezes at a black screen and I have to restart.

As for the keyboard and mouse dying, it will just be at completely random times. Sometimes in mozilla, sometimes when I've got the terminal open..I'm really confused with it :( Could the screensaver be indirectly affecting it somehow?

Talk to you soon, thanks :)

Chet



 Does it happen when the screensaver is on?

 I had similar problems that dissapeared deselecting some screensavers 
 from the list of xscreensaver.

 Hope this helps.

-Manuel.





Re: USB on an IBM Thinkpad i1300

2002-03-05 Thread Statux

Question: What kernel are you using?

On Wed, 6 Mar 2002, Chet Nichols wrote:

  Uhm, I know this doesn't really fix the problem but he 880 has a parallel
  port. Why not just use that?
 
 I guess going parallel a good option, and I've thought of it, but I
 basically just want to get USB up and running..I like getting everything
 working :-D Thanks for the suggestion though! I have a feeling I'll probably
 end up using it very shortly.
 
  When I had my Epson Phoot 870, I found it a lot faster on the USB interface
 
 How much faster is it? I'll probably just be using the printer for printing
 reports and things like that, at least to begin with. I'm sure if I ever
 want to print out PDF files I'll need USB.
 
 My main problem right now though is just getting USB working. But thanks for
 the great printer suggestions. Talk to you soon :)
 
 Chet 
 

-- 
-Statux



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: USB on an IBM Thinkpad i1300

2002-03-05 Thread Edward Dekkers

Re: USB on an IBM Thinkpad i1300 When I had my Epson Phoot 870, I found it
a lot faster on the USB interface

How much faster is it? I'll probably just be using the printer for printing
reports and things like that, at least to begin with. I'm sure if I ever
want to print out PDF files I'll need USB.

My main problem right now though is just getting USB working. But thanks for
the great printer suggestions. Talk to you soon :)

__

My experience is - quite a bit faster for the average document (text, html,
simple graphics etc). With parallel, the printer sometimes is too fast, and
the buffer doesn't get filled fast enough. The printer physically stops as
it waits for more data. USB doesn't seem to suffer this fate HOWEVER:

When printing the old 2880 dpi full colour photos it doesn't seem to matter
too much for me. The printer is so slow rendering the paper that the buffer
always seems full, regardless of whether I use USB or parallel.

As I'm sure you've seen though - the result is always well worth the wait in
any case.

Regards,
Ed.




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Keyboard and mouse die

2002-03-05 Thread Edward Dekkers

Re: Keyboard and mouse die
As for the keyboard and mouse dying, it will just be at completely random
times. Sometimes in mozilla, sometimes when I've got the terminal open..I'm
really confused with it :( Could the screensaver be indirectly affecting it
somehow?

Talk to you soon, thanks :)



To trace this down, do you want to do me a favour and turn off ALL the power
saving crap in the BIOS?

I have a sneaky feeling this may help.

Regards,
Ed.




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list