/etc/fstab

2003-02-06 Thread David Sudjiman
Dear Senior,

I'm using rh80 and curious about the /etc/fstab (I did man fstab)
1. I found

none/dev/ptsdevptsgid=5,mode=62000
none/procproc defaults   00
none/dev/shmtmpfs   defaults  00

what are that for?

2.  I have my win partition and I need it to be available on linux. Then I
add this line to my /etc/fstab
/dev/hda1/mnt/winvfatdefaults 0 0

but then I found that only root can write to this partition.. how can I make
every user in can write to this?


thx

.dave, knows nothing.



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



Re: /etc/fstab

2003-02-06 Thread Oeystein Olsen
On Thursday 06 February 2003 10:12, David Sudjiman wrote:
> Dear Senior,
>
> I'm using rh80 and curious about the /etc/fstab (I did man fstab)
> 1. I found
>
> none/dev/ptsdevptsgid=5,mode=62000
> none/procproc defaults   00
> none/dev/shmtmpfs   defaults  00
>
> what are that for?
>
> 2.  I have my win partition and I need it to be available on linux. Then I
> add this line to my /etc/fstab
> /dev/hda1/mnt/winvfatdefaults 0 0
>
> but then I found that only root can write to this partition.. how can I
> make every user in can write to this?

Something like (one line):

/dev/hda1   /mnt/win   vfat  
defaults,user,umask=077,gid=oeysteio,uid=oeysteio 0 0

-- 
Øystein Olsen, [EMAIL PROTECTED], http://folk.uio.no/oeysteio
Institute of Theoretical Astrophysics, http://www.astro.uio.no
University of Oslo, Norway



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



Re: /etc/fstab

2003-02-06 Thread Rui Miguel Seabra
On Thu, 2003-02-06 at 09:12, David Sudjiman wrote:
> Dear Senior,
> 
> I'm using rh80 and curious about the /etc/fstab (I did man fstab)
> 1. I found
> none/dev/ptsdevptsgid=5,mode=62000
> none/procproc defaults   00
> none/dev/shmtmpfs   defaults  00
> what are that for?

System virtual devices you usually need.
tmpfs is a filesystem that resides in RAM.

> 2.  I have my win partition and I need it to be available on linux. Then I
> add this line to my /etc/fstab
> /dev/hda1/mnt/winvfatdefaults 0 0
> 
> but then I found that only root can write to this partition.. how can I make
> every user in can write to this?

TIMTOWTDI...

edit /etc/security/console.perms and base upon floppy and disk...
Add this to # device classes -- these are shell-style globs
=/dev/hda1,/mnt/win

And then add this to # permission definitions
  0660  0660 root.disk

change your fstab entry to:

/dev/hda1/mnt/winvfatdefaults,owner,rw 0 0

Now, I'm saying this by heart, so there may still be some rough edge to
adjust, but it's a good starting point.

Another (faster) way to do it, is:
/dev/hda1/mnt/winvfatdefaults,user,uid=YOURUID,gid=YOURGID 0
0

But this is not so neat :)

-- 
+ No matter how much you do, you never do enough -- unknown
+ Whatever you do will be insignificant,
| but it is very important that you do it -- Gandhi
+ So let's do it...?

Please AVOID sending me WORD, EXCEL or POWERPOINT attachments.
See http://www.fsf.org/philosophy/no-word-attachments.html



signature.asc
Description: This is a digitally signed message part


Re: Perl CGI

2003-02-06 Thread Neil Bird
Around about 05/02/2003 14:36, Ryan McDougall typed ...

I got all excited cuz that sounded like that could have been the problem but I
have the same output, including the '.' :-( But thanx for the suggestion
though.


  '.' may not (prob. doesn't) equal the dir. of script, but the dir. 
that the server's running 'in'.  Try ref.ing the full pathname, and if 
that works, you'll have to the the basename off of $0 (the running 
script) and push it into @INC.

--
[neil@fnx ~]# rm -f .signature
[neil@fnx ~]# ls -l .signature
ls: .signature: No such file or directory
[neil@fnx ~]# exit



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


Re: /etc/fstab

2003-02-06 Thread JD
Rui Miguel Seabra wrote:


On Thu, 2003-02-06 at 09:12, David Sudjiman wrote:
 

Dear Senior,

I'm using rh80 and curious about the /etc/fstab (I did man fstab)
1. I found
none/dev/ptsdevptsgid=5,mode=62000
none/procproc defaults   00
none/dev/shmtmpfs   defaults  00
what are that for?
   


System virtual devices you usually need.
tmpfs is a filesystem that resides in RAM.

 

2.  I have my win partition and I need it to be available on linux. Then I
add this line to my /etc/fstab
/dev/hda1/mnt/winvfatdefaults 0 0

but then I found that only root can write to this partition.. how can I make
every user in can write to this?
   


TIMTOWTDI...

edit /etc/security/console.perms and base upon floppy and disk...
Add this to # device classes -- these are shell-style globs
=/dev/hda1,/mnt/win

And then add this to # permission definitions
  0660  0660 root.disk

change your fstab entry to:

/dev/hda1/mnt/winvfatdefaults,owner,rw 0 0

Now, I'm saying this by heart, so there may still be some rough edge to
adjust, but it's a good starting point.

Another (faster) way to do it, is:
/dev/hda1/mnt/winvfatdefaults,user,uid=YOURUID,gid=YOURGID 0
0

But this is not so neat :)

 


A shorter one:
  /dev/hda1/mnt/winvfatnoauto,user00

Then everybody can mount it and xrw the files.



JD





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



Re: Perl CGI

2003-02-06 Thread Ryan McDougall

--- Neil Bird <[EMAIL PROTECTED]> wrote:
>'.' may not (prob. doesn't) equal the dir. of script, but the dir. 
> that the server's running 'in'.  Try ref.ing the full pathname, and if 
> that works, you'll have to the the basename off of $0 (the running 
> script) and push it into @INC.
> 
> -- 
> [neil@fnx ~]# rm -f .signature
> [neil@fnx ~]# ls -l .signature
> ls: .signature: No such file or directory
> [neil@fnx ~]# exit

That was completely it. I had to fully refferance the path of the file. Does
anyone know if this is something new in Perl? Wow I guess I need to get a new
Apache administration book and a NEW Perl book.

Sorry everyone that this got off list topic, but thanx for the help!

Thanx for all the help,
Ryan

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com



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



Re: Disk space usage analysis

2003-02-06 Thread Cliff Kent
Gotta love the pace of open source progress and google as a way to find 
things.

At http://kdirstat.sourceforge.net/kdirstat.html, near the bottom of the 
page:

> 2002-10-23 New RPM for RedHat 8.0
>
> Daniel Tschan kindly provided a KDirStat 2.2.0 RPM for RedHat Linux
> 8.0:

http://kdirstat.sourceforge.net/download/RedHat-8.0/kdirstat-2.2.0-1.i386.rpm

It's not the latest version. But, it's an easy way to check out the 
program and it works nicely. I'll have a look at what's in the newer 
version next.

I'm surprised that kdirstat is not a standard part of Red Hat 8.x.

Thanks for the tip,

ck



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


An interesting problem

2003-02-06 Thread Joshua Dolan

Greetings,

I installed RH 8.0 back in October and have had few problems.  I have my box 
connected to the internet thru our company DSL line and it is working well.  
Recently, I setup a modem (dialup) connection for a backup to our ADSL 
connection, (that is where I found a problem.)  The modem dials up great and 
connects to the ISP reliably.  But when I try to get email or go to 
websites, sometimes it works and sometimes not!

I replaced the modem (a 3COM USR PCI modem) and the new one did the same 
thing.  The ISP settings are the same for the ADSL carrier as the dialup 
carrier (they are one in the same.)  Has anyone had problems with unreliable 
dialup connections and how have you solved them?  Our WeenieDoze box has no 
problems doing dialups on the same line.

Any help appreciated guys!

Josh Dolan
IS and Technology Director
Seal-Rite Inc.
Pataskala, Ohio





_
MSN 8 with e-mail virus protection service: 2 months FREE*  
http://join.msn.com/?page=features/virus



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


Re: An interesting problem

2003-02-06 Thread Tom Georgoulias
Joshua Dolan wrote:

The 
modem dials up great and connects to the ISP reliably.  But when I try 
to get email or go to websites, sometimes it works and sometimes not!
Has anyone had problems with 
unreliable dialup connections and how have you solved them?

Funny you mention this, I've noticed an increase in the amount of 
dropped dialup connections on my system for some time, but the increase 
isn't so large that I've started pulling my hair out.  More like 5-10%, 
usually within the first few minutes after connecting but also occuring 
in the time frame thereafter.  I've got the same modem too:  56k 
USR/3Com PCI.  After confirming that it wasn't my ISP's fault, I figured 
some construction or other outside influences were degrading phone 
service quality around my house.  I didn't read about any major changes 
within the ppp/modem code between 7.3 and 8.0, so I never suspected an 
upgrade from 7.3 to 8.0 to be the problem.

(Oh, in case you didn't notice, I have no solutions to share either!  ;)
Tom



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


Re: An interesting problem

2003-02-06 Thread Dave Sherman
On Thu, 2003-02-06 at 09:01, Joshua Dolan wrote:
> 
> Greetings,
> 
> I installed RH 8.0 back in October and have had few problems.  I have my box 
> connected to the internet thru our company DSL line and it is working well.  
> Recently, I setup a modem (dialup) connection for a backup to our ADSL 
> connection, (that is where I found a problem.)  The modem dials up great and 
> connects to the ISP reliably.  But when I try to get email or go to 
> websites, sometimes it works and sometimes not!

Have you done any analysis at all, like simple ping tests to a hostname
vs. an IP address? Does the connection actually drop, or is it more like
name resolution failure? It would help if the symptoms can be narrowed
down a bit.

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



signature.asc
Description: This is a digitally signed message part


Re: spelling error

2003-02-06 Thread Brent Fox
On Wed, 2003-02-05 at 22:05, Mark Cates wrote:
> Everyone try this.  hover your cursor over the lock screen tab in the
> gnome menu.  the tooltip is "lock the screen so that you can
> temporairly leave your computer".  I think they meant to say
> temporarily.  Has this been reported. 

It could have been wrong in the Gnome that shipped with 8.0, but the
spelling looks correct in the Phoebe beta, so it must have been reported
and fixed.


Cheers,
   Brent



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



bugzilla ticket #83353

2003-02-06 Thread James Bunnell
If anyone has access to read this ticket number please do so. I have no
clue what Mr. Fox is trying to do here. As I have stated to Redhat
support, this is a Redhat isssue as the files he speaks of here, came
directly from the Redhat 8.0 packaged boxset purchased directly from
Redhat. So, if I have a package that is as he says, then I will presume
Redhat has committed fraud by his own admission.


Please help.

James



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



Re: /etc/fstab

2003-02-06 Thread Aaron Konstam
On Thu, Feb 06, 2003 at 04:12:32PM +0700, David Sudjiman wrote:
> 
> 2.  I have my win partition and I need it to be available on linux. Then I
> add this line to my /etc/fstab
> /dev/hda1/mnt/winvfatdefaults 0 0
> 
> but then I found that only root can write to this partition.. how can I make
> every user in can write to this?
I suspect it is more likely that your /win directory does not have
777 permission (or drwxrwxrwx)
-- 
---
Aaron Konstam
Computer Science
Trinity University
715 Stadium Dr.
San Antonio, TX 78212-7200

telephone: (210)-999-7484
email:[EMAIL PROTECTED]



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



Bash pattern matching

2003-02-06 Thread Vikram Goyal
Hello,

The files in one of my dir are:
.  .. .aliases   .aliases.sav   attach
dean   inbox  interestinglists  .log.02-01-11
.log.02-01-12  .log.02-01-13  .log.03-02-01  .log.03-02-02  .log.03-02-03
.log.03-02-04  .log.03-02-05  .log.03-02-06  .log.2-01-11   .log.2-1-11
.log.2-1-12.msgid.cache   sent   .tmp   trash

I want bash to match the following pattern in file listing but it
dosen't do that. Can you point what I am doing wrong.

ls Mail/.log\.[0-9]*$(($(date +'%y')-1))-[01]*$(($(date +'%m')-1))-*

Output is:
Mail/.log.02-01-11  Mail/.log.02-01-12  Mail/.log.02-01-13

The asterix is not being considered.
Why the files .log.2-01-11 .log.2-1-11 .log.2-1-12 are not matched?
Any solution...

Thanks.
-- 
vikram...<[EMAIL PROTECTED]>
 
 
^^'^^||root||^^^'''^^
// \\   ))
   //(( \\// \\
  // /\\ ||   \\
 || / )) ((\\
-- 
Thus My Computer Chittered :
~~
A rope lying over the top of a fence is the same length on each side.  It
weighs one third of a pound per foot.  On one end hangs a monkey holding a
banana, and on the other end a weight equal to the weight of the monkey.
The banana weighs two ounces per inch.  The rope is as long (in feet) as
the age of the monkey (in years), and the weight of the monkey (in ounces)
is the same as the age of the monkey's mother.  The combined age of the
monkey and its mother is thirty years.  One half of the weight of the monkey,
plus the weight of the banana, is one forth as much as the weight of the
weight and the weight of the rope.  The monkey's mother is half as old as
the monkey will be when it is three times as old as its mother was when she
she was half as old as the monkey will be when when it is as old as its mother
will be when she is four times as old as the monkey was when it was twice
as its mother was when she was one third as old as the monkey was when it
was old as is mother was when she was three times as old as the monkey was
when it was one fourth as old as it is now.  How long is the banana?
-- 
~|~
 =
Registered Linux User #285795



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



[Fwd: bugzilla ticket #83353]

2003-02-06 Thread James Bunnell
This has been resolved. Thanks.

James

-Forwarded Message-

From: James Bunnell <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: bugzilla ticket #83353
Date: 06 Feb 2003 09:27:58 +0700

If anyone has access to read this ticket number please do so. I have no
clue what Mr. Fox is trying to do here. As I have stated to Redhat
support, this is a Redhat isssue as the files he speaks of here, came
directly from the Redhat 8.0 packaged boxset purchased directly from
Redhat. So, if I have a package that is as he says, then I will presume
Redhat has committed fraud by his own admission.


Please help.

James



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



Logs

2003-02-06 Thread Marek
Hi

One of my logs seems to be growing daily by 10 Megs or so. I presume it
is a log as it happens in the / dir. How can i see which file is the
culprit ?

--
  /Marek
/Pawinski.net

There are two wolves inside me fighting. One evil, one good. The one i
feed will win.




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



RE: bugzilla ticket #83353

2003-02-06 Thread wrnash
http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=83353

This is what the bugzilla show on this.

Bill Nash


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
On Behalf Of James Bunnell
Sent: Wednesday, February 05, 2003 9:28 PM
To: [EMAIL PROTECTED]
Subject: bugzilla ticket #83353


If anyone has access to read this ticket number please do so. I have no
clue what Mr. Fox is trying to do here. As I have stated to Redhat
support, this is a Redhat isssue as the files he speaks of here, came
directly from the Redhat 8.0 packaged boxset purchased directly from
Redhat. So, if I have a package that is as he says, then I will presume
Redhat has committed fraud by his own admission.


Please help.

James



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




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



Re: bugzilla ticket #83353

2003-02-06 Thread Jesse Keating
On Wednesday 05 February 2003 18:27, James Bunnell wrote:
> If anyone has access to read this ticket number please do so. I have no
> clue what Mr. Fox is trying to do here. As I have stated to Redhat
> support, this is a Redhat isssue as the files he speaks of here, came
> directly from the Redhat 8.0 packaged boxset purchased directly from
> Redhat. So, if I have a package that is as he says, then I will presume
> Redhat has committed fraud by his own admission.

Seems as you have resolved this already...

--- Additional Comment #14 From James Bunnell on 2003-02-06 12:10 ---

Ahhh, it worked that way. I forgot the -Uvh the first time and just installed
it. Thank you very much. Sorry for my temper, it was just really annoying.

-- 
Jesse Keating RHCE MCSE
For Web Services and Linux Consulting, Visit --> j2Solutions.net
Mondo DevTeam (www.mondorescue.org)

Was I helpful?  Let others know:
 http://svcs.affero.net/rm.php?r=jkeating



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



Re: Logs

2003-02-06 Thread Jesse Keating
On Thursday 06 February 2003 09:12, Marek wrote:
> One of my logs seems to be growing daily by 10 Megs or so. I presume it
> is a log as it happens in the / dir. How can i see which file is the
> culprit ?

ls -alh /var/log/  ?  See whats big?

-- 
Jesse Keating RHCE MCSE
For Web Services and Linux Consulting, Visit --> j2Solutions.net
Mondo DevTeam (www.mondorescue.org)

Was I helpful?  Let others know:
 http://svcs.affero.net/rm.php?r=jkeating



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



RE:An Interesting Problem

2003-02-06 Thread Joshua Dolan


Dave,
It seems to be a name resolution problem.  In fact, I get the message, 
"Resolving host www.google.com" for instance, and it never resolves it.  Or 
when trying to get email (in Evolution), it just sits there and times out 
sometimes trying to get the email. Does that give you any clues?

Joshua Dolan
IS and Technology Director
Seal-Rite Inc.
Pataskala, OH


Original message

Have you done any analysis at all, like simple ping tests to a hostname vs. 
an IP address? Does the connection actually drop, or is it more like name 
resolution failure? It would help if the symptoms can be narrowed down a 
bit.

Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



_
Add photos to your messages with MSN 8. Get 2 months FREE*.  
http://join.msn.com/?page=features/featuredemail



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


RE: Installing multiple PCMCIA cards on a Laptop - How?

2003-02-06 Thread Levinshtein, Eyal
Thanks for the response,  that is exactly what I have now.   I am not sure
if I have to set some cards to eth1, or what is those aliases?  It is very
confusing...

Eyal



-Original Message-
From: Dave Sherman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 04, 2003 5:51 PM
To: RedHat 8.0
Subject: Re: Installing multiple PCMCIA cards on a Laptop - How?


On Tue, 2003-02-04 at 08:53, Levinshtein, Eyal wrote:
> I am attempting to install more then one NIC PCMCIA. (I don't need them to
> work together, just one at a time)  Each one serves different purpose.
(e.g.
> Wireless, Wired, etc.)
>  
> I got each one to work on RH Linux, my only problem is that when I install
> one, I got to remove the reference to other cards.
>  
> What is the methodology to installing multiple PCMCIA cards?   I am really
> not sure I understand what to do here, since all of the cards claiming
that
> they are "eth0"
>  
> Please help.

Eyal,

I ran into the same problem with my previous laptop -- I needed my
wireless PCMCIA NIC to use at home, and my ethernet PCMCIA NIC to use at
work.

The setup I got working, was to setup my wireless PCMCIA card as eth0
(which I did while at home), and then setup my ethernet PCMCIA card as
eth1 when I was at the office. During this setup, I had the wireless
PCMCIA card at home, not plugged in.

For whatever reason, it worked fine. Both cards came up as eth0 (since
only one was plugged in at a time), and when at the office I would see
an error about the incorrect module for eth0 being loaded, but it still
worked fine.

I never got the system to work correctly while both cards were plugged
in, even if only one card was connected to a network. As long as only
one card was plugged in, then whichever card was in use came up as eth0,
and it worked fine in spite of any error messages.

Hope this helps.

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



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



WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Levinshtein, Eyal
Is there any incompatibility in the WEP key?   

I enter a WEP key on the AP, and enter the same WEP key on my client in
Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will not
work.?

Any idea why?

I use Orinoco Gold and Lucent AP-500

Eyal



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



Re: Bash pattern matching

2003-02-06 Thread Tim Waugh
On Thu, Feb 06, 2003 at 07:39:09PM +0530, Vikram Goyal wrote:

> I want bash to match the following pattern in file listing but it
> dosen't do that. Can you point what I am doing wrong.

You are confusing fnmatch-style patterns (which the shell uses) with
regular expressions (which it doesn't).

Tim.
*/



msg14761/pgp0.pgp
Description: PGP signature


Re: RE:An Interesting Problem

2003-02-06 Thread Dave Sherman
On Thu, 2003-02-06 at 11:42, Joshua Dolan wrote:
> 
> 
> Dave,
> It seems to be a name resolution problem.  In fact, I get the message, 
> "Resolving host www.google.com" for instance, and it never resolves it.  Or 
> when trying to get email (in Evolution), it just sits there and times out 
> sometimes trying to get the email. Does that give you any clues?

The first thing I would try to do is ping a known IP address on the
Internet, and see if is successful. If it is, then you have it narrowed
down to a DNS problem. If you don't know any IP addresses, try the IP
address of your ISP's DNS server.

Assuming that it is a DNS problem, first check the file
/etc/resolv.conf. This holds the IP addresses of your DNS servers, and
it should match whatever the documentation from your ISP tells you.

When the ppp daemon dials up to your ISP to get a connection, it gets an
IP address for itself, a default gateway/router, and a DNS configuration
which it uses to update /etc/resolv.conf. If this file is not being
updated, it may be empty, or it may have the wrong information (from a
previous configuration).

In the "old days" of Linux (a couple of years ago), you had to manually
change the permissions on this file in order to allow the ppp daemon to
write to it. I would assume that RedHat takes care of the permissions
issue automatically, but I haven't done it in such a long time that I
really don't know.

Anyway, try pinging an IP address, and check your /etc/resolv.conf, and
let us know if anything turns up.

You might also want to check your syslog (/var/log/messages) and see if
pppd is throwing out any error messages when connecting. Just a
last-minute thought.

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



signature.asc
Description: This is a digitally signed message part


Re: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Dave Sherman
On Thu, 2003-02-06 at 11:50, Levinshtein, Eyal wrote:
> Is there any incompatibility in the WEP key?   
> 
> I enter a WEP key on the AP, and enter the same WEP key on my client in
> Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will not
> work.?
> 
> Any idea why?
> 
> I use Orinoco Gold and Lucent AP-500

I know I had to manually edit the config file for eth1 (my wireless
card), and change the channel to 6 (it was 1 by default).

You might also verify whether you are set to use 64 bit WEP or 128 bit
WEP. They do not use compatible keys, even if you (try to) enter the
same key for both.

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



signature.asc
Description: This is a digitally signed message part


RE: Installing multiple PCMCIA cards on a Laptop - How?

2003-02-06 Thread Dave Sherman
On Thu, 2003-02-06 at 11:49, Levinshtein, Eyal wrote:
> Thanks for the response,  that is exactly what I have now.   I am not sure
> if I have to set some cards to eth1, or what is those aliases?  It is very
> confusing...

I used to know what aliases were, but I've since forgotten. I think it
might be used when assigning multiple IP addresses to a single card. In
any case, you shouldn't need to worry about it.

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



signature.asc
Description: This is a digitally signed message part


Re: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Keith Winston
Levinshtein, Eyal wrote:

Is there any incompatibility in the WEP key?   

I enter a WEP key on the AP, and enter the same WEP key on my client in
Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will not
work.?

Any idea why?

I use Orinoco Gold and Lucent AP-500

It is working for me, but I am using the Orinoco Silver (40-bit key) and 
a Linksys access point.  This is format I used to enter my key:

--FF [4]

Notice I am using key 4.  There have been multiple posts by people who 
are using 128-bit keys, but I have never tried using anything but the 
standard 40-bit keys.  AFAIK, anything above 40-bit with 802.11b is 
proprietary, but you may still get it to work.  I believe the 802.11a 
and 802.11g standard both support higher levels of encryption.

Best Regards,
Keith
--
LPIC-2, MCSE, N+
We drive on this highway of fire
Got spam? Get spastic http://spastic.sourceforge.net



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


RedHat List FAQ?

2003-02-06 Thread RayW
Howdy all,

Were can I find the RedHat List FAQ?




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



S3 video drivers

2003-02-06 Thread Patrick Marquetecken
Hi,

i have downloaded the S3 twistervideo driver for XFree86 4.1.0 X Server,
it contains two files:
s3switch
savage_drv.o

but i have no idee what to do with those files , there is no readme with
it.


Patrick
-- 
Knowledge in a databank,is like food which is in a deepfreeze.
Nothing comes out better than what is initially put in.

PGP Key: http://users.pandora.be/rivendell/marquetp.gpg
Registered Linux User #44550 http://counter.li.org



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



RE: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Levinshtein, Eyal
How do you set in Linux 128bit?   I thought if you set it to 13 digits then
its 128bit?  no?

I think i have the same channel in the config file.

Eyal

-Original Message-
From: Dave Sherman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:03 PM
To: RedHat 8.0
Subject: Re: WEP key... doesnt work in RH Linux 8


On Thu, 2003-02-06 at 11:50, Levinshtein, Eyal wrote:
> Is there any incompatibility in the WEP key?   
> 
> I enter a WEP key on the AP, and enter the same WEP key on my client in
> Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will
not
> work.?
> 
> Any idea why?
> 
> I use Orinoco Gold and Lucent AP-500

I know I had to manually edit the config file for eth1 (my wireless
card), and change the channel to 6 (it was 1 by default).

You might also verify whether you are set to use 64 bit WEP or 128 bit
WEP. They do not use compatible keys, even if you (try to) enter the
same key for both.

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



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



Re: RedHat List FAQ?

2003-02-06 Thread Jesse Keating
On Thursday 06 February 2003 10:19, RayW wrote:
> Howdy all,
>
> Were can I find the RedHat List FAQ?

View all headers.

List-Help: 


-- 
Jesse Keating RHCE MCSE
For Web Services and Linux Consulting, Visit --> j2Solutions.net
Mondo DevTeam (www.mondorescue.org)

Was I helpful?  Let others know:
 http://svcs.affero.net/rm.php?r=jkeating



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



RE: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Levinshtein, Eyal
thats a good point.   Maybe i need to enter in in Linux in a specific format
for 128bit?

I got to figure out how to do it now..

Eyal

-Original Message-
From: Keith Winston [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:06 PM
To: [EMAIL PROTECTED]
Subject: Re: WEP key... doesnt work in RH Linux 8


Levinshtein, Eyal wrote:
> Is there any incompatibility in the WEP key?   
> 
> I enter a WEP key on the AP, and enter the same WEP key on my client in
> Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will
not
> work.?
> 
> Any idea why?
> 
> I use Orinoco Gold and Lucent AP-500

It is working for me, but I am using the Orinoco Silver (40-bit key) and 
a Linksys access point.  This is format I used to enter my key:

--FF [4]

Notice I am using key 4.  There have been multiple posts by people who 
are using 128-bit keys, but I have never tried using anything but the 
standard 40-bit keys.  AFAIK, anything above 40-bit with 802.11b is 
proprietary, but you may still get it to work.  I believe the 802.11a 
and 802.11g standard both support higher levels of encryption.

Best Regards,
Keith
-- 
LPIC-2, MCSE, N+
We drive on this highway of fire
Got spam? Get spastic http://spastic.sourceforge.net



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



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



Wireless NIC problem.

2003-02-06 Thread Aaron Konstam
I have a laptop and a docking station that uses wireless Internet
access on eth1. Depending on whether the docking station is used and
the transmitter setup in different locations three different NIC
cards are used.
Is there a way to automate the loading of the right NIC kernel module
at boot up for the various cards without doing it manually each time?
-- 
---
Aaron Konstam
Computer Science
Trinity University
715 Stadium Dr.
San Antonio, TX 78212-7200

telephone: (210)-999-7484
email:[EMAIL PROTECTED]



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



xmms and Redhat 8.0

2003-02-06 Thread Guy Fraser
Hi

Has anyone else noticed that .wav files play really fast.


Guy



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



KDE 3.1.0 as rpms

2003-02-06 Thread Jochen Kaechelin
Does anybody know a ftp-server where I can find
KDE 3.1.0 rpms?

-- 
Jochen Kaechelin



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



Re: S3 video drivers

2003-02-06 Thread Oisin C. Feeley


On 6 Feb 2003, Patrick Marquetecken wrote:

>Hi,
>
>i have downloaded the S3 twistervideo driver for XFree86 4.1.0 X Server,
>it contains two files:
>s3switch
>savage_drv.o
>
>but i have no idee what to do with those files , there is no readme with
>it.

When posting to a technical mailing list it is useful to specify your 
distribution (eg. FreeBSD 6.0), your kernel (eg 2.4.19-2) and anything 
else that might be relevant.  In this case your distribution makes a 
huge difference to the answer to the question because different 
distributions put files in different places.

On my system (Red Hat 8.0) the drivers for video cards are stored in 
/usr/X11R6/lib/modules/drivers/

You should copy/move the savage_drv.o file into that directory.  Make 
sure that the permissions are the same as the other drivers in that 
directory.  If you don't know how to do that then read the manuals that 
came with your distribution and/or the HOWTOs at http://www.tldp.org  
and/or the RUTE tutorial at that site.

This question has been asked and answered before on this list and I'm 
sure that if you do a Google search you'll find more detailed answers.  
That should be your starting point for any question:  search the net to 
see if it has been answered before.  That way, people on these lists can 
spend time helping people who've already researched the topic a little.

 HTH,
Oisin Feeley



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



Re: KDE 3.1.0 as rpms

2003-02-06 Thread Eric Wood
ftp://rawhide.redhat.com
/pub/redhat/linux/rawhide/i386/RedHat/RPMS

-eric

- Original Message - 
From: "Jochen Kaechelin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 06, 2003 3:04 PM
Subject: KDE 3.1.0 as rpms


> Does anybody know a ftp-server where I can find
> KDE 3.1.0 rpms?
> 
> -- 
> Jochen Kaechelin



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



Re: KDE 3.1.0 as rpms

2003-02-06 Thread Jochen Kaechelin
Am Donnerstag, 6. Februar 2003 21:22 schrieb Eric Wood:
> ftp://rawhide.redhat.com
> /pub/redhat/linux/rawhide/i386/RedHat/RPMS

But that's not the complete list as I can find on ftp.kde.org
for other distris!

-- 
Jochen Kaechelin



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



Red Hat update server...

2003-02-06 Thread Michael Tiernan
Wasn't there someone doing a project of creating an open-sourced replacement 
for the red-hat up2date server?

Thanks.
-- 
  << MCT >>  Michael C Tiernan [EMAIL PROTECTED]
  Now a Free Agent http://world.std.com/~mtiernan
  
  Sometimes when I get direction from management I have to stop, take a deep
  breath, and ask myself what MacGyver would do in a situation like this.



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



Re: [Fwd: bugzilla ticket #83353]

2003-02-06 Thread Kevin McConnell

--- James Bunnell <[EMAIL PROTECTED]> wrote:
> This has been resolved. Thanks.
> 
> James

For future reference, you shouldn't add any entries
into bugzilla unless you have more than one person
verify that it's a bug.


=
Kevin C. McConnell --RHCE-- 

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com



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



Re: [Fwd: bugzilla ticket #83353]

2003-02-06 Thread Brent Fox
On Thu, 2003-02-06 at 15:38, Kevin McConnell wrote:
> --- James Bunnell <[EMAIL PROTECTED]> wrote:
> > This has been resolved. Thanks.
> > 
> > James
> 
> For future reference, you shouldn't add any entries
> into bugzilla unless you have more than one person
> verify that it's a bug.
> 

I wouldn't say that...don't be afraid to put things in Bugzilla if you
think you've found a bug.  Maybe it's good to discuss it on the list
first but it's not absolutely necessary.  However, it is helpful if
people look for duplicates to see if the issue they are reporting has
already been fixed.  

After we fix a bug, we resolve it as "Rawhide" but there's really no
explanation there of what "Rawhide" means or where you can get the new
version.  I think that's what caused the communication problem in bug
#83353.  Maybe bugzilla should provide a link to Rawhide where people
can find the updated packages. 


Cheers,
   Brent



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



Re: Red Hat update server...

2003-02-06 Thread Stephen Mah
Michael Tiernan wrote:

Wasn't there someone doing a project of creating an open-sourced replacement 
for the red-hat up2date server?

Thanks.


I think it's called Current server, or something.



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



Re: Red Hat update server...

2003-02-06 Thread Oisin C. Feeley


On Thu, 6 Feb 2003, Michael Tiernan wrote:

>Wasn't there someone doing a project of creating an open-sourced
>replacement for the red-hat up2date server?
>
"Current"
http://www.biology.duke.edu/computer/unix/current/

HTH,
Oisin Feeley



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



Timestamp on files not correct.

2003-02-06 Thread Tomas Larsson
Suddenly the file creation or modification time is incorrect.
I am using RH8 as an firewall/router/web server.
If I'm using SSH from my winbox and type "date" I'm getting the correct date
and time i.e. 
thu feb 6 21:42:14 GMT+1 2003

This is correct since I'm located in Sweden.

But if I'm using Windows Explorer through SAMBA and open a shared directory
newly created files are dated exactly 2 hours later.
The same applies if I'm viewing the directory from the file manager in
WEBMIN.

If I'm typing ls -l from an SSH window The time is correct

Examples
ls -l   usage.html  feb 6 21:01
Windows Explorerusage.html  2003-02-06
23:01
Webmin Filemanager  usage.html  feb 6 23:01:47

The file is actually created around 21:00 so the time shoved in the SSH
terminal with the ls -l command is correct, but obviously not the others.

Anyone got a clue what's going on



 With best regards

Tomas Larsson

Verus amicus est tamquam alter idem 


All messages originating from me are scanned with the latest updates of
Norton Antivirus 2K2.




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



Re: [Fwd: bugzilla ticket #83353]

2003-02-06 Thread Brent Fox
On Thu, 2003-02-06 at 15:48, Brent Fox wrote:
> On Thu, 2003-02-06 at 15:38, Kevin McConnell wrote:
> > --- James Bunnell <[EMAIL PROTECTED]> wrote:
> > > This has been resolved. Thanks.
> > > 
> > > James
> > 
> > For future reference, you shouldn't add any entries
> > into bugzilla unless you have more than one person
> > verify that it's a bug.
> > 
> 
> I wouldn't say that...don't be afraid to put things in Bugzilla if you
> think you've found a bug.  Maybe it's good to discuss it on the list
> first but it's not absolutely necessary.  However, it is helpful if
> people look for duplicates to see if the issue they are reporting has
> already been fixed.  
> 
> After we fix a bug, we resolve it as "Rawhide" but there's really no
> explanation there of what "Rawhide" means or where you can get the new
> version.  I think that's what caused the communication problem in bug
> #83353.  Maybe bugzilla should provide a link to Rawhide where people
> can find the updated packages. 

RFE for bugzilla filed at:
http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=83663

Cheers,
   Brent



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



Re: Timestamp on files not correct.

2003-02-06 Thread Dennis Gilmore
Is your Windows time settings correct?  maybe it thinks you are GMT -1 
hence the two hour offset.  I could be wrong its not something ive
experienced here. 

Dennis

On Fri, 2003-02-07 at 06:59, Tomas Larsson wrote:
> Suddenly the file creation or modification time is incorrect.
> I am using RH8 as an firewall/router/web server.
> If I'm using SSH from my winbox and type "date" I'm getting the correct date
> and time i.e. 
> thu feb 6 21:42:14 GMT+1 2003
> 
> This is correct since I'm located in Sweden.
> 
> But if I'm using Windows Explorer through SAMBA and open a shared directory
> newly created files are dated exactly 2 hours later.
> The same applies if I'm viewing the directory from the file manager in
> WEBMIN.
> 
> If I'm typing ls -l from an SSH window The time is correct
> 
> Examples
> ls -l usage.html  feb 6 21:01
> Windows Explorer  usage.html  2003-02-06
> 23:01
> Webmin Filemanagerusage.html  feb 6 23:01:47
> 
> The file is actually created around 21:00 so the time shoved in the SSH
> terminal with the ls -l command is correct, but obviously not the others.
> 
> Anyone got a clue what's going on
> 
> 
> 
>  With best regards
> 
> Tomas Larsson
> 
> Verus amicus est tamquam alter idem 
> 
> 
> All messages originating from me are scanned with the latest updates of
> Norton Antivirus 2K2.
> 
-- 
Dennis Gilmore <[EMAIL PROTECTED]>



signature.asc
Description: This is a digitally signed message part


SV: Timestamp on files not correct.

2003-02-06 Thread Tomas Larsson
Nope, time settings in win are correct
And on other Win machines in my network times show up correctly.
This is strange.


 With best regards

Tomas Larsson

Verus amicus est tamquam alter idem 


All messages originating from me are scanned with the latest updates of
Norton Antivirus 2K2.

> -Ursprungligt meddelande-
> Från: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED]] För Dennis Gilmore
> Skickat: den 6 februari 2003 22:10
> Till: [EMAIL PROTECTED]
> Ämne: Re: Timestamp on files not correct.
> 
> 
> Is your Windows time settings correct?  maybe it thinks you 
> are GMT -1 
> hence the two hour offset.  I could be wrong its not 
> something ive experienced here. 
> 
> Dennis
> 
> On Fri, 2003-02-07 at 06:59, Tomas Larsson wrote:
> > Suddenly the file creation or modification time is incorrect. I am 
> > using RH8 as an firewall/router/web server. If I'm using 
> SSH from my 
> > winbox and type "date" I'm getting the correct date and time i.e.
> > thu feb 6 21:42:14 GMT+1 2003
> > 
> > This is correct since I'm located in Sweden.
> > 
> > But if I'm using Windows Explorer through SAMBA and open a shared 
> > directory newly created files are dated exactly 2 hours later. The 
> > same applies if I'm viewing the directory from the file manager in 
> > WEBMIN.
> > 
> > If I'm typing ls -l from an SSH window The time is correct
> > 
> > Examples
> > ls -l   usage.html  
> feb 6 21:01
> > Windows Explorerusage.html  
> 2003-02-06
> > 23:01
> > Webmin Filemanager  usage.html  feb 6 23:01:47
> > 
> > The file is actually created around 21:00 so the time shoved in the 
> > SSH terminal with the ls -l command is correct, but 
> obviously not the 
> > others.
> > 
> > Anyone got a clue what's going on
> > 
> > 
> > 
> >  With best regards
> > 
> > Tomas Larsson
> > 
> > Verus amicus est tamquam alter idem
> > 
> > 
> > All messages originating from me are scanned with the 
> latest updates 
> > of Norton Antivirus 2K2.
> > 
> -- 
> Dennis Gilmore <[EMAIL PROTECTED]>
> 




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



Re: SV: Timestamp on files not correct.

2003-02-06 Thread Jay Crews
Tomas Larsson writes
> 
> Nope, time settings in win are correct
> And on other Win machines in my network times show up correctly.
> This is strange.

I have seen similar things all within my Linux machine.
On mine, I suspected it was something to do with my system
running on GMT, but I have PST (Pacific) for my local time.
Read the man page on 'date' and was a little confused, so I
read more.  Realized there are a few different clocks/times out
there.  ie hardware clocks
With different offsets.
Became MORE confused.
And then toss in Day Light Savings time.
And __MORE__ confused.
I gave up.


Sorry, that wasn't very helpful.

--JC

> 
> 
>  With best regards
> 
> Tomas Larsson
> 
> Verus amicus est tamquam alter idem 
> 
> 
> All messages originating from me are scanned with the latest updates of
> Norton Antivirus 2K2.
> 
> > -Ursprungligt meddelande-
> > Från: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED]] För Dennis Gilmore
> > Skickat: den 6 februari 2003 22:10
> > Till: [EMAIL PROTECTED]
> > Ämne: Re: Timestamp on files not correct.
> > 
> > 
> > Is your Windows time settings correct?  maybe it thinks you 
> > are GMT -1 
> > hence the two hour offset.  I could be wrong its not 
> > something ive experienced here. 
> > 
> > Dennis
> > 
> > On Fri, 2003-02-07 at 06:59, Tomas Larsson wrote:
> > > Suddenly the file creation or modification time is incorrect. I am 
> > > using RH8 as an firewall/router/web server. If I'm using 
> > SSH from my 
> > > winbox and type "date" I'm getting the correct date and time i.e.
> > > thu feb 6 21:42:14 GMT+1 2003
> > > 
> > > This is correct since I'm located in Sweden.
> > > 
> > > But if I'm using Windows Explorer through SAMBA and open a shared 
> > > directory newly created files are dated exactly 2 hours later. The 
> > > same applies if I'm viewing the directory from the file manager in 
> > > WEBMIN.
> > > 
> > > If I'm typing ls -l from an SSH window The time is correct
> > > 
> > > Examples
> > > ls -l usage.html  
> > feb 6 21:01
> > > Windows Explorer  usage.html  
> > 2003-02-06
> > > 23:01
> > > Webmin Filemanagerusage.html  feb 6 23:01:47
> > > 
> > > The file is actually created around 21:00 so the time shoved in the 
> > > SSH terminal with the ls -l command is correct, but 
> > obviously not the 
> > > others.
> > > 
> > > Anyone got a clue what's going on
> > > 
> > > 
> > > 
> > >  With best regards
> > > 
> > > Tomas Larsson
> > > 
> > > Verus amicus est tamquam alter idem
> > > 
> > > 
> > > All messages originating from me are scanned with the 
> > latest updates 
> > > of Norton Antivirus 2K2.
> > > 
> > -- 
> > Dennis Gilmore <[EMAIL PROTECTED]>
> > 
> 
> 
> 
> 
> -- 
> Psyche-list mailing list
> [EMAIL PROTECTED]
> https://listman.redhat.com/mailman/listinfo/psyche-list
> 


-- Jay Crews
[EMAIL PROTECTED]



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



RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Saqib . N . Ali
Hi All.

I am having problems installing RedHat 8.0 on Compaq Proliant 3000 servers
dual CPU servers. Everytime I try to install the RedHat 8.0, the 2nd CPU
dies. I have tried this on 3 different server (all Proliant 3000) with the
same results. Now I have 3 Proliants with 2nd CPUs non-functional. The only
way to revive the CPU is to reset the BIOS, which also cause the array info
to be lost, and have to re-install the OS.

So it seems to me that RedHat 8.0 is modifying something in the BIOS that
it is not suppose to.

Has anyone else ran into this problem with the similar architecture or dual
CPU configurations?

Saqib Ali
"I fear, if I rebel against my Lord, the retribution of an Awful Day (The
Day of Resurrection)" Al-Quran 6:15
http://docbook.sc-icc.org




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



RE: RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Jonathan M. Slivko
 
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Saqib,

Is this an Intel or AMD architecture?
- -- Jonathan

- --
Best Regards,
Jonathan M. Slivko <[EMAIL PROTECTED]>
 
Don't fear the penguin.
 .^.
 /V\
   /(   )\
^^-^^
  He's here to help.

- -Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of 
[EMAIL PROTECTED]
Sent: Thursday, February 06, 2003 5:03 PM
To: [EMAIL PROTECTED]
Subject: RedHat 8.0 issues with Compaq Proliant 3000?

Hi All.

I am having problems installing RedHat 8.0 on Compaq Proliant 3000 servers
dual CPU servers. Everytime I try to install the RedHat 8.0, the 2nd CPU
dies. I have tried this on 3 different server (all Proliant 3000) with the
same results. Now I have 3 Proliants with 2nd CPUs non-functional. The only
way to revive the CPU is to reset the BIOS, which also cause the array info
to be lost, and have to re-install the OS.

So it seems to me that RedHat 8.0 is modifying something in the BIOS that
it is not suppose to.

Has anyone else ran into this problem with the similar architecture or dual
CPU configurations?

Saqib Ali
"I fear, if I rebel against my Lord, the retribution of an Awful Day (The
Day of Resurrection)" Al-Quran 6:15
http://docbook.sc-icc.org




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

-BEGIN PGP SIGNATURE-
Version: PGP 8.0

iQA/AwUBPkLc29tPIuR/u9CYEQKSbgCcCc5XM4xYrNQkkziPEO9R/fjrUywAnicV
4/qYunLMzxn7hVYGOpD/brGX
=SM5c
-END PGP SIGNATURE-



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



RE: RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Saqib . N . Ali

Intel

In Peace,
Saqib Ali
"I fear, if I rebel against my Lord, the retribution of an Awful Day (The
Day of Resurrection)" Al-Quran 6:15
http://docbook.sc-icc.org


|+>
||  "Jonathan M.  |
||  Slivko"   |
||  <[EMAIL PROTECTED]|
||  rg>   |
||  Sent by:  |
||  psyche-list-admin@|
||  redhat.com|
||  No Phone Info |
||  Available |
|||
||  02/06/2003 02:08  |
||  PM|
||  Please respond to |
||  psyche-list   |
|||
|+>
  
>|
  |
|
  |   To: <[EMAIL PROTECTED]> 
|
  |   cc:  
|
  |   Subject: RE: RedHat 8.0 issues with Compaq Proliant 3000?
|
  
>|





-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Saqib,

Is this an Intel or AMD architecture?
- -- Jonathan

- --
Best Regards,
Jonathan M. Slivko <[EMAIL PROTECTED]>

Don't fear the penguin.
 .^.
 /V\
   /(   )\
^^-^^
  He's here to help.

- -Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On
Behalf Of [EMAIL PROTECTED]
Sent: Thursday, February 06, 2003 5:03 PM
To: [EMAIL PROTECTED]
Subject: RedHat 8.0 issues with Compaq Proliant 3000?

Hi All.

I am having problems installing RedHat 8.0 on Compaq Proliant 3000 servers
dual CPU servers. Everytime I try to install the RedHat 8.0, the 2nd CPU
dies. I have tried this on 3 different server (all Proliant 3000) with the
same results. Now I have 3 Proliants with 2nd CPUs non-functional. The only
way to revive the CPU is to reset the BIOS, which also cause the array info
to be lost, and have to re-install the OS.

So it seems to me that RedHat 8.0 is modifying something in the BIOS that
it is not suppose to.

Has anyone else ran into this problem with the similar architecture or dual
CPU configurations?

Saqib Ali
"I fear, if I rebel against my Lord, the retribution of an Awful Day (The
Day of Resurrection)" Al-Quran 6:15
http://docbook.sc-icc.org




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

-BEGIN PGP SIGNATURE-
Version: PGP 8.0

iQA/AwUBPkLc29tPIuR/u9CYEQKSbgCcCc5XM4xYrNQkkziPEO9R/fjrUywAnicV
4/qYunLMzxn7hVYGOpD/brGX
=SM5c
-END PGP SIGNATURE-



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





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



Re: RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Dave Sherman
On Thu, 2003-02-06 at 16:02, [EMAIL PROTECTED] wrote:
> Hi All.
> 
> I am having problems installing RedHat 8.0 on Compaq Proliant 3000 servers
> dual CPU servers. Everytime I try to install the RedHat 8.0, the 2nd CPU
> dies. I have tried this on 3 different server (all Proliant 3000) with the
> same results. Now I have 3 Proliants with 2nd CPUs non-functional. The only
> way to revive the CPU is to reset the BIOS, which also cause the array info
> to be lost, and have to re-install the OS.
> 
> So it seems to me that RedHat 8.0 is modifying something in the BIOS that
> it is not suppose to.
> 
> Has anyone else ran into this problem with the similar architecture or dual
> CPU configurations?

Are you sure you have the correct SMP kernel installed?

# rpm -qa|grep kernel

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



signature.asc
Description: This is a digitally signed message part


Re: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Norman Gaywood
On Thu, Feb 06, 2003 at 12:50:34PM -0500, Levinshtein, Eyal wrote:
> Is there any incompatibility in the WEP key?   
> 
> I enter a WEP key on the AP, and enter the same WEP key on my client in
> Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will not
> work.?
> 
> Any idea why?
> 
> I use Orinoco Gold and Lucent AP-500

I had a similar problem until, after reading the man page for iwconfig,
I figured out that I must enter the key as:

s:WEPKEY

That is, put the s: on the front of the key.

-- 
Norman Gaywood -- School of Mathematical and Computer Sciences
University of New England, Armidale, NSW 2351, Australia
[EMAIL PROTECTED] http://turing.une.edu.au/~norm
Phone: +61 2 6773 2412 Fax: +61 2 6773 3312



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



Re: RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Saqib . N . Ali

[root@gitadev root]# rpm -qa|grep kernel
kernel-pcmcia-cs-3.1.31-9
kernel-source-2.4.18-14
kernel-smp-2.4.18-14
kernel-2.4.18-14

In Peace,
Saqib Ali
"I fear, if I rebel against my Lord, the retribution of an Awful Day (The
Day of Resurrection)" Al-Quran 6:15
http://docbook.sc-icc.org


|+>
||  Dave Sherman  |
||  |
||  Sent by:  |
||  psyche-list-admin@|
||  redhat.com|
||  No Phone Info |
||  Available |
|||
||  02/06/2003 02:31  |
||  PM|
||  Please respond to |
||  psyche-list   |
|||
|+>
  
>|
  |
|
  |   To: "RedHat 8.0" <[EMAIL PROTECTED]>
|
  |   cc:  
|
  |   Subject: Re: RedHat 8.0 issues with Compaq Proliant 3000?
|
  
>|




On Thu, 2003-02-06 at 16:02, [EMAIL PROTECTED] wrote:
> Hi All.
>
> I am having problems installing RedHat 8.0 on Compaq Proliant 3000
servers
> dual CPU servers. Everytime I try to install the RedHat 8.0, the 2nd CPU
> dies. I have tried this on 3 different server (all Proliant 3000) with
the
> same results. Now I have 3 Proliants with 2nd CPUs non-functional. The
only
> way to revive the CPU is to reset the BIOS, which also cause the array
info
> to be lost, and have to re-install the OS.
>
> So it seems to me that RedHat 8.0 is modifying something in the BIOS that
> it is not suppose to.
>
> Has anyone else ran into this problem with the similar architecture or
dual
> CPU configurations?

Are you sure you have the correct SMP kernel installed?

# rpm -qa|grep kernel

--
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."




signature.asc
Description: Binary data


Re: RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Dave Sherman
On Thu, 2003-02-06 at 16:40, [EMAIL PROTECTED] wrote:
> 
> [root@gitadev root]# rpm -qa|grep kernel
> kernel-pcmcia-cs-3.1.31-9
> kernel-source-2.4.18-14
> kernel-smp-2.4.18-14
> kernel-2.4.18-14

OK, so it looks like you've got BOTH single-processor and SMP kernels.
Which one are you booted into?

-- 
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."



signature.asc
Description: This is a digitally signed message part


Re: RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Saqib . N . Ali

SMP doesn't work. Because, Redhat 8.0 disabled the 2nd CPU during install.
I can not enable the 2nd CPU until I reset the BIOS. When I reset the BIOS,
all the RAID info is also lost.
So the only option I have is to boot in single processor mode.

In Peace,
Saqib Ali
"I fear, if I rebel against my Lord, the retribution of an Awful Day (The
Day of Resurrection)" Al-Quran 6:15
http://docbook.sc-icc.org


|+>
||  Dave Sherman  |
||  |
||  Sent by:  |
||  psyche-list-admin@|
||  redhat.com|
||  No Phone Info |
||  Available |
|||
||  02/06/2003 02:54  |
||  PM|
||  Please respond to |
||  psyche-list   |
|||
|+>
  
>|
  |
|
  |   To: "RedHat 8.0" <[EMAIL PROTECTED]>
|
  |   cc:  
|
  |   Subject: Re: RedHat 8.0 issues with Compaq Proliant 3000?
|
  
>|




On Thu, 2003-02-06 at 16:40, [EMAIL PROTECTED] wrote:
>
> [root@gitadev root]# rpm -qa|grep kernel
> kernel-pcmcia-cs-3.1.31-9
> kernel-source-2.4.18-14
> kernel-smp-2.4.18-14
> kernel-2.4.18-14

OK, so it looks like you've got BOTH single-processor and SMP kernels.
Which one are you booted into?

--
Dave Sherman
MCSE, MCSA, CCNA
"If we wanted you to understand it, we wouldn't call it code."




signature.asc
Description: Binary data


iptables blocking client NFS access

2003-02-06 Thread Ronald W. Heiby
Hello psyche-list,

I've got a couple of RH 8.0 systems on a network. On one of these,
I've set up a couple of entries in /etc/exports and set up NFS. On
this (server) machine, I have opened up the iptables firewall to allow
incoming tcp/udp ports 111 and 2049.

On another (client) system, I've also opened up the iptables firewall
to allow incoming tcp/udp ports 111 and 2049. On this client, I have
been able to NFS mount just fine, if I "/etc/init.d/iptables stop"
first. After a lot of trial and error, I determined that the iptables
line "at fault" is the one that blocks all incoming 0:1023 udp
traffic.

Now, I'm stuck. I'd like to leave that line in the firewall, but I
would also like this machine to be able to be an NFS client.

I have not yet tried any other client machines.

Below is my iptables file. Any ideas? Thanks!

Ron.

# Generated by iptables-save v1.2.6a on Thu Feb  6 16:37:17 2003
*nat
:PREROUTING ACCEPT [1:48]
:POSTROUTING ACCEPT [2:200]
:OUTPUT ACCEPT [2:200]
COMMIT
# Completed on Thu Feb  6 16:37:17 2003
# Generated by iptables-save v1.2.6a on Thu Feb  6 16:37:17 2003
*mangle
:PREROUTING ACCEPT [800:38591]
:INPUT ACCEPT [800:38591]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [1380:888103]
:POSTROUTING ACCEPT [1380:888103]
COMMIT
# Completed on Thu Feb  6 16:37:17 2003
# Generated by iptables-save v1.2.6a on Thu Feb  6 16:37:17 2003
*filter
:FORWARD ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:RH-Lokkit-0-50-INPUT - [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -j RH-Lokkit-0-50-INPUT
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 80 --tcp-flags SYN,RST,ACK SYN -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 22 --tcp-flags SYN,RST,ACK SYN -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p udp -m udp -i eth0 --dport 67:68 --sport 67:68 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p udp -m udp -i eth1 --dport 67:68 --sport 67:68 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p udp -m udp --dport 111 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 111 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p udp -m udp --dport 2049 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 2049 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 137:139 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p udp -m udp --dport 137:139 -j ACCEPT
-A RH-Lokkit-0-50-INPUT -i lo -j ACCEPT
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 0:1023 --tcp-flags SYN,RST,ACK SYN -j 
REJECT  --reject-with icmp-port-unreachable 
-A RH-Lokkit-0-50-INPUT -p udp -m udp --dport 0:1023 -j REJECT  --reject-with 
icmp-port-unreachable 
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 6000:6009 --tcp-flags SYN,RST,ACK SYN -j 
REJECT  --reject-with icmp-port-unreachable 
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 7100 --tcp-flags SYN,RST,ACK SYN -j 
REJECT  --reject-with icmp-port-unreachable 
COMMIT
# Completed on Thu Feb  6 16:37:17 2003



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



Re: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Keith Winston
Norman Gaywood wrote:

On Thu, Feb 06, 2003 at 12:50:34PM -0500, Levinshtein, Eyal wrote:


Is there any incompatibility in the WEP key?   

I enter a WEP key on the AP, and enter the same WEP key on my client in
Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will not
work.?

Any idea why?

I use Orinoco Gold and Lucent AP-500


I had a similar problem until, after reading the man page for iwconfig,
I figured out that I must enter the key as:

s:WEPKEY

That is, put the s: on the front of the key.


The s: on the front tells iwconfig you are using a string for the key 
instead of hex digits.  If your key is in hex, you don't want to use the 
s: prefix.

Best Regards,
Keith
--
LPIC-2, MCSE, N+
We drive on this highway of fire
Got spam? Get spastic http://spastic.sourceforge.net



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


RE: bugzilla ticket #83353

2003-02-06 Thread Mike Vanecek
If nothing else, I am impressed with the class demonstrated by Brent Fox in
the postings. Well done sir.


-- Original Message ---
From: "wrnash" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thu, 6 Feb 2003 12:14:40 -0500
Subject: RE: bugzilla ticket #83353

> http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=83353
> 
> This is what the bugzilla show on this.
> 
> Bill Nash
> 
--- End of Original Message ---



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



Re: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Norman Gaywood
On Thu, Feb 06, 2003 at 07:46:31PM -0500, Keith Winston wrote:
> Norman Gaywood wrote:
> >On Thu, Feb 06, 2003 at 12:50:34PM -0500, Levinshtein, Eyal wrote:
> >
> >>Is there any incompatibility in the WEP key?   
> >>
> >>I enter a WEP key on the AP, and enter the same WEP key on my client in
> >>Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will 
> >>not
> >>work.?
> >>
> >>Any idea why?
> >>
> >>I use Orinoco Gold and Lucent AP-500
> >
> >I had a similar problem until, after reading the man page for iwconfig,
> >I figured out that I must enter the key as:
> >
> >s:WEPKEY
> >
> >That is, put the s: on the front of the key.
> 
> The s: on the front tells iwconfig you are using a string for the key 
> instead of hex digits.  If your key is in hex, you don't want to use the 
> s: prefix.

Yes that is correct.

The reason I say try the s: is that I have an Orinoco Silver card and
a RG-1000. The default WEP key for the RG-1000 is given to you looking
like a hex key, something like 34dfba. After much tearing my hair out
trying to make linux work with that as the hex key, I tried s:34dfba
and everything fired up.

Cheers.
-- 
Norman Gaywood -- School of Mathematical and Computer Sciences
University of New England, Armidale, NSW 2351, Australia
[EMAIL PROTECTED] http://turing.une.edu.au/~norm
Phone: +61 2 6773 2412 Fax: +61 2 6773 3312



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



gdm xterminal logins and utmp

2003-02-06 Thread Norman Gaywood
gdm does not update /var/run/utmp correctly when logging in via xdmcp.
The first user seems to be added correctly but all subsequent logins
replace the previous login. So 'who/w/finger' only ever shows one X
terminal style login even though there are many more.

wtmp seems to be correct. That is, last correctly shows that last and
current logins.

-- 
Norman Gaywood -- School of Mathematical and Computer Sciences
University of New England, Armidale, NSW 2351, Australia
[EMAIL PROTECTED] http://turing.une.edu.au/~norm
Phone: +61 2 6773 2412 Fax: +61 2 6773 3312



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



Web Based Newsreader

2003-02-06 Thread Mike Vanecek
I have Open WebMail installed as a web based email reader. I would like to
install something along the same lines to allow news group reading. I do not
want to run a nntp, just have web access to a reader so that header
information is maintained on a one machine. Hence, one could read news groups
from any machine using any browser and always have the group, group headers
counts, read/unread flags, and so on kept on a single machine. 

I searched Google, but did not find anything that seemed to meet my needs
since I am not looking for a local newsreader (pan, etc.), but rather a web
based reader. 

Anything anyone has used with RH 8?

Thanks.





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



disk partition

2003-02-06 Thread Shane C Branch
Are there any 'rules of thumb' to follow when partitioning a disk for linux? In
the past, I have always partitioned my disk by defining mount points for /,
/boot, /opt, /var /usr, /usr/local, /tmp and /home separately. I would define
swap space at 2x physical RAM. However, I always guessed at the sizes for each
partition, except for /home, for which I would set the 'grow to fill disk'
option.

I have just started playing with RH 8, so I'm looking for method to eliminate
the guesswork. Any suggestions are appreciated.

regards,

shane.



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



Re: disk partition

2003-02-06 Thread Ed Wilts
On Thu, Feb 06, 2003 at 09:21:22PM -0500, Shane C Branch wrote:
> Are there any 'rules of thumb' to follow when partitioning a disk for linux? In
> the past, I have always partitioned my disk by defining mount points for /,
> /boot, /opt, /var /usr, /usr/local, /tmp and /home separately. I would define
> swap space at 2x physical RAM. However, I always guessed at the sizes for each
> partition, except for /home, for which I would set the 'grow to fill disk'
> option.

The rules of thumb are (or used to be) in the installation manual...
Obviously if you take all the defaults for partitioning during install,
you'll get Red Hat's "rules of thumb".

-- 
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]
Member #1, Red Hat Community Ambassador Program



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



RE: disk partition

2003-02-06 Thread Jonathan M. Slivko

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ed,

However, Red Hat 7.2 had a funny way of doing it's partitioning. It made
/usr bigger than /home for some reason. I've always had to fix that
whenever I do a 7.2 install. It seems to have been fixed in 7.3 and 8.0
though.

- --Jonathan

- --
Best Regards,
Jonathan M. Slivko <[EMAIL PROTECTED]>

Don't fear the penguin.
 .^.
 /V\
   /(   )\
^^-^^
  He's here to help.

- -Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
On Behalf Of Ed Wilts
Sent: Thursday, February 06, 2003 9:40 PM
To: [EMAIL PROTECTED]
Subject: Re: disk partition

On Thu, Feb 06, 2003 at 09:21:22PM -0500, Shane C Branch wrote:
> Are there any 'rules of thumb' to follow when partitioning a disk for
linux? In
> the past, I have always partitioned my disk by defining mount points for
/,
> /boot, /opt, /var /usr, /usr/local, /tmp and /home separately. I would
define
> swap space at 2x physical RAM. However, I always guessed at the sizes
for each
> partition, except for /home, for which I would set the 'grow to fill
disk'
> option.

The rules of thumb are (or used to be) in the installation manual...
Obviously if you take all the defaults for partitioning during install,
you'll get Red Hat's "rules of thumb".

- --
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]
Member #1, Red Hat Community Ambassador Program



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

-BEGIN PGP SIGNATURE-
Version: PGP 8.0

iQA/AwUBPkMd2sxXTt+ZS+PEEQI9NwCeNq6VERIVAE8U8lt5v+vNhX2m3OkAn3QU
JZJYrdPbBoqyb0JoZhTyxoTb
=fSAj
-END PGP SIGNATURE-



smime.p7s
Description: application/pkcs7-signature


Re: disk partition

2003-02-06 Thread Shane C Branch


*** REPLY SEPARATOR  ***

On 2/6/2003 at 8:40 PM Ed Wilts wrote:

>On Thu, Feb 06, 2003 at 09:21:22PM -0500, Shane C Branch wrote:
>> Are there any 'rules of thumb' to follow when partitioning a disk for
>linux? In
>> the past, I have always partitioned my disk by defining mount points for
>/,
>> /boot, /opt, /var /usr, /usr/local, /tmp and /home separately. I would
>define
>> swap space at 2x physical RAM. However, I always guessed at the sizes
>for each
>> partition, except for /home, for which I would set the 'grow to fill
>disk'
>> option.
>
>The rules of thumb are (or used to be) in the installation manual...
>Obviously if you take all the defaults for partitioning during install,
>you'll get Red Hat's "rules of thumb".
>
>-- 
>Ed Wilts, Mounds View, MN, USA
>mailto:[EMAIL PROTECTED]
>Member #1, Red Hat Community Ambassador Program


Thanks.

I did read the manual on this, but I didn't find it particularly useful, except
for the recommended sizes for /, and /boot. I was already following the swap
suggestion. When I first started playing with linux I was told that setting
partitions manually was better than letting the installer do it, but I was
never clear on exactly why that was supposed to be true.



regards,

shane.



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



Re: disk partition

2003-02-06 Thread Ed Wilts
On Thu, Feb 06, 2003 at 09:47:51PM -0500, Shane C Branch wrote:
> I did read the manual on this, but I didn't find it particularly useful, except
> for the recommended sizes for /, and /boot. I was already following the swap
> suggestion. When I first started playing with linux I was told that setting
> partitions manually was better than letting the installer do it, but I was
> never clear on exactly why that was supposed to be true.

It really depends on what you're using your system for.  If it's largely
a mail and web server, you may want a very large /var.  If it has lots
of users doing development, a large /home may be in order.  If you've
got a small disk, you'll want to adjust things quite differently than if
you've got a large disk.

I don't like the Red Hat rule of thumb for memory - ie, 2xmemory size.
This kinds of puts you in a bind if you ever upgrade your memory later,
so just go with a GB to start and forget about it.  With disks so big
these days, the rules are changing.

-- 
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]
Member #1, Red Hat Community Ambassador Program



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



Re: WEP key... doesnt work in RH Linux 8

2003-02-06 Thread Craig White
On Thu, 2003-02-06 at 11:03, Dave Sherman wrote:
> On Thu, 2003-02-06 at 11:50, Levinshtein, Eyal wrote:
> > Is there any incompatibility in the WEP key?   
> > 
> > I enter a WEP key on the AP, and enter the same WEP key on my client in
> > Windows it works.   If I enter the same WEP key in RH Linux 8.0 it will not
> > work.?
> > 
> > Any idea why?
> > 
> > I use Orinoco Gold and Lucent AP-500
> 
> I know I had to manually edit the config file for eth1 (my wireless
> card), and change the channel to 6 (it was 1 by default).
> 
> You might also verify whether you are set to use 64 bit WEP or 128 bit
> WEP. They do not use compatible keys, even if you (try to) enter the
> same key for both.
> 
-
You have to know whether the key is a string or hex

Strings must be preceded by a $

Hex keys are 13 digits long for 64 bit - 26 digits long for 128 bit - I
haven't a clue the length for 40 bit

Craig



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



Re: S3 video drivers

2003-02-06 Thread Craig White
On Thu, 2003-02-06 at 11:17, Patrick Marquetecken wrote:
> Hi,
> 
> i have downloaded the S3 twistervideo driver for XFree86 4.1.0 X Server,
> it contains two files:
> s3switch
> savage_drv.o
> 
> but i have no idee what to do with those files , there is no readme with
> it.
> 
-
The definitive site for SiS chipsets (video and other)



this guy is awesome

Craig



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



Re: Web Based Newsreader

2003-02-06 Thread Craig White
On Thu, 2003-02-06 at 18:23, Mike Vanecek wrote:
> I have Open WebMail installed as a web based email reader. I would like to
> install something along the same lines to allow news group reading. I do not
> want to run a nntp, just have web access to a reader so that header
> information is maintained on a one machine. Hence, one could read news groups
> from any machine using any browser and always have the group, group headers
> counts, read/unread flags, and so on kept on a single machine. 
> 
> I searched Google, but did not find anything that seemed to meet my needs
> since I am not looking for a local newsreader (pan, etc.), but rather a web
> based reader. 
> 
> Anything anyone has used with RH 8?
> 
-
never used it...
 - see the 'Troll' project.

I use IMP/Turba/Kronolith/Nag

Craig



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



Re: An interesting problem

2003-02-06 Thread Charles A. Crayne
On Thu, 06 Feb 2003 09:23:33 -0600
Tom Georgoulias <[EMAIL PROTECTED]> wrote:

:Funny you mention this, I've noticed an increase in the amount of 
:dropped dialup connections on my system for some time, but the increase
:isn't so large that I've started pulling my hair out.  More like 5-10%,
:usually within the first few minutes after connecting but also occuring
:in the time frame thereafter.

I have that problem in spades, and although I am not ready to offer
solutions, either, I am a bit further down the diagnostic trail. In my
case, the problems occurs during IPCP negotiations -- if I manage to get
past that, the connection is usually rock solid. I seem to have improved
things a bit by setting "noccp" in /etc/ppp/options, but I have some
more trace reading to do before I understand the full problem.

-- Chuck



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



window on all workspaces by default

2003-02-06 Thread Eric Bourque
Is there a way in metacity to have a window automatically placed on all
workspaces by default? I want to load gkrellm every time I log in, and
have it available on all workspaces, without having to right click it
and choose "put on all workspaces".

Cheers,

Eric



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



Advice needed re testing network state

2003-02-06 Thread John Bell
I am working on an application (written in python, but that hardly matters) 
several parts of which involves communications over the net via ppp on a 
standard modem connection.  The relevant areas of the application all include 
a server thread which distributes net based tasks to a collection of worker 
threads that process tasks from a job queue.  There is an inherent problem 
that the link may go down either due to ISP action or a failure of one form 
or another in the WAN.  Also there is the problem that the link may stay up 
but be inactive due to some failure in the WAN.  I want to detect and resolve 
such problems.  What I'd like to do is to have the server thread (which after 
setting up the job queue does little but wait for completion of the worker 
threads) periodically test the status of the connection and in the event of a 
problem re-establish the connection (which will generally involve being 
assigned a new IP) and signal the worker threads so that they can 
re-establish theiir TCP connection and continue or restart their active task 
as required.

Their are clearly many methods to determine the status of the network.  My 
current thinking is to parse /proc/net/route to ensure that ppp0 is still the 
default route and then send an ICMP echo request to each registered DNS 
server until either one replies or all time out.

I'm wondering if anyone has any comments on this approach or perhaps betetr 
ideas.
-- 

Regards,
John Bell,
BCM Research



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



Re: disk partition

2003-02-06 Thread Eric Burke
On Thu, 2003-02-06 at 18:21, Shane C Branch wrote:
> Are there any 'rules of thumb' to follow when partitioning a disk for linux? In
> the past, I have always partitioned my disk by defining mount points for /,
> /boot, /opt, /var /usr, /usr/local, /tmp and /home separately. I would define
> swap space at 2x physical RAM. However, I always guessed at the sizes for each
> partition, except for /home, for which I would set the 'grow to fill disk'
> option.
> 
> I have just started playing with RH 8, so I'm looking for method to eliminate
> the guesswork. Any suggestions are appreciated.

Hiya,

Here is the breakdown for the general usage of partitions:

Swap partition should be twice physical ram size. There used to be a
128MB limit, but that is gone now.

root or / partition holds all system files. RedHat 8, with the
everything option is 4.5 GB. My root is 8 GB since I am greedy.

/usr/local is where files installed by users will be placed. That should
go accordingly. For example I have Unreal Tournament installed, and that
took up 2.7GB of space in /usr/local/games. This partition should be one
of the biggest if that is what you do.

/boot holds the kernel and boot files. Mine is 250MB, but that is large.
For RH 8 you can get away with 75MB, but I prefer larger mysel;f as I
keep more kernels around.

/home is where your users personal files are stored. I have a 20GB home
partition, and I am the only one on the machine. That is overkill in my
case. If you download a lot of software though, which I do, then  it
should be sized accordingly. A developer for example would need a larger
/home partition due to all the files they will have. 

/var is traditionally more for logs and print spoolers, but RH has made
it the place for web server files and the ftp root.

Bottom line is it is all relative to what your purpose is. If the
machine is a web server or ftp server, with the default RH setup, then
/var would be another partition where you would want larger.

Hope I helped a little.

 
> 
> regards,
> 
> shane.
> 
Regards,

Eric Burke

> 
> 
> -- 
> Psyche-list mailing list
> [EMAIL PROTECTED]
> https://listman.redhat.com/mailman/listinfo/psyche-list
> 




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



Re: Web Based Newsreader

2003-02-06 Thread Brian Johnson
I use phpgroupware (phpgroupware.org). It is a php web based groupware app.  The
apps are setup as modules so you can select which ones are shown for each individual
user

Anyway, it has a nntp reader ... you may also find the calendar, addressbook,
todo,notes, and email are to your liking (I don't use many of the other modules that
are available)



Mike Vanecek ([EMAIL PROTECTED]) wrote*:
>
>I have Open WebMail installed as a web based email reader. I would like to
>install something along the same lines to allow news group reading. I do not
>want to run a nntp, just have web access to a reader so that header
>information is maintained on a one machine. Hence, one could read news groups
>from any machine using any browser and always have the group, group headers
>counts, read/unread flags, and so on kept on a single machine.
>
>I searched Google, but did not find anything that seemed to meet my needs
>since I am not looking for a local newsreader (pan, etc.), but rather a web
>based reader.
>
>Anything anyone has used with RH 8?
>
>Thanks.
>
>
>
>
>
>



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



rhn availability

2003-02-06 Thread Craig White
Is it just me or is RHN for up2date extremely busy the last few days?

I know that a lot of errata has been released but it seems extra
ordinarily busy. This seems to happen when apache/php updates are
released.

Craig



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



Re: rhn availability

2003-02-06 Thread Jesse Keating
On Thursday 06 February 2003 21:46, Craig White uttered:
> Is it just me or is RHN for up2date extremely busy the last few days?
>
> I know that a lot of errata has been released but it seems extra
> ordinarily busy. This seems to happen when apache/php updates are
> released.

Well, there were kernel and php upgrades released in the last few days

-- 
Jesse Keating RHCE MCSE
For Web Services and Linux Consulting, Visit --> j2Solutions.net
Mondo DevTeam (www.mondorescue.org)

Was I helpful?  Let others know:
 http://svcs.affero.net/rm.php?r=jkeating



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



Re: Web Based Newsreader

2003-02-06 Thread Craig White
On Thu, 2003-02-06 at 22:49, Brian Johnson wrote:
> I use phpgroupware (phpgroupware.org). It is a php web based groupware app.  The
> apps are setup as modules so you can select which ones are shown for each individual
> user
> 
> Anyway, it has a nntp reader ... you may also find the calendar, addressbook,
> todo,notes, and email are to your liking (I don't use many of the other modules that
> are available)
> 
-
care to give an evaluation of the current status of phpgroupware? Last
time I checked into it, it was too unfinished...used a modified form of
squirrelmail that was clumsy and didn't support imap. Just wondering...

Craig



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



Re: Web Based Newsreader

2003-02-06 Thread Brian Johnson
There are three email modules you can choose from - I use the default one via IMAP
(have used it for over a year)

On my Redhat machine I had to be careful to include a novalidate tag to the server
address (seems it looks for SSL even when you don't tell it to) - I think that's a
RH issue, not phpgw



Craig White ([EMAIL PROTECTED]) wrote*:
>
>On Thu, 2003-02-06 at 22:49, Brian Johnson wrote:
>> I use phpgroupware (phpgroupware.org). It is a php web based groupware app.  The
>> apps are setup as modules so you can select which ones are shown for each individual
>> user
>>
>> Anyway, it has a nntp reader ... you may also find the calendar, addressbook,
>> todo,notes, and email are to your liking (I don't use many of the other modules that
>> are available)
>>
>-
>care to give an evaluation of the current status of phpgroupware? Last
>time I checked into it, it was too unfinished...used a modified form of
>squirrelmail that was clumsy and didn't support imap. Just wondering...
>
>Craig
>
>
>
>



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



Re: RedHat 8.0 issues with Compaq Proliant 3000?

2003-02-06 Thread Dennis Gilmore
Have you tried booting into the SMP kernel?  what happens then?

Dennis

On Fri, 2003-02-07 at 09:00, [EMAIL PROTECTED] wrote:
> SMP doesn't work. Because, Redhat 8.0 disabled the 2nd CPU during install
--
Psyche-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/psyche-list



Re: Red Hat update server...

2003-02-06 Thread Piero Calucci
On Thu, 2003-02-06 at 21:26, Oisin C. Feeley wrote:
> 
> 
> On Thu, 6 Feb 2003, Michael Tiernan wrote:
> 
> >Wasn't there someone doing a project of creating an open-sourced
> >replacement for the red-hat up2date server?
> >
> "Current"
> http://www.biology.duke.edu/computer/unix/current/

see also http://www.dulug.duke.edu/yum/ (yes, duke.edu again!)

much simpler, the server side is only an httpd or ftpd

(I'm experimenting with it and trying to write some management
functions)

Piero



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