Re: Another RH 6.2 question

2000-08-31 Thread John Summerfield


 Delete it.  Along with boot.cat, and do a recursive deletion of all
 the ugly (and totally unnecessary) TRANS.TBL files (one in every
 directory).

Better turn on Joliet when you burn you CD; thos TRANS.TBL files are to enable 
translation to short names. With Joliet you don't need it.




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



Re: rawhide: kudzu-0.68-1 fails to compile

2000-08-31 Thread Mike A. Harris

On Tue, 29 Aug 2000, Ivan Jager wrote:

 Because I have done so for several years with no problems until
 last week when I had a "rpm --rebuild" delete several
 subdirectories on my filesystem during "%clean" stage.  RPM
 should IMHO do anything it does in a chroot()'d jail.  Making a
 user called "rpm" and setting up rpm to build packages as that
 user, is much safer, ESPECIALLY when constructing and debugging
 your own packages.
 
 So, yes.  Security, and safety.  _Even_ if you trust the
 sources.  It is easy to make a mistake in a spec file and kiss
 everything goodbye.

When building as a regular user, how do you get the packages to install
files owned by root?

Simple, use %defattr()

When I first started building packages I did it as root, then I found
out that if I "chown ivanj: -R /usr/src/redhat" I could build as ivanj
without any problems (AFAIK), until one day someone else installed one
of my packages. Then I noticed that the files it was installing were
owned by ivanj. (they didn't have a user ivanj, so it said "ivanj: no
such user", or something like that) Then I started building as root
again.

Do _NOT_ set the file permissions and ownership in %install or
any other previous sections.  Set ALL permissions and ownership
in the %files section using the %defattr and %attr macros
instead.

This causes the permissions to occur during packaging time, ready
for install time.

Doing it in %install requires root privs and is a bad way to
make spec files.

The only major downside is that in some spec's where you would
do:

%install
make install


And let the make target install all files and possibly set
permissions, etc.. or use the "install" command to install files
and set owner/perms, etc..  You must now manually put your own
install section, or make a diff to the makefile that doesn't set
perms, ownership...

It makes for a more secure build environment though.


Is this solved in newer versions of rpm, or should I give rpm some other
parameters? (other than "-bb package")

Just use the macros described above.

TTYL


--
Mike A. Harris Linux advocate 
Computer Consultant  GNU advocate  
Capslock Consulting  Open Source advocate

Be up to date on nerd news and stuff that matters:  http://slashdot.org



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



Re: rawhide: kudzu-0.68-1 fails to compile

2000-08-31 Thread Mike A. Harris

On Tue, 29 Aug 2000, Stephen C. Biggs wrote:

 Because I have done so for several years with no problems until
 last week when I had a "rpm --rebuild" delete several
 subdirectories on my filesystem during "%clean" stage.  RPM
 should IMHO do anything it does in a chroot()'d jail.  Making a
 user called "rpm" and setting up rpm to build packages as that
 user, is much safer, ESPECIALLY when constructing and debugging
 your own packages.

If this is a repeat question, I apologize...I just joined the list.

Yes, it was just discussed.  Just read the list archives to get
the details..

How do you setup rpm to do this (build packages as a non-root 
user)?  Is this documented anywhere?  What directory structure do 
you use?  What permissions and groups should user "rpm" have 
and belong to?

Just create a copy of the dir structure under /usr/src/redhat/*
in /home/rpm/  after creating the RPM user.  I made an rpm user
with group rpm and duplicated the /usr/src/redhat/* dir structure
under /home/rpm/rpmroot, then made a .rpmrc and .rpmmacros files
to point all variables to the new dirs as described in the
previous threads.


Assuming that I log in as "rpm" (can I do this in an X terminal 
window?  how?  login rpm?), then I just cd to the build directory 
structure and run rpm on the rpm file wherever it is?

You log in as rpm, and type "rpm --rebuild package.src.rpm" or
whatever you'd normally do.

Would this also allow me to build a kernel or other system 
executables?

If the src.rpm packages are created cleanly enough yes.  Think
about it...  What magical special root-only capability is
required to compile software and package it?  None.  The only
possible problem is if a make target uses chown/chgrp or other
root-only commands, etc..   In this case, the package is poorly
designed IMHO.  Any perm/ownership changing should be set in
the .spec file using %defattr, and friends.

TTYL


--
Mike A. Harris Linux advocate 
Computer Consultant  GNU advocate  
Capslock Consulting  Open Source advocate

Be up to date on nerd news and stuff that matters:  http://slashdot.org



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



unsubscribe yLpA

2000-08-31 Thread deng wei





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



utmp/utmpx wtmp/wtmpx

2000-08-31 Thread Mike A. Harris

What is the difference between the utmp and utmpx files and why
would one use one over the other or both, etc...  I can find no
documenation on them but just stumbled across them in the rc
scripts.  Same for wtmp/wtmpx..

TTYL



--
Mike A. Harris Linux advocate 
Computer Consultant  GNU advocate  
Capslock Consulting  Open Source advocate

If you're looking for Linux books, guides, and other documentation, visit 
the Linux Documentation Project homepage:  http://linuxdoc.org



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



Re: custom dist based on Redhat

2000-08-31 Thread Frank Hale

 An overview of Red Hat's trademarks and their usage,
 see:
 

http://www.redhat.com/about/trademark_guidelines.html
 

Thanks everyone for the helpful information, I will
take this into credit when I go about building my
distribution.

Thank you,
Frank


=
ICQ: 7205161
http://sapphire.sourceforge.net - Another X11 Window Manager

__
Do You Yahoo!?
Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/



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



Re: custom dist based on Redhat

2000-08-31 Thread Mike A. Harris

On Thu, 31 Aug 2000, Frank Hale wrote:

 Absolutely.  That is why I recommend _against_ doing
 carte
 blanche search and replace
 's/[Rr]ed.*[Hh]at/whatever/g' on
 things.  There is no point other than to try and
 strip Red Hat of
 credit due, and in the process destroy copyright
 notices, and
 set one's self up for possible legal trouble and an
 angry Linux
 community.  (See LinuxONE for a perfect example..)

I agree 100%. I had no intention of replacing there
name with my dist name everywhere. I am only
interested in changing it where it pops up like when
you log on and also in the boot sequence, and in a few
other places. Most of the packages are downloaded off
the net (ie created either by Redhat or others). I
have no intention of defacing packages to make it look
like I created them. At the present time what I am
working on is mostly a patch work dist which contains
alot of updates and some packages have been removed
which I don't use, I've also made slight changes to a
couple of the scripts in the initscripts package. I
don't plan at the moment to distribute this on the
internet, its just for me at the moment. But I don't
want to accidentally change something that will make
me look bad later on down the road if I deside to make
the dist available for download.

Yep, all sounds good.  I've more or less done the same but not to
the level you seem to have done.  I havent modified the
installer, but it is just my personal copy, and ones I've given
away (very few).  All I've basically done is modified the package
lists, genhdlist, and burn.  Sorry if it seemed I was implying
that you were up to no good, but that wasn't my intention.  I was
merely pointing out that others have done so IMHO and I think it
is tasteless and unethical despite the GPL freebie status of
everything.

Any time someone wants to do something with GPL code of another
author, or to modify something like a distributed CD and
redistribute, while it isn't necessary to inform anyone, it is a
polite gesture to ask them if it is ok as sort of a courtesy
thing.  Also to give full credit where it is due.  I don't know
about Mandrake right now, but I know when they started it was
just Red Hat plus KDE, then later recompiled for Pentium
aledgedly.  I have seen a lot of Red Hat bashing put out by that
dist, and their followers saying that it is "better", as if to
bite the hand that fed them.  LinuxONE did one better and took
Mandrake and did a search and replace on it (if I understand
correctly based on an old Slashdot article).  I lost all respect
for these distributions after that.  Distributions shouldn't step
on each other or hinder each other.  It makes them look bad in
the community when they do.  That is why I respect Red Hat so
much.  They give a lot to the community that everyone can use,
and I've never heard a single Red Hat employee bad mouth another
distribution or seen any thing of the sort tied to RHL.

Although you can't technically "steal" GPL code if you use it and
abide by the GPL licence, some people out there have come about
as close to "theft" as you can get ethically.

Of course, this is all IMHO though...  Just irks me to see
someone try to pull one over on someone or some company that 
is doing good for the community.

Well good luck with getting your dist going.  Take care!
TTYL



--
Mike A. Harris Linux advocate 
Computer Consultant  GNU advocate  
Capslock Consulting  Open Source advocate

Red Hat FAQ tip: Having trouble upgrading RPM 3.0.x to RPM 4.0.x?  Upgrade 
first to version 3.0.5, and then to 4.0.x.  All packages are available on 
Red Hat's ftp sites:   ftp://ftp.redhat.com  ftp://rawhide.redhat.com



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



Re: anaconda information?

2000-08-31 Thread Chris Garrigues

 From:  Jeff Pitman [EMAIL PROTECTED]
 Date:  Wed, 30 Aug 2000 09:22:15 -0600

 I'm not sure where the docs are for anaconda, but, I would highly recommend
 using the latest instimage from rawhide or pinstripe or whatever their calling
 it now a days.  I've had troubles with the older one as well.  So, now I use
 the rawhide installer and bootdisk, which makes things cool...
 
 My favorite mirror is rpmfind.net.  
 
 Could you elaborate a little more on the failing installation?  Maybe some
 errors on the tty2 ~ tty5 ??  

The problem has been that genhdlist barfs on 4.x RPMs.

Anyway, I'm feeling real ignorant here.  I've got the latest instimage and I 
can't figure out where to drop my customized comps file.  Should I assume that 
the comps file is obsolete; there is no longer a genhdlist; and I need to put
this information in a different format?  Where is the documentation on this?

Really, I'm not stupid [he keeps telling himself], I just need *something* to 
read!

Chris

-- 
Chris Garrigues http://www.DeepEddy.Com/~cwg/
virCIO  http://www.virCIO.Com
4314 Avenue C   
Austin, TX  78751-3709  +1 512 374 0500

  My email address is an experiment in SPAM elimination.  For an
  explanation of what we're doing, see http://www.DeepEddy.Com/tms.html 

Nobody ever got fired for buying Microsoft,
  but they could get fired for relying on Microsoft.



 PGP signature


RPM 4

2000-08-31 Thread Frank Hale

If I decide to upgrade to RPM 4 for my customized
distribution should I build all the RPMs again? Right
now they are built with RPM 3.04.

Thanks,
Frank


=
ICQ: 7205161
http://sapphire.sourceforge.net - Another X11 Window Manager

__
Do You Yahoo!?
Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/



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



RE: custom dist based on Redhat

2000-08-31 Thread Freivald, Joseph A, GOVMK

I thought one of the other things about Mandrake is they included
non-exportable encryption, which is not an option for RedHat.  No?

Joe

 -Original Message-
 From: Mike A. Harris [SMTP:[EMAIL PROTECTED]]
 Sent: Thursday, August 31, 2000 6:51 AM
 To:   [EMAIL PROTECTED]
 Subject:  Re: custom dist based on Redhat
 
 On Thu, 31 Aug 2000, Frank Hale wrote:
 
  Absolutely.  That is why I recommend _against_ doing
  carte
  blanche search and replace
  's/[Rr]ed.*[Hh]at/whatever/g' on
  things.  There is no point other than to try and
  strip Red Hat of
  credit due, and in the process destroy copyright
  notices, and
  set one's self up for possible legal trouble and an
  angry Linux
  community.  (See LinuxONE for a perfect example..)
 
 I agree 100%. I had no intention of replacing there
 name with my dist name everywhere. I am only
 interested in changing it where it pops up like when
 you log on and also in the boot sequence, and in a few
 other places. Most of the packages are downloaded off
 the net (ie created either by Redhat or others). I
 have no intention of defacing packages to make it look
 like I created them. At the present time what I am
 working on is mostly a patch work dist which contains
 alot of updates and some packages have been removed
 which I don't use, I've also made slight changes to a
 couple of the scripts in the initscripts package. I
 don't plan at the moment to distribute this on the
 internet, its just for me at the moment. But I don't
 want to accidentally change something that will make
 me look bad later on down the road if I deside to make
 the dist available for download.
 
 Yep, all sounds good.  I've more or less done the same but not to
 the level you seem to have done.  I havent modified the
 installer, but it is just my personal copy, and ones I've given
 away (very few).  All I've basically done is modified the package
 lists, genhdlist, and burn.  Sorry if it seemed I was implying
 that you were up to no good, but that wasn't my intention.  I was
 merely pointing out that others have done so IMHO and I think it
 is tasteless and unethical despite the GPL freebie status of
 everything.
 
 Any time someone wants to do something with GPL code of another
 author, or to modify something like a distributed CD and
 redistribute, while it isn't necessary to inform anyone, it is a
 polite gesture to ask them if it is ok as sort of a courtesy
 thing.  Also to give full credit where it is due.  I don't know
 about Mandrake right now, but I know when they started it was
 just Red Hat plus KDE, then later recompiled for Pentium
 aledgedly.  I have seen a lot of Red Hat bashing put out by that
 dist, and their followers saying that it is "better", as if to
 bite the hand that fed them.  LinuxONE did one better and took
 Mandrake and did a search and replace on it (if I understand
 correctly based on an old Slashdot article).  I lost all respect
 for these distributions after that.  Distributions shouldn't step
 on each other or hinder each other.  It makes them look bad in
 the community when they do.  That is why I respect Red Hat so
 much.  They give a lot to the community that everyone can use,
 and I've never heard a single Red Hat employee bad mouth another
 distribution or seen any thing of the sort tied to RHL.
 
 Although you can't technically "steal" GPL code if you use it and
 abide by the GPL licence, some people out there have come about
 as close to "theft" as you can get ethically.
 
 Of course, this is all IMHO though...  Just irks me to see
 someone try to pull one over on someone or some company that 
 is doing good for the community.
 
 Well good luck with getting your dist going.  Take care!
 TTYL
 
 
 
 --
 Mike A. Harris Linux advocate 
 Computer Consultant  GNU advocate  
 Capslock Consulting  Open Source advocate
 
 Red Hat FAQ tip: Having trouble upgrading RPM 3.0.x to RPM 4.0.x?  Upgrade
 
 first to version 3.0.5, and then to 4.0.x.  All packages are available on 
 Red Hat's ftp sites:   ftp://ftp.redhat.com  ftp://rawhide.redhat.com
 
 
 
 ___
 Redhat-devel-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-devel-list



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



Re: utmp/utmpx wtmp/wtmpx

2000-08-31 Thread Lars Nordin

I know that on SCO (and probably other *NIX) that the *tmpx files track the
originating IP and I believe that the utmp* file are used by "w/who" and the
wtmp* file are used by "last". Linux seems to just have the wtmp file and always
store and display the originating IP so the multiple version are not needed.

On Thu, 31 Aug 2000, Mike A. Harris wrote:
 What is the difference between the utmp and utmpx files and why
 would one use one over the other or both, etc...  I can find no
 documenation on them but just stumbled across them in the rc
 scripts.  Same for wtmp/wtmpx..

-- 
Lars Nordin
Noble Systems Corporation
www.noblesys.com



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



RE: custom dist based on Redhat

2000-08-31 Thread Bernhard Rosenkraenzer

On Thu, 31 Aug 2000, Freivald, Joseph A, GOVMK wrote:

 I thought one of the other things about Mandrake is they included
 non-exportable encryption, which is not an option for RedHat.  No?

No, since they're based in France, they're bound to even more ridiculous
export restrictions.

LLaP
bero




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



Re: anaconda information?

2000-08-31 Thread Jeff Pitman

On Thu, 31 Aug 2000, you wrote:
 On Thu, 31 Aug 2000, Chris Garrigues wrote:
  The problem has been that genhdlist barfs on 4.x RPMs.
  
  Anyway, I'm feeling real ignorant here.  I've got the latest instimage and I 
  can't figure out where to drop my customized comps file.  Should I assume that 
  the comps file is obsolete; there is no longer a genhdlist; and I need to put
  this information in a different format?  Where is the documentation on this?
 
 Comps go to RedHat/base, as before.  hdlist is also still
 required.  Genhdlist can be found in anaconda-runtime package
 (IIRC).  

RedHat/instimage/usr/lib/anaconda-runtime/genhdlist

to be exact.  I usually put a link out to that in the dir that contains RedHat.
Or you could just right an update script that runs it with the correct
parameter.  In my case:

#!/bin/sh
/opt/redhat/rawhide/RedHat/instimage/usr/lib/anaconda-runtime/genhdlist  \
/opt/redhat/rawhide

That should work great...

Jeff


-- 
Don't look now, but the man in the moon is laughing at you.



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



Re: RPM 4

2000-08-31 Thread Jeff Pitman

On Thu, 31 Aug 2000, you wrote:
 If I decide to upgrade to RPM 4 for my customized
 distribution should I build all the RPMs again? Right
 now they are built with RPM 3.04.

I've yet to have any issues.  The biggest change between 3.04 and 4.00 is the
database handling where it puts the names of the packages.  There should be no
change to an individual rpm needed.  You'll have to upgrade db3,et al.

Have fun.

Jeff



-- 
Don't look now, but the man in the moon is laughing at you.



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



Adaptec AAA-UDMA (IDE RAID)

2000-08-31 Thread Michel MENGIS



Hi all,

any chance to get a support of Adaptec AAA-UDMA on 
the next red-hat rls?
It's an IDE raid controller. Adaptec is supplying 
drivers for WinNT/2k but not for linux.

I really need some help about this 
card...

thx

Michel.



Lib/linux.so.2

2000-08-31 Thread Yuzz

Unable to load intepreter /lib/linux.so.2 ...
How to solve this problem??

--
yuzz
System Engineer
EmasOnline Dot Com Sdn. Bhd.
http://www.EmasOnline.com
[EMAIL PROTECTED]
Tel No: 606 - 3345666 ext 2174
Fax No: 606 - 3372233
"EveryDay Linux"





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



Re: Lib/linux.so.2

2000-08-31 Thread Mike A. Harris

On Fri, 1 Sep 2000, Yuzz wrote:

Unable to load intepreter /lib/linux.so.2 ...
How to solve this problem??

Sounds to me like you've maxed out your process table.  The Linux
process table can only hold 512 simultaneous processes.  If you
fill that up, you'll see the above message likely during the next
fork()/exec().  You may also see some daemon's die, etc..

It is also possible to see that message when running out of
virtual memory I believe.

The solution for the first problem is to either not have that
many processes running on your system either by limiting what is
spawning that many processes, or by possibly reworking the code
that is doing so so it isn't so process intensive.  Another
solution is to increase the size of the process table by
modifying the NR_TASKS define in the kernel source and
recompiling.  Change it to 1024 or 2048 or so.  Do not go nuts
with it though or you'll cause problems I believe.  I think
somewhere around 4000 is the absolute max on x86..

If it is the latter problem of OOM, then either add more memory,
or add more swap space.

Hope this helps.

Good luck,
TTYL


--
Mike A. Harris Linux advocate 
Computer Consultant  GNU advocate  
Capslock Consulting  Open Source advocate

Want to try a new high performance open source web server?  Try Caudium!
http://caudium.orghttp://caudium.sourceforge.net



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



Re: rawhide: kudzu-0.68-1 fails to compile

2000-08-31 Thread Mike A. Harris

On Thu, 31 Aug 2000, Ivan Jager wrote:

Date: Thu, 31 Aug 2000 18:04:48 -0400
From: Ivan Jager [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Content-Type: text/plain; charset=us-ascii
Subject: Re: rawhide: kudzu-0.68-1 fails to compile

I didn't make the .spec file for the package. It was one in one of the gnome
packages a long time ago. I will continue building as a normal user and report
the next problem like that as a bug.

Ok. It isn't really a "bug" per se as much as it is an
inconvenience.  If more people built RPM's as non-root, then
there would be less packages doing it in an RPM-as-non-root 
non-friendly way.

Doesn't hurt to file it as a bug report though, it might get
changed.  Best to fix the problem and include a patch if you can
though, it is more likely to be changed then.

Take care,
TTYL

--
Mike A. Harris Linux advocate 
Computer Consultant  GNU advocate  
Capslock Consulting  Open Source advocate

If you're interested in computer security, and want to stay on top of the
latest security exploits, and other information, visit:

http://www.securityfocus.com



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



PS1 PWD

2000-08-31 Thread Bing . Li

Dear All,

How to display PATH anytime instead of just a "$' in RedHat ksh? I remember
PS1 and PWD should be used. But I can't get the exact expression of that. By
the way, I can't find .profile under my home directory. Why?

Thanks,
Bing

 _
|  How are you?  |___
|  I am Li Bing. | |__|  |_
|| OK? |::|  | Need   /
|\.|::|__| Help? 
|  \::/  \.___\
   /\**/\   |   ___
  ( o_o  )_ |__|http://www.public.asu.edu/~libing /
   (u--u   \_)  |  |[EMAIL PROTECTED], 480-829-8492(H) /
(||___   )==\  |480-965-3753(L)480-965-1746(O)   \
  ,dP"/b/=( /P"/b\ |__\
  |8 || 8\=== || 8
  `b,  ,P  `b,  ,P
"""` """`




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



Re: HELP HELP HELP

2000-08-31 Thread Nico De Ranter

At work we use a number of Zyxel Prestige 100I/H ISDN routers for dialin access.
The Zyxel will automaticaly make an Internet connection the moment there is any
traffic going in that direction totaly independt of the OS you run on the PC's as
long as there is a TCP/IP network. The newest firmware images offer the possibility
 to:

  - specify when a connection can be made (e.g. only between 8h00 and 17h00)
  - put restrictions on the total use like only 15 hours in 1 month

(Note: I know these features exist in the Zyxel but we never used them so try to 
   get one on trial before you buy :-)

Nico




On Thu, Aug 31, 2000 at 09:41:53AM +0530, Deependra B. Tandukar wrote:
 Greetings from Kathmandu!
 
 I am thinking to give internet access to the college sutdents but I want them to be 
able to use only 15hours in a month because of the budget constraint in the college. 
Can anybody help me to come out of the problem?
 
 regards
 Deependra B. Tandukar
 www.coremag.net/cvs/dt.htm
 
 Networking and Training Assistant
 ICOD/ICIMOD
 www.icimod.org.sg

 "It has been said that there are only two businesses
  refer to customers as users: illegal drug trade and
   the computer industry." 

Nico De Ranter
Sony Service Center (SDCE/DME-B)
Sint Stevens Woluwestraat 55 (Rue de Woluwe-Saint-Etienne)
1130 Brussel (Bruxelles), Belgium, Europe, Earth
Telephone: +32 2 724 86 41 Telefax: +32 2 726 26 86
e-mail: [EMAIL PROTECTED]



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



Re: sendmail

2000-08-31 Thread Michale C. Balines

try defining the recipient/s to /etc/aliases. after defining them, dont forget to do newaliases command on the root prompt.

At 06:24 PM 8/29/00 +0530, you wrote: 

I am using sendmail with redhat linux. I want to forward a mail to some other user and one copy to itself. For example: if kapil wants to send one copy to [EMAIL PROTECTED] and keep one copy of itself. What should I write in .forward file for this. Please help kapil  





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

Re[2]: I'd say this is someone trying to find an expolit

2000-08-31 Thread Yuri Kay

Hello John,

Wednesday, August 30, 2000, 14:49:32 zulu, you wrote:

JA I still use the linux box as my primary machine, mainly because I
JA work for a "linux-friendly" local ISP and my machine at work is
JA linux. However, there are, as you pointed out, a few things that
JA still work better under windblows than linux. Newsreading for
JA example. I have yet to see a newsreader for linux that's as good as
JA Agent.

 sorry for butting in, but I have yet to see anything like
 YA series newsreaders on the Mac side... still Mac is slowly
 dying, it remains to be seen whether BSD kernelization will
 save it.


-- 
Best regards,
 Yuri




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



Re: HELP HELP HELP

2000-08-31 Thread Michale C. Balines
hi dee! 

try radius, it'll do it. better download cistron-radius, it's customizable for your requirements. you can also get some insight from regulus and it could also be your solution.

mike


At 09:41 AM 8/31/00 +0530, you wrote: 

Greetings from Kathmandu! I am thinking to give internet access to the  college sutdents but I want them to be able to use only 15hours in a month  because of the budget constraint in the college. Can anybody help me to come out  of the problem? 
regards Deependra B. Tandukar
www.coremag.net/cvs/dt.htm  Networking and Training Assistant
ICOD/ICIMOD
www.icimod.org.sg 





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

Re: Gozilla for Linux?

2000-08-31 Thread Angel L. Mateo


El día Thu, 31 Aug 2000 06:58:55 -0100  Miroslav Skoric escribió:
 Does anybody know about a software for Linux (like Gozilla) capable to
 pause/resume download of files? A software that can be used under Gnome
 (and/or Netscape maybe)? Here links to providers are bad so it would be
 good to resume brocken download.
 
Caitoo is a program for kde but it can also be used with 
gnome.

You have also wget that is text-based.


Angel L. Mateo
Telematic Services Manager
University of Murcia (Spain)
Campus de Espinardo
Tfo: +34 968367590
Fax: +34 968363389




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



prepaid internet

2000-08-31 Thread Michale C. Balines


anyone has done prepaid internet under realm or running under proxy radius?
detailed insights is much appreciated.

mike



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



RE: X Server on Toshiba 440CDX Laptop

2000-08-31 Thread Lagaffe

Have a look to http://www.cs.utexas.edu/users/kharker/linux-laptop/

I successfully configured a 210, a 420 and a 430 using hints found there.

Alain

  I have installed Redhat 6.1 on a Toshiba 440CDX laptop.
  Linux works fine,
  but getting X running is an issue.
 
  My Toshiba has a Chips  Technologies 65554 PCI graphics
  adapter which is
  getting properly recognized by the installer.  Win98 is able
  to properly
  display 800x600 at 65K colors.
 
  When I run startx, it runs, but the display is terrible and 
 the screen
  flashes when I move the mouse.  I have the system set for
  640x480 at 8 bit
  and 800 x 600 at 8 bit.  I have also tried the same at 16 bit.
 
  I always get a terrible display with flashing. 



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



Kaser Trio-8

2000-08-31 Thread Julius Smith

Fry's is selling the "Kaser Trio-8" 3D/2D AGP 2X graphics card (8MB) for 
only $20, ($30 - $10 rebate).  The XF86_SVGA server complains that the 
86c368 chipset is not supported ("non-Savage"), so it assigns the S3_virge 
server as a give-up shot.  However, it actually seems to work fine as long 
as you add the screen option "SW_CURSOR".  By default, it uses the hardware 
cursor which is a large white square that is almost unusable.

(fyi)
Julius



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



Ghostscript Files

2000-08-31 Thread SoloCDM

I'm using gv to view .ps files.  How can I search the file for
information or is there a better viewer that allows searching.

Note: Detailed Document(s) and Sample(s) are more than welcome.
  When you reply to this message, please include
  the mailing list and my email address.

*
Signed,
SoloCDM



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



PDF Files

2000-08-31 Thread SoloCDM

Is there a viewer for PDF files that allows text searching?

Note: Detailed Document(s) and Sample(s) are more than welcome.
  When you reply to this message, please include
  the mailing list and my email address.

*
Signed,
SoloCDM



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



Re: PDF Files

2000-08-31 Thread Angel L. Mateo


El día Thu, 31 Aug 2000 03:12:52 -0600  SoloCDM escribió:
 Is there a viewer for PDF files that allows text searching?
 
 Note: Detailed Document(s) and Sample(s) are more than welcome.
   When you reply to this message, please include
   the mailing list and my email address.
 
Acrobat Reader. You can download it from www.adobe.com


Angel L. Mateo
Telematic Services Manager
University of Murcia (Spain)
Campus de Espinardo
Tfo: +34 968367590
Fax: +34 968363389




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



Urgent: Upgrading from RH6.1 to 6.2 through telnet....

2000-08-31 Thread UK Jaiswal

Hi,

I have just telnet access to a box with RedHat-6.1, ie, I don't have
physical access. How should I proceed to upgrade the whole system to
RedHat-6.2 at a shot?

Uk



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



Re: web-based passwd change

2000-08-31 Thread Jake McHenry


At work we have a cgi script that does the password change. I'll have to dig it
up when I get there and post it here for you guys. It is quite simple, but off
the top of my head, I can't remember what was in the script.

Jake McHenry
[EMAIL PROTECTED]



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



RE: Gozilla for Linux?

2000-08-31 Thread Uncle Meat


On 31-Aug-2000 Miroslav Skoric spoke something to the effect:
 Does anybody know about a software for Linux (like Gozilla) capable to
 pause/resume download of files? A software that can be used under Gnome
 (and/or Netscape maybe)? Here links to providers are bad so it would be
 good to resume brocken download.

There's 'Webdownloader for X' (or nt for short) that I use. I've also tried
others, though I don't recall the names just now.

Go to freshmeat and search for downloader or download. You'll come up with
a few.

-- 
Who are the Brain Police?



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



Re: Gozilla for Linux?

2000-08-31 Thread Uncle Meat


On 31-Aug-2000 Vidiot spoke something to the effect:
Does anybody know about a software for Linux (like Gozilla) capable to
pause/resume download of files? A software that can be used under Gnome
(and/or Netscape maybe)? Here links to providers are bad so it would be
good to resume brocken download.
 
 Files being downloaded via http cannot be resumed, they have to be
 restarted.
 For ftp downloads, use a program like ncftp.

Sorry, but this is wrong. Try caitoo or webdownloader for x. You'll find
such programs resume quite nicely.

-- 
Intel: where Quality is job number 0.9998782345!



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



Netgear FA311

2000-08-31 Thread Kevin Wood

Hey crew, I have a question for everyone.

I have a customer that is trying to use the fa311 card.  It has a
special driver and I downloaded it from Netgear.  The problem is that
when I try to compile the file with the Makefile that is included, it
fails due to dependencies.  I am running RH6.2 and kernel 2.2.16-3.  I
will also be changing to kernel back to 2.2.16 with the Hedrick IDE
patches because the customer will be using the Promise Card.  Any ideas
how to get it to compile against these two kernels?  Any help would be
greatly appreciated.

Thanks

Kevin
-- 
Kevin Wood
Atipa Linux Solutions
850 East Industrial Park Drive
Suite 8
Manchester, NH  03109
P(603)622-7171 x 15
F(603)622-7272



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



System does not boot

2000-08-31 Thread Nitebirdz


Any ideas what could be causing this problem:

LILO boot: 
Loading linux 
Uncompressing Linux...

ran out of input data
  -- System halted


A Spanish-speaking user from Bolivia is experiencing this problem and he
cannot post to the list himself.  He already checked fsck and it doesn't
show any errors.  

Any ideas?



--- 
Nitebirdz 
http://www.linuxnovice.org 
Your place for tips, news, etc. 



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



RE: System does not boot

2000-08-31 Thread Burke, Thomas G.

Corrupted Kernel?  Recompile?

 -Original Message-
 From: Nitebirdz [SMTP:[EMAIL PROTECTED]]
 Sent: Thursday, August 31, 2000 8:42 AM
 To:   [EMAIL PROTECTED]
 Subject:  System does not boot
 
 
 Any ideas what could be causing this problem:
 
 LILO boot: 
 Loading linux 
 Uncompressing Linux...
 
 ran out of input data
   -- System halted
 
 
 A Spanish-speaking user from Bolivia is experiencing this problem and he
 cannot post to the list himself.  He already checked fsck and it doesn't
 show any errors.  
 
 Any ideas?
 
 
 
 --- 
 Nitebirdz 
 http://www.linuxnovice.org 
 Your place for tips, news, etc. 
 
 
 
 ___
 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: web server

2000-08-31 Thread Meghan Madel

Thank you,
I am a bit lost.  I know this should be very simple.  Someone suggested
that I put this in named.conf.  It does not appear to be the place.  I
guess I need to know what file to place my "directive", how should I set
it up and  what do I need to restart?
Thank you so much for your assistance.
Sincerely,
Meghan

On Thu, 31 Aug 2000, Ray Curtis wrote:

  "mm" == Meghan Madel [EMAIL PROTECTED] writes:
 
 mm Thanks,
 mm I added the following to named.boot:
 mm forwarders  10.0.0.2
 
 mm I then restarted named.
 mm This did not work!
 
 Wrong direction, forwarders is used to download the DNS info of a zone
 or zones to the local DNS server from a remote DNS server at your ISP.
 
 
 
 
 
 mm Basically, I want requests from outside our network to come to 10.0.0.1 to
 mm be automatically forwarded and answered by 10.0.0.2.
 
 mm Thanks,
 mm Meghan
 
 mm On Wed, 30 Aug 2000, John Aldrich wrote:
 
  On Wed, 30 Aug 2000, Meghan Madel wrote:
   Hello,
   I currently have one server for our intranet.  This is a mail server, web
   server, etc.  I would like to make another computer on our Class A
   intranet be the web server.  I know I need to "route" from our
   "main" server to this new web servers ip address.  I am not exactly clear
   on how to do it and want to make sure I do it right without causing more
   problems.  Can you point me in the right direction on how to do
   this?  Maybeadd some "And, don't forget to do this!" hints.  Thanks
   for your time.
  
  Should be as simple as editing your DNS configuration.
  There's one section in your DNS config where it asks for
  the IP address of the web server. Just put in that IP
  address, restart NAMED and you should be fine. :-)
  John
  
  
  
  ___
  Redhat-list mailing list
  [EMAIL PROTECTED]
  https://listman.redhat.com/mailman/listinfo/redhat-list
  
 
 
 
 mm ___
 mm Redhat-list mailing list
 mm [EMAIL PROTECTED]
 mm https://listman.redhat.com/mailman/listinfo/redhat-list
 
 



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



Re: SSL/SSH support in RH 7.0? (was: Re: unsuscribe)

2000-08-31 Thread John Aldrich

On Wed, 30 Aug 2000, Steve Frampton wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On Thu, 31 Aug 2000, Leonard den Ottolander wrote:
 
   Redhat-list mailing list
   [EMAIL PROTECTED]
   https://listman.redhat.com/mailman/listinfo/redhat-list
  
   Sorry for minding your business ;). I think you really should make the footer 
  a little more descriptive, so more people will know what to use this URL for.
 
 Hmmm...is using the URL the *only* way of unsubscribing now?  It just
 occurred to me that people who didn't have support for SSL connections
 were pretty much out of luck if the traditional redhat-list-request
 removal mechanism no longer worked.
 
 Hopefully the release of RH 7.0 will bring with it some useful encryption
 utilities such as lynx-ssl and ssh?
 
No, you can email to [EMAIL PROTECTED] with the subject
"unsubscribe." However, you still have to get your password from
them somehow, and I don't know if there's a way to get it to email
you back your password. I still don't see what the problem is with
firing up Netscape and visiting that web site!
John



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



Re: web server

2000-08-31 Thread John Aldrich

On Wed, 30 Aug 2000, Meghan Madel wrote:
 Thanks,
 
 I added the following to named.boot:
 forwarders  10.0.0.2
 
 I then restarted named.
 This did not work!
 
 Basically, I want requests from outside our network to come to 10.0.0.1 to
 be automatically forwarded and answered by 10.0.0.2.
 
OK. It appears that I made an assumption that was not valid. I
*assumed* you were running a publicly accessible network and just
wanted to move web hosting to a different machine. Since you're
masqueraded, we need some more info, such as how you're connecting to
the 'Net in general and what kind of hardware you use.

For example, I'm using a Netger RT328 ISDN router. In that router, I
can specify a specific IP for forwarding on certain ports. As an
example, I have three machines on my local network. Two windows boxes
and my main machine, a linux box. I have the ssh port forwarded to
the linux box. That's the only port forwarding I have set up there.

It's possible that whatever you're using to connect to the 'Net will
have something along those lines. (In the Netgear it's called SUA
Server setup.) Otherwise, you'll probably have to configure and set
up a DNS server for your private network and create a DNS entry in
the named / bind configs.
John



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



Re: web server

2000-08-31 Thread John Aldrich

On Thu, 31 Aug 2000, Chad W. Skinner wrote:
 I am catching the middle of this thread, but I believe this directive should
 go in /etc/named.conf.  I could be wrong, but I believe this is where I have
 the directive.
 
Yes, but what about named.hostname.hosts file? Won't you need one
for the domain?
John



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



Re: Gozilla for Linux?

2000-08-31 Thread John Aldrich

On Thu, 31 Aug 2000, Statux wrote:
 Well if you ever use ftp servers with the ftp program, you'll notice that
 many support the 'reget' command :)
 
 reget is very handy
 
NCFTP can restart the download as well. The only problem is that
there is no GUI client that I know of for NCFTP.
John



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



Re: unres. symbols

2000-08-31 Thread John Aldrich

On Thu, 31 Aug 2000, lee wrote:
 i am getting unresolved symbols upon rebooting linux...so i did
 fresh kernel compile thinking it would go away.not!! :-)
 
 I have never in all my recompiles seen this error message..seems as
 though i've seen this error message explained somewhere but do not
 recall..
 
Did you "make modules  make modules install" when recompiling?
John



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



Re: SSL/SSH support in RH 7.0? (was: Re: unsuscribe)

2000-08-31 Thread Kambiz Aghaiepour

You can also send a message with subject "unsubscribe" to
[EMAIL PROTECTED]
You'll need to supply a password.  You can obtain your password by sending a
message with subject "password" to [EMAIL PROTECTED]

Kambiz

Steve Frampton wrote:
 
 
 Hmmm...is using the URL the *only* way of unsubscribing now?  It just
 occurred to me that people who didn't have support for SSL connections
 were pretty much out of luck if the traditional redhat-list-request
 removal mechanism no longer worked.
 

-- 
\o__O  o   Kambiz Aghaiepour, RHCE  -Phone: (919) 524-7423   o   o
  \_  /|\  -=   Red Hat, Inc.   =-  |\|  Pager: (800) 946-4646  //\ //\
   |\  |\  -=-=-=-=-=-=-=-=-=-=-=-  | |  Pager  Pin #: 1412622   //  //
  / /  |/  mailto:[EMAIL PROTECTED]   |  http://www.redhat.com   |\  ||



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



Re: PDF Files

2000-08-31 Thread John Aldrich

On Thu, 31 Aug 2000, Angel L. Mateo wrote:
 El día Thu, 31 Aug 2000 03:12:52 -0600  SoloCDM escribió:
  Is there a viewer for PDF files that allows text searching?
  
  Note: Detailed Document(s) and Sample(s) are more than welcome.
When you reply to this message, please include
the mailing list and my email address.
  
   Acrobat Reader. You can download it from www.adobe.com
 
IIRC, xpdf will also let you search.
John



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



RE: SSL/SSH support in RH 7.0? (was: Re: unsuscribe)

2000-08-31 Thread Ward William E PHDN

Not everyone runs a graphical machine, John.  Some are blind and use
Lynx because it works well with speech systems.  Lynx doesn't support
https.  Others are using old, marginal systems (hey, isn't that one
of the strengths of Linux?) and don't have the resources to run
Xwindows... they also must use Lynx.  I could go on but the
point is, if you force someone to do it ONE way, if someone has
difficulty doing it that way, they are out of luck.  Isn't that 
what the bulk of the talk here is about; how to do it various ways?
Of course, there is a solution... they can ask the list to be removed,
and one of the folks at RedHat who reads the list can do so.  Not
the BEST solution, but A solution.

Bill Ward

-Original Message-
From: John Aldrich [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 31, 2000 9:19 AM
To: [EMAIL PROTECTED]
Subject: Re: SSL/SSH support in RH 7.0? (was: Re: unsuscribe)


On Wed, 30 Aug 2000, Steve Frampton wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On Thu, 31 Aug 2000, Leonard den Ottolander wrote:
 
   Redhat-list mailing list
   [EMAIL PROTECTED]
   https://listman.redhat.com/mailman/listinfo/redhat-list
  
   Sorry for minding your business ;). I think you really should make the
footer 
  a little more descriptive, so more people will know what to use this URL
for.
 
 Hmmm...is using the URL the *only* way of unsubscribing now?  It just
 occurred to me that people who didn't have support for SSL connections
 were pretty much out of luck if the traditional redhat-list-request
 removal mechanism no longer worked.
 
 Hopefully the release of RH 7.0 will bring with it some useful encryption
 utilities such as lynx-ssl and ssh?
 
No, you can email to [EMAIL PROTECTED] with the subject
"unsubscribe." However, you still have to get your password from
them somehow, and I don't know if there's a way to get it to email
you back your password. I still don't see what the problem is with
firing up Netscape and visiting that web site!
John



___
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



LILO beyond 1024

2000-08-31 Thread Kevin Wood

Anybody have the link to LILO that will boot beyond 1024 Cylinders?

Thanks

Kevin
-- 
Kevin Wood
Atipa Linux Solutions
850 East Industrial Park Drive
Suite 8
Manchester, NH  03109
P(603)622-7171 x 15
F(603)622-7272



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



re-partitioning

2000-08-31 Thread M. Neidorff

Hi folks,

I know that we have beat this topic up for a while.  I just want to clarify 
an issue.  I've just gotten a new HDD and want to take my RH 6.2 
installation and

  tar the partitions onto the new drive (easy)
  delete existing partitions from old drive, (also easy)
  * re-partition old drive
  * replace the files onto the new partitions.

While I am thinking this through, it occurred to me that once I delete the 
existing partitions I won't have tar or fdisk available anymore to work 
with.  I've created a boot disk (mkbootdisk) and verified that it will boot 
the system.  Will cp'ing the files "tar" and "fdisk" to the bootdisk be 
enough to do the work, or do I need some libraries as well?  Any other 
files that I might be missing?

Thanks,


Mark
   ___
 __HHH__
  (@ @)
.oOO--\_/--OOo.-
| Mark Neidorff|Never assume a conspiracy exists   |
| [EMAIL PROTECTED]|when mere stupidity can explain|
| Just Answers!|an event.  |
| Computer Systems Solutions   |   R. K. Bernstein |
---.ooo0---0ooo.
(   )   (   )
 \ ( ) /
  \_)   (_/



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



RE: SSL/SSH support in RH 7.0? (was: Re: unsuscribe)

2000-08-31 Thread John Aldrich

On Thu, 31 Aug 2000, Ward William E PHDN wrote:
 Not everyone runs a graphical machine, John.  Some are blind and use
 Lynx because it works well with speech systems.  Lynx doesn't support
 https.  Others are using old, marginal systems (hey, isn't that one
 of the strengths of Linux?) and don't have the resources to run
 Xwindows... they also must use Lynx.  I could go on but the
 point is, if you force someone to do it ONE way, if someone has
 difficulty doing it that way, they are out of luck.  Isn't that 
 what the bulk of the talk here is about; how to do it various ways?
 Of course, there is a solution... they can ask the list to be removed,
 and one of the folks at RedHat who reads the list can do so.  Not
 the BEST solution, but A solution.
 
Hmm...good point. :-) However, you CAN do it via email. If you send
an email to "[EMAIL PROTECTED]" with a subject of
"password" the list bot will send you your password, and then you can
unsubscribe via email.
John



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



Re: SSL/SSH support in RH 7.0? (was: Re: unsuscribe)

2000-08-31 Thread Greg Wright



*** REPLY SEPARATOR  ***

On 31/08/00 at 9:19 John Aldrich wrote:

On Wed, 30 Aug 2000, Steve Frampton wrote:

 
 Hmmm...is using the URL the *only* way of unsubscribing now?  It just
 occurred to me that people who didn't have support for SSL connections
 were pretty much out of luck if the traditional redhat-list-request
 removal mechanism no longer worked.

Steve,

The list maintainer is shown as being at this address
[EMAIL PROTECTED]   ,  if your feeling studious, you can read about
the list manager herehttp://www.list.org/

here is some instructions I have from the list

===

You can also make such changes via email - send a message to:

[EMAIL PROTECTED]

with the text "help" in the subject or body, and you will be emailed
instructions.

==
 
 Hopefully the release of RH 7.0 will bring with it some useful
encryption
 utilities such as lynx-ssl and ssh?

RH has always kept away from crypto so far, its easy to get the RPM's in
question though   www.zedz.net   or   rufus.w3.or   etc


 

John

No, you can email to [EMAIL PROTECTED] with the subject
"unsubscribe." However, you still have to get your password from
them somehow, and I don't know if there's a way to get it to email
you back your password. 

I still don't see what the problem is with
firing up Netscape and visiting that web site!
   John

He cannot do that is he has no X a lot of servers don't run X or if they
do, Netscape may not be loaded etc , so if you only have lynx on say a RH
5.x box for instance, you are going to be out of luck using SSL  ...   see
now ?

The main problem here is that the text I supplied is not anywhere obvious
IMHO




-- 

Have you seen these Linux sites?
Embedded Linux Consortium  http://www.embedded-linux.org
Linux Professional Institute  http://www.lpi.org



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



files not in rpm db

2000-08-31 Thread sak

you know,

rpm -qf file

will tell if file pertain to some rpm package or not...

how can do that for all files in the system ? (except /proc)


regards,
sergio



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



Re: (no subject)

2000-08-31 Thread Bret Hughes

John Aldrich wrote:

 Finally, if you do use "ps aux | grep service" you can be
 reasonably certain that said service IS running. As for
 starting and stopping from the command line, you MAY have
 luck with /etc/rc.d/init.d/service start or service
 stop or service restart. IF the service you want is in
 there.

John- What about the inetd services?  A ps won't show them.  I was hoping someone 
would step up and give a way to check those.  I guess a portscanning software would do 
it?  Other than that at least look at the file /etc/inetd.conf and make sure that the 
needed services are uncommented.

Bret




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



Re: Gozilla for Linux?

2000-08-31 Thread Vidiot

On 31-Aug-2000 Vidiot spoke something to the effect:
Does anybody know about a software for Linux (like Gozilla) capable to
pause/resume download of files? A software that can be used under Gnome
(and/or Netscape maybe)? Here links to providers are bad so it would be
good to resume brocken download.
 
 Files being downloaded via http cannot be resumed, they have to be
 restarted.
 For ftp downloads, use a program like ncftp.

Sorry, but this is wrong. Try caitoo or webdownloader for x. You'll find
such programs resume quite nicely.

Since when does httpd support file continuation?  wget might have an option
to support file continuation as well.

MB
-- 
e-mail: [EMAIL PROTECTED]
Bart: Hey, why is it destroying other toys?  Lisa: They must have
programmed it to eliminate the competition.  Bart: You mean like
Microsoft?  Lisa: Exactly.  [The Simpsons - 12/18/99]
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



setting partitions

2000-08-31 Thread Jim Travnick

How do I set my partitions where I want them? I am using Disk Druid and it
keeps putting my / as hda6 the only way I can get it to hda1 is to not put
in /boot. This is how it is setting it

Mount PointDeviceRequestedActualType
/Boothda17930m7930mLinux Native
Swap   hda554m54m Linux swap
/hda6 23m23m Linux
Native


I dont understand why it wont put / as hda1 or does it not matter? or am I
doing something wrong? Any help would be appreciated as it seems like I am
the only one in this town trying to use Linux.

Jim



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



Re: Gozilla for Linux?

2000-08-31 Thread Jonathan Wilson

Get the one who's unofficial name is "nt", otherwise referred to as 
"Downloader for X" look for it on freshmeat.net

 JW


At 06:58 AM 8/31/2000 -0100, you wrote:
Does anybody know about a software for Linux (like Gozilla) capable to
pause/resume download of files? A software that can be used under Gnome
(and/or Netscape maybe)? Here links to providers are bad so it would be
good to resume brocken download.

Misko



___
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: Netgear FA311

2000-08-31 Thread Bret Hughes

Kevin Wood wrote:

 Hey crew, I have a question for everyone.

 I have a customer that is trying to use the fa311 card.  It has a
 special driver and I downloaded it from Netgear.  The problem is that
 when I try to compile the file with the Makefile that is included, it
 fails due to dependencies.  I am running RH6.2 and kernel 2.2.16-3.  I
 will also be changing to kernel back to 2.2.16 with the Hedrick IDE
 patches because the customer will be using the Promise Card.  Any ideas
 how to get it to compile against these two kernels?  Any help would be
 greatly appreciated.

 Thanks

 Kevin

What dependencies?  you will most likely need at least the kernel headers
and mayby glibc-devel rpms .

Shot in the dark without more info though.

Bret



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



Re: LILO beyond 1024

2000-08-31 Thread Jonathan Wilson

Funny question:-)

Try the search box at www.freshmeat.net fro "lilo" or else start at gnu.org 
(_always_ start at freshmeat when looking for apps :-)

 JW

At 09:58 AM 8/31/2000 -0400, you wrote:
Anybody have the link to LILO that will boot beyond 1024 Cylinders?

Thanks

Kevin
--
Kevin Wood
Atipa Linux Solutions
850 East Industrial Park Drive
Suite 8
Manchester, NH  03109
P(603)622-7171 x 15
F(603)622-7272



___
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: (again) LILO beyond 1024

2000-08-31 Thread Jonathan Wilson

it's not any particular "version" that boots beyond 1024, it's the most 
_recent_ versions. just get the last stable version from wherever. (In 
other words, don't spend time looking for one that's specially marked 
"boots beyond 1024" or anything )


At 09:58 AM 8/31/2000 -0400, you wrote:
Anybody have the link to LILO that will boot beyond 1024 Cylinders?

Thanks

Kevin
--
Kevin Wood
Atipa Linux Solutions
850 East Industrial Park Drive
Suite 8
Manchester, NH  03109
P(603)622-7171 x 15
F(603)622-7272



___
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: (no subject)

2000-08-31 Thread Jonathan Wilson

Port scanning is a good idea, otherwise look and see what's not commented 
out in /etc/inetd.conf

 JW

At 09:11 AM 8/31/2000 -0500, you wrote:
John Aldrich wrote:

  Finally, if you do use "ps aux | grep service" you can be
  reasonably certain that said service IS running. As for
  starting and stopping from the command line, you MAY have
  luck with /etc/rc.d/init.d/service start or service
  stop or service restart. IF the service you want is in
  there.

John- What about the inetd services?  A ps won't show them.  I was hoping 
someone would step up and give a way to check those.  I guess a 
portscanning software would do it?  Other than that at least look at the 
file /etc/inetd.conf and make sure that the needed services are uncommented.

Bret




___
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: simple samba question

2000-08-31 Thread John Losey

If I understand correctly...You are trying to mount a share from the Win98
box onto the Linux box?  Samba allows the Windows world seamless access to
files on the UNIX world as if they were seeing files on another Windows box.
It doesn't, however, allow the UNIX world access to shares on the Windows
boxes.  

I've heard about PCNFS, but I'm not sure if it can do what you need either.
I've never used it, but I've heard it allowed the PC users to access the
UNIX NFS shares.  It might swing both ways.  Hopefully someone else on the
list has more information on a tool for what you're doing.

Good luck,

John

-Original Message-
From: davros [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 30, 2000 9:58 PM
To: redhat
Subject: simple samba question


hi all,



first off, thanx to those who answered my first question to the list

regarding permissions and Apache - the responses were much appreciated,

i was able to solve the problem.



This time, i am in need of the command, the exact command, if possible,

to mount a share on a win98 machine from my linux rh6.2 machine.



samba is installed and working on the rh6.2 machine.  from the win98

machine, i am able to access the smb shares on the linux machine.  I am

also able to use smbclient to send and recieve files with the 98

machine, and 

smbclient -L win98-machine does report correctly the shares on the 98

machine.



i have checked and crosschecked the man pages for mount and smbmount, as

well as several howtows and even some newbie linux sites.  i do not have

enough of a background using mount and linux in general to kludge the

proper command together!  i guess that smbmount runs within mount or

something to that effect...in any case, i cannot seem to do it!



while im at it, i also cannot get swat to work. samba works fine

otherwise, and the correct swat line (according to a newbie help file)

is present in /etc/services:

swat 901/tcp



as well as inetd.conf:

swat stream tcp nowait.400 root /usr/sbin/swat swat



i didnt mess with tcp wrappers, even though it was suggested at this

time because there are only 2 computers on this little network, my SO's

and mine...



apache also works, i assume it needs to be running to serve the page.  



to access swat, i have tried my-ip:901 as well as locahost:901. without

the '901', both bring up my page in /home/http like apache ought to.



thanx all,



davros





___
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: System does not boot

2000-08-31 Thread Brian Ashe

Hi Nitebirdz,

Either there is a problem with the kernel or he did not run lilo after he
upgraded it.

Have fun,
-- 
_
 Brian Ashe CTO
 [EMAIL PROTECTED]  Dee-Web Software Services, LLC.
 http://www.dee-web.com/
-
You don't have to swim faster than the shark...
You just have to swim faster than the people you're with.

Thursday, August 31, 2000, 8:42:15 AM, you wrote:


N Any ideas what could be causing this problem:

N LILO boot: 
N Loading linux 
N Uncompressing Linux...

N ran out of input data
N   -- System halted


N A Spanish-speaking user from Bolivia is experiencing this problem and he
N cannot post to the list himself.  He already checked fsck and it doesn't
N show any errors.  

N Any ideas?



N --- 
N Nitebirdz 
N http://www.linuxnovice.org 
N Your place for tips, news, etc. 



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




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



Re: simple samba question

2000-08-31 Thread Matt Housh

 This time, i am in need of the command, the exact command, if possible,
 to mount a share on a win98 machine from my linux rh6.2 machine.

You need to compile samba with smbmount support (./configure
--with-smbmount), as it is NOT compiled in by default. If you're using
RPMS, I'm not sure if they have that support or not. Once you've done
that, try this:

mount -t smbfs -o username=user,password=pass //server/share
/mount/point

HTH, Matt



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



Clear Server for downloading 6.2

2000-08-31 Thread Shawn Hayes

Hello,
Would anyone know of a clear server for RedHat 6.2 that I could download 
from. When I go to the mirror sites on Redhats websight I always get timed 
out because the servers are too busy.  Does anyone know of a safe Redhat 
server that would allow me to download?

Thank you,

Shawn



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



Re: LILO beyond 1024

2000-08-31 Thread Nitebirdz

On Thu, 31 Aug 2000, Kevin Wood wrote:

 Anybody have the link to LILO that will boot beyond 1024 Cylinders?
 
 Thanks
 
 Kevin

I got this from a search at http://www.freshmeat.net

http://freshmeat.net/projects/lilo/?highlight=lilo
ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/



---
Nitebirdz
http://www.linuxnovice.org
Your place for tips, news, etc.



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



Re: web-based passwd change

2000-08-31 Thread Nitebirdz

On Wed, 30 Aug 2000, Edward Marczak wrote:

 On 28/8/00 2:04 AM, Michale C. Balines struck keys that formed the message:
 
  anyone knows a web-based password changing source code?
 
 I forget the names, but I've seen a few on freshmeat.  Check there.

Webmin will allow you to do that and much more else.  Do a search for it
in freshmeat.  


---
Nitebirdz
http://www.linuxnovice.org
Your place for tips, news, etc.



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



Re: Gozilla for Linux?

2000-08-31 Thread Adam Sleight

On Thu, 31 Aug 2000 09:46:13 -0500
 [EMAIL PROTECTED] (Jonathan Wilson) wrote:
#Get the one who's unofficial name is "nt", otherwise referred to as 
#"Downloader for X" look for it on freshmeat.net

check out http://www.idata.sk/~ondrej/pavuk/
start it for the GUI pavuk -X



#At 06:58 AM 8/31/2000 -0100, you wrote:
#Does anybody know about a software for Linux (like Gozilla) capable to
#pause/resume download of files? A software that can be used under Gnome
#(and/or Netscape maybe)? Here links to providers are bad so it would be
#good to resume brocken download.
#
#Misko
#
#
#
#___
#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

`
___
adam http://www.kaikun.com 3,800 photos



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



How many IP's can 1 NIC card have?

2000-08-31 Thread Eric Wood

I have assigned several ip address to my eth0 device.  What is the maximum
number of IP's can I assign to this NIC?

Also, is there a config in Apache that redirects a user to another IP
address with having to serve a web page to redirect them?

-Eric Wood




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



Re: Running Apache

2000-08-31 Thread Vikas

Kerry Miller wrote:
 If you used linuxconf to set up Apache, that may be your problem.
 Linuxconf's Apache section is broken and writes an error to the file.

I _did_ use linuxconf to do some setup when I saw a new section was
added in the treeview. Yesterday I was so annoyed by this problem that I
removed all the VirtualHost directives and yipeee! It got
corrected. I do not remember the lines but the problem must be due to
the Order and allow statements I had seen inside the virtualhost
directives.

Anyway, The problem is solved. 

Thank you very much.
Vikas

-- 
/*
**http://www.programmingParadise.com
*/
#Vikas Yadav, India
//PGP key:http://www.programmingparadise.com/misc/vikas.pgp
'E-mail:[EMAIL PROTECTED]

__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com



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



re-partitioning (more info)

2000-08-31 Thread M. Neidorff

Hi folks,
While I am thinking this through, it occurred to me that once I delete the 
existing partitions I won't have tar or fdisk available anymore to work 
with.  I've created a boot disk (mkbootdisk) and verified that it will boot 
the system.  Will cp'ing the files "tar" and "fdisk" to the bootdisk be 
enough to do the work, or do I need some libraries as well?  Any other 
files that I might be missing?

I just thought of the files to make the ext2 file system also.  Anything else?

Thanks again,

Mark




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



Re: setting partitions

2000-08-31 Thread M. Neidorff

At 09:32 AM 08/31/2000 -0500, you wrote:
How do I set my partitions where I want them? I am using Disk Druid and it
keeps putting my / as hda6 the only way I can get it to hda1 is to not put
in /boot. This is how it is setting it

Mount PointDeviceRequestedActualType
/Boothda17930m7930mLinux Native
Swap   hda554m54m Linux swap
/hda6 23m23m Linux
Native


I dont understand why it wont put / as hda1 or does it not matter? or am I
doing something wrong? Any help would be appreciated as it seems like I am
the only one in this town trying to use Linux.

It "shouldn't matter" (TM) but to take the conservative approach, ddruid 
makes the boot partition the first partition.  In older versions of lilo, 
the boot partition couldn't be beyond the 1024 cylinder limit.  (I get a 
warning with fdisk that my new 18G HDD has more than 1024 cylinders and 
that I should be careful about my boot partition.  why don't you make the 
boot partition first.  BTW, what are you using hda2  hda3 for?  Did you 
know that they could also be primary partitions and used for swap and /?


Mark
   ___
 __HHH__
  (@ @)
.oOO--\_/--OOo.-
| Mark Neidorff|Never assume a conspiracy exists   |
| [EMAIL PROTECTED]|when mere stupidity can explain|
| Just Answers!|an event.  |
| Computer Systems Solutions   |   R. K. Bernstein |
---.ooo0---0ooo.
(   )   (   )
 \ ( ) /
  \_)   (_/



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



Re[2]: (no subject)

2000-08-31 Thread Brian Ashe


Thursday, August 31, 2000, 11:07:51 AM, you wrote:

JW Port scanning is a good idea, otherwise look and see what's not commented 
JW out in /etc/inetd.conf

JW  JW

JW At 09:11 AM 8/31/2000 -0500, you wrote:
John Aldrich wrote:

  Finally, if you do use "ps aux | grep service" you can be
  reasonably certain that said service IS running. As for
  starting and stopping from the command line, you MAY have
  luck with /etc/rc.d/init.d/service start or service
  stop or service restart. IF the service you want is in
  there.

John- What about the inetd services?  A ps won't show them.  I was hoping 
someone would step up and give a way to check those.  I guess a 
portscanning software would do it?  Other than that at least look at the 
file /etc/inetd.conf and make sure that the needed services are uncommented.

Bret

The services in inetd are NOT running unless someone is using them. Inetd
spawns the service when it sees requests on the ports specified in
inetd.conf. Once a connection is made the process should show up in ps but I
at least know it does in top.

Have fun,
-- 
_
 Brian Ashe CTO
 [EMAIL PROTECTED]  Dee-Web Software Services, LLC.
 http://www.dee-web.com/
-
You don't have to swim faster than the shark...
You just have to swim faster than the people you're with.




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



Re: System does not boot

2000-08-31 Thread Andrew So hing-pong

On Thu, 31 Aug 2000, Nitebirdz wrote:

 
 Any ideas what could be causing this problem:
 
 LILO boot: 
 Loading linux 
 Uncompressing Linux...
 
 ran out of input data
   -- System halted
 
 
 A Spanish-speaking user from Bolivia is experiencing this problem and he
 cannot post to the list himself.  He already checked fsck and it doesn't
 show any errors.  
 
 Any ideas?
 
 
 
 --- 
 Nitebirdz 
 http://www.linuxnovice.org 
 Your place for tips, news, etc. 
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
try to recompile a kernel OR reinstall its kernel packages in rpm
format.
-- 
#
# Andrew H.P. So, Software Developer#
# First Ecommerce Limited, http://www.firstecom.com #
# 8/F, Henley Building, 5 Queen's Road Central, Hong Kong   #
# e-mail: [EMAIL PROTECTED], Tel:2289-9542 Fax:2801-5939  #
#



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



Re: simple samba question

2000-08-31 Thread Jeff Hogg


-Original Message-
From: John Losey [EMAIL PROTECTED]
To: '[EMAIL PROTECTED]' [EMAIL PROTECTED]
Date: Thursday, August 31, 2000 11:30 AM
Subject: RE: simple samba question


If I understand correctly...You are trying to mount a share from the Win98
box onto the Linux box?  Samba allows the Windows world seamless access to
files on the UNIX world as if they were seeing files on another Windows
box.
It doesn't, however, allow the UNIX world access to shares on the Windows
boxes.


I gave it a go at my system.  I used the command smbmount //Jeff/c
/mnt/jeff -U tastin -I 169.254.100.2 -N and found my windows98 harddrive
mounted at a remote linux box and responding to an ls command.  Just share
out the portion of your drive you want and use it happily.  It's a tad
akward, but works fine and fast on 10mbit ethernet.  Hope this helps.

Jeff Hogg



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



Re: simple samba question

2000-08-31 Thread Eduardo M. A. M. Mendes

Hello
Have you tried Sharity?   I am running it on my server and the gui
interfacer is pretty nice.

Regards

Eduardo


  This time, i am in need of the command, the exact command, if possible,
  to mount a share on a win98 machine from my linux rh6.2 machine.

 You need to compile samba with smbmount support (./configure
 --with-smbmount), as it is NOT compiled in by default. If you're using
 RPMS, I'm not sure if they have that support or not. Once you've done
 that, try this:

 mount -t smbfs -o username=user,password=pass //server/share
 /mount/point

 HTH, Matt

 ___
 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: Clear Server for downloading 6.2

2000-08-31 Thread Gary Carr

I always get excellent downloads (100k a sec or more) from ftp.flash.net


Gary

 Hello,
 Would anyone know of a clear server for RedHat 6.2 that I could download
 from. When I go to the mirror sites on Redhats websight I always get timed
 out because the servers are too busy.  Does anyone know of a safe Redhat
 server that would allow me to download?

 Thank you,

 Shawn



 ___
 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: setting partitions

2000-08-31 Thread John Aldrich

On Thu, 31 Aug 2000, Jim Travnick wrote:
 How do I set my partitions where I want them? I am using Disk Druid and it
 keeps putting my / as hda6 the only way I can get it to hda1 is to not put
 in /boot. This is how it is setting it
 
 Mount PointDeviceRequestedActualType
 /Boothda17930m7930mLinux Native
 Swap   hda554m54m Linux swap
 /hda6 23m23m Linux
 Native
 
 
 I dont understand why it wont put / as hda1 or does it not matter? or am I
 doing something wrong? Any help would be appreciated as it seems like I am
 the only one in this town trying to use Linux.
 
Change the / partition to being a PRIMARY partition instead of an
extended partition. That's the problem Extended partitions begin with
hda5.
John



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



Re: simple samba question

2000-08-31 Thread Christopher Northrop

Samba rpm from redhat is pre-cooked  and ready to serve..  Best when server
HOT..  No compiling just season to taste..

- Original Message -
From: Matt Housh [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, August 31, 2000 11:40 AM
Subject: Re: simple samba question


  This time, i am in need of the command, the exact command, if possible,
  to mount a share on a win98 machine from my linux rh6.2 machine.

 You need to compile samba with smbmount support (./configure
 --with-smbmount), as it is NOT compiled in by default. If you're using
 RPMS, I'm not sure if they have that support or not. Once you've done
 that, try this:

 mount -t smbfs -o username=user,password=pass file://server/share
 /mount/point

 HTH, Matt



 ___
 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: simple samba question

2000-08-31 Thread Dusty deBoer


On my RedHat 6.1 system, there is an smbmount command.

Should be able to:
smbmount //windowsmachine/sharename /mnt/mountpoint

But I had some trouble with that. It worked when:
smbmount //windowsmachine/sharename /mnt/mountpoint -I windowsIpAdress -U
windowsUsername

Then it asked for a password - maybe there is a way to pass a passowrd in
as a parameter too...?

-Dusty deBoer

On Wed, 30 Aug 2000, davros wrote:

 hi all,
 
 
 
 first off, thanx to those who answered my first question to the list
 
 regarding permissions and Apache - the responses were much appreciated,
 
 i was able to solve the problem.
 
 
 
 This time, i am in need of the command, the exact command, if possible,
 
 to mount a share on a win98 machine from my linux rh6.2 machine.
 
 
 
 samba is installed and working on the rh6.2 machine.  from the win98
 
 machine, i am able to access the smb shares on the linux machine.  I am
 
 also able to use smbclient to send and recieve files with the 98
 
 machine, and 
 
 smbclient -L win98-machine does report correctly the shares on the 98
 
 machine.
 
 
 
 i have checked and crosschecked the man pages for mount and smbmount, as
 
 well as several howtows and even some newbie linux sites.  i do not have
 
 enough of a background using mount and linux in general to kludge the
 
 proper command together!  i guess that smbmount runs within mount or
 
 something to that effect...in any case, i cannot seem to do it!
 
 
 
 while im at it, i also cannot get swat to work. samba works fine
 
 otherwise, and the correct swat line (according to a newbie help file)
 
 is present in /etc/services:
 
 swat 901/tcp
 
 
 
 as well as inetd.conf:
 
 swat stream tcp nowait.400 root /usr/sbin/swat swat
 
 
 
 i didnt mess with tcp wrappers, even though it was suggested at this
 
 time because there are only 2 computers on this little network, my SO's
 
 and mine...
 
 
 
 apache also works, i assume it needs to be running to serve the page.  
 
 
 
 to access swat, i have tried my-ip:901 as well as locahost:901. without
 
 the '901', both bring up my page in /home/http like apache ought to.
 
 
 
 thanx all,
 
 
 
 davros
 
 
 
 
 
 ___
 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: SSL/SSH support in RH 7.0? (was: Re: unsuscribe)

2000-08-31 Thread John Aldrich

On Thu, 31 Aug 2000, Greg Wright wrote:
 No, you can email to [EMAIL PROTECTED] with the subject
 "unsubscribe." However, you still have to get your password from
 them somehow, and I don't know if there's a way to get it to email
 you back your password. 
 
Re-read my comments above, which you seem to have missed.
 
 He cannot do that is he has no X a lot of servers don't run X or if they
 do, Netscape may not be loaded etc , so if you only have lynx on say a RH
 5.x box for instance, you are going to be out of luck using SSL  ...   see
 now ?
 
 The main problem here is that the text I supplied is not anywhere obvious
 IMHO
 
Agreed. However, someone else provided the key to mail-only removal:
send an email to "[EMAIL PROTECTED]" with a subject of
"password" and it'll email you your password. Whereupon  you can send
another email with unsubscribe and your password.
John



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



Re: re-partitioning

2000-08-31 Thread Duane Clark

Mark wrote:
 Hi folks,
 
 I know that we have beat this topic up for a while.  I just want to clarify 
 an issue.  I've just gotten a new HDD and want to take my RH 6.2 
 installation and
 
   tar the partitions onto the new drive (easy)
   delete existing partitions from old drive, (also easy)
   * re-partition old drive
   * replace the files onto the new partitions.
 
 While I am thinking this through, it occurred to me that once I delete the 
 existing partitions I won't have tar or fdisk available anymore to work 
 with.  I've created a boot disk (mkbootdisk) and verified that it will boot 
 the system.  Will cp'ing the files "tar" and "fdisk" to the bootdisk be 
 enough to do the work, or do I need some libraries as well?  Any other 
 files that I might be missing?

Well, it is not clear to me why if you have copied the files onto your
new drive, that you would not be booting from that. But in any case, if
you can burn CDs and have a computer that can boot from the CDROM
(almost any computer built in the last few years), then in a situation
like this you might want to consider downloading the "Linuxcare Bootable
Business Card". 

http://www.linuxcare.com/bootable_cd/

An invaluable tool to have around for things like this and any
unexpected emergencies that might come up. They can fit a lot more tools
onto a CDROM, including tar and fdisk and lots of READMEs with helpful
info.



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



Re: web server

2000-08-31 Thread Chad W. Skinner

I don't claim to be a guru of any kind in fact I am new to many aspects of
Linux, but I'll be glad to help you where I can. Unfortunately, I am in the
process of moving and have packed all of my books, etc. so I am afraid that
until I can get my primary computer setup I won't be of much assistance.

I did catch the middle of the thread and from what I understand from other
posts I may have misinterpreted your original question.

I should be setup by Sunday the third so if you don't get this going let me
know and I'll try to help you where I can.
--
Out of curiosity how are you sending your web traffic to a private address
in the first place? Meaning from what I gather there is no internet access
to this, box but only intranet?

Do you have a DNS entry for the web server that is currently pointing the
name of the web server to 10.0.0.1?

If this is true let me know and I'll give you a little more information on
how to change the DNS entry for the www server or the DNS-Howto covers it
fairly well.

Chad



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



system logging

2000-08-31 Thread Andy Schuler

Does anyone know the easiest way to get important logs, (ie connection
attempts, disk space usage, other performance indicators) emailed to you
daily? Thanks in advance!

-shoe



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



Re: Urgent: Upgrading from RH6.1 to 6.2 through telnet....

2000-08-31 Thread Nitebirdz

On Thu, 31 Aug 2000, UK Jaiswal wrote:

 Hi,
 
 I have just telnet access to a box with RedHat-6.1, ie, I don't have
 physical access. How should I proceed to upgrade the whole system to
 RedHat-6.2 at a shot?
 

I suppose up2date would be your best choice, although I never got it to
work.  You can also try downloading all the RPMs and running "rpm -Uvh
*" on them.  Would a kickstart with an install over FTP also work?  



---
Nitebirdz
http://www.linuxnovice.org
Your place for tips, news, etc.



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



Re: files not in rpm db

2000-08-31 Thread Nitebirdz

On Thu, 31 Aug 2000 [EMAIL PROTECTED] wrote:

 you know,
 
 rpm -qf file
 
 will tell if file pertain to some rpm package or not...
 
 how can do that for all files in the system ? (except /proc)
 

By the way, now that we're on this topic.  Yesterday, I needed to know
which RPM package installed the libXpm.so.4 file, and this is what I
obtained from this command that you're recommending:

[jortega@brussels tips]$ rpm -qf /usr/X11R6/lib/libXpm.so.4 file
/usr/X11R6/lib/libXpm.so.4 is not owned by any package

Any ideas why this happened?  I mean, this is a new install, and I suppose
that there should only be RPMs installed.  I finally figured out that the
package came with the libXpm RPM package (duh!), but why didn't "rpm
-qf" returned that in the first place?



---
Nitebirdz
http://www.linuxnovice.org
Your place for tips, news, etc.



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



Re: How many IP's can 1 NIC card have?

2000-08-31 Thread Nitebirdz

On Thu, 31 Aug 2000, Eric Wood wrote:

 I have assigned several ip address to my eth0 device.  What is the maximum
 number of IP's can I assign to this NIC?
 
 Also, is there a config in Apache that redirects a user to another IP
 address with having to serve a web page to redirect them?
 

I may be totally wrong, but I think I read recently in this very same list
that the amount is actually in the hundreds.  Take it with a grain of salt
though.   :-)



---
Nitebirdz
http://www.linuxnovice.org
Your place for tips, news, etc.



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



Re: setting partitions

2000-08-31 Thread Jim Travnick


-Original Message-
From: M. Neidorff [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Thursday, August 31, 2000 12:17 PM
Subject: Re: setting partitions


At 09:32 AM 08/31/2000 -0500, you wrote:
How do I set my partitions where I want them? I am using Disk Druid and it
keeps putting my / as hda6 the only way I can get it to hda1 is to not put
in /boot. This is how it is setting it

Mount PointDeviceRequestedActualType
/Boothda17930m7930mLinux Native
Swap   hda554m54m Linux swap
/hda6 23m23m Linux
Native


I dont understand why it wont put / as hda1 or does it not matter? or am I
doing something wrong? Any help would be appreciated as it seems like I am
the only one in this town trying to use Linux.

It "shouldn't matter" (TM) but to take the conservative approach, ddruid
makes the boot partition the first partition.  In older versions of lilo,
the boot partition couldn't be beyond the 1024 cylinder limit.  (I get a
warning with fdisk that my new 18G HDD has more than 1024 cylinders and
that I should be careful about my boot partition.  why don't you make the
boot partition first.  BTW, what are you using hda2  hda3 for?  Did you
know that they could also be primary partitions and used for swap and /?


Mark

Not using hda2 or hda3 for anything these are just what RH set it all up as.
Right now the drive has four partitions on it for windows I delete them and
start with what I thought would be fresh. dont want win. on this system at
all its the kids old system that she refuses to use anymore, so I figured it
would make a good Linux box. when you say the boot partition do you mean "/"
or "/boot"? I have tried to make both first and no matter what it moves "/"
to hda6. Sorry if I sound dumb at this but I'm trying to learn this and want
to learn it right the first time.
Thanks
Jim



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



Re: (no subject)

2000-08-31 Thread Rodrigo Moya

 Bob Lang wrote:
 
 How can I be sure that a service is running? I'm using ps-aux|grep
 service name, but I'm not really confident that what it tells me is
 truly what's going on. Also, how do I stop/start that service from the
 command line? I have the same problem with the NIC not loading
 sometimes as other people have posted here. Thanks

in /etc/rc.d/init.d there is one script for each service installed.
These scripts accept (usually) 3 parameters:

* stop
* start
* status - to see if it's running




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



Re: web-based passwd change - MY SOLUTION!!!!

2000-08-31 Thread Jason Costomiris

On Thu, Aug 31, 2000 at 02:00:57AM -, Peter Kiem wrote:
: 
: Here is my solution to this.  I saw this a while ago on this list where 
: someone (I forget who sorry) had written a PHP class to talk to the PopPass 
: daemon to change passwords.

The one you have doesn't look like the one I did a while back, so it's
not mine. :)  Mine is at:

http://www.zend.com/codex.php?id=62single=1

: The PHP class had very limited error handling and I wrote a similar class 
: from scratch as a learning exercise.

Mine doesn't really do much error handling at all, beyond reporting it, and
bombing out.  You really shouldn't need much more. :)

-- 
Jason Costomiris|  Technologist, geek, human.
jcostom {at} jasons {dot} org  |  http://www.jasons.org/ 



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



nsf and sub mounted partitions

2000-08-31 Thread Bret Hughes

Here's one to keep in mind.  I ran into this today and it
took me about an hour to figure out what was happening, I
still can't figure out what to do.  Maybe the discussion
this is old hat to you more experienced admins out there but
I thought I would put out to the list just in case.

symptom:

from my laptop on the office network, I copied a directory
to a directory way down the tree on an  nfs mounted
partition, /pub.

the directory was /pub/SoftWare/linux_software/redhat_addons

/pub is mounted on the server and exported as /pub

I logged in to the server and went ot look for the directory
and it was not there.  su -.  still not there.  Hmmm.

I had copied the directory from a tar file using gmc and
thought, "This must be some gmc virtual filesystem smoke and
mirrors."  Wrong.
I copied it again after extracting it and using cp.  Still
not found by root on the server.

NT machine via samba could not see it either.  Checked all
the exports and mounts to make sure something weird like
being on the wrong box similar but different directories
etc. No joy.

Long story shorter, I recently ran out of space on the /pub
directory and mounted a new 5GB partition as /pub/SoftWare.
When I created the new partition I copied the files to the
old and evidently left a bunch of stuff there.  I then
mounted the new partition as /pubSoftWare.

The nfs mount is not allowing me to see anything in the
other partition, just what is there in the same partition.
I thought I remembered reading a while back that htere is an
option to the exports file that will allow an nfs mount to
use the partions that my be mouted under it but I cannot
find it.  Any Ideas?

It does not seem too flexible to make me export and mount
each partition under the exported one.

What is the best way to set this up?

Bret





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



Error Compiling for FA311

2000-08-31 Thread Kevin Wood

Sorry to send this to the list, but here is the makefile and here is the
error I receive.  Again, I am running a RedHat released 2.2.16-3 kernel
on an Athlon 750MHz machine.  I am currently running an etherexpress pro
100 card and it works fine.  The customer just seems to have a need for
the netgear.  Any help would be appreciated.  Thanks

Kevin
-- 
Kevin Wood
Atipa Linux Solutions
850 East Industrial Park Drive
Suite 8
Manchester, NH  03109
P(603)622-7171 x 15
F(603)622-7272

[root@setmeup FA311]# make fa311
cc   fa311.o   -o fa311
/usr/lib/crt1.o: In function `_start':
/usr/lib/crt1.o(.text+0x18): undefined reference to `main'
fa311.o: In function `fa311_probe':
fa311.o(.text+0xc): undefined reference to `pcibios_present'
fa311.o(.text+0x2b): undefined reference to `printk'
fa311.o(.text+0x47): undefined reference to `init_etherdev'
fa311.o(.text+0x67): undefined reference to `pcibios_read_config_byte'
fa311.o(.text+0x7e): undefined reference to `pcibios_read_config_dword'
fa311.o(.text+0xa4): undefined reference to `printk'
fa311.o(.text+0xaa): undefined reference to `kfree'
fa311.o(.text+0xfd): undefined reference to `jiffies'
fa311.o(.text+0x16d): undefined reference to `ether_setup'
fa311.o(.text+0x17e): undefined reference to `request_region'
fa311.o(.text+0x1c5): undefined reference to `printk'
fa311.o(.text+0x1f9): undefined reference to `printk'
fa311.o(.text+0x229): undefined reference to `pcibios_find_device'
fa311.o: In function `fa311_open':
fa311.o(.text+0x2ba): undefined reference to `printk'
fa311.o(.text+0x310): undefined reference to `request_irq'
fa311.o(.text+0x34d): undefined reference to `printk'
fa311.o(.text+0x3df): undefined reference to `__this_module'
fa311.o(.text+0x3e5): undefined reference to `__this_module'
fa311.o: In function `fa311_close':
fa311.o(.text+0x428): undefined reference to `free_irq'
fa311.o(.text+0x440): undefined reference to `__this_module'
fa311.o(.text+0x446): undefined reference to `__this_module'
fa311.o: In function `fa311_start_xmit':
fa311.o(.text+0x557): undefined reference to `jiffies'
fa311.o: In function `fa311_start_receive':
fa311.o(.text+0x5eb): undefined reference to `alloc_skb'
fa311.o(.text+0x63b): undefined reference to `skb_over_panic'
fa311.o(.text+0x6a1): undefined reference to `skb_over_panic'
fa311.o(.text+0x6b1): undefined reference to `eth_type_trans'
fa311.o(.text+0x6bb): undefined reference to `netif_rx'
fa311.o(.text+0x6c0): undefined reference to `jiffies'
fa311.o: In function `fa311_interrupt':
fa311.o(.text+0x9cb): undefined reference to `bh_active'
fa311.o: In function `fa311_dev_reset':
fa311.o(.text+0xaea): undefined reference to `__const_udelay'
fa311.o: In function `fa311_queue_create':
fa311.o(.text+0xb29): undefined reference to `kmalloc'
fa311.o(.text+0xbd8): undefined reference to `alloc_skb'
fa311.o: In function `fa311_queue_delete':
fa311.o(.text+0xc57): undefined reference to `__kfree_skb'
fa311.o(.text+0xc71): undefined reference to `kfree'
fa311.o: In function `fa311_tx_skb_reclaim':
fa311.o(.text+0xcfa): undefined reference to `__kfree_skb'
fa311.o: In function `fa311_phy_setup':
fa311.o(.text+0xd9b): undefined reference to `__const_udelay'
fa311.o(.text+0xdd6): undefined reference to `__const_udelay'
fa311.o(.text+0xec4): undefined reference to `printk'
fa311.o: In function `init_module':
fa311.o(.text+0xf2f): undefined reference to `printk'
fa311.o: In function `cleanup_module':
fa311.o(.text+0xf5c): undefined reference to `unregister_netdev'
fa311.o(.text+0xf6a): undefined reference to `release_region'
fa311.o(.text+0xf70): undefined reference to `kfree'
collect2: ld returned 1 exit status
make: *** [fa311] Error 1



all: fa311.o

fa311.o: fa311.c fa311.h
gcc -D__KERNEL__ -DMODULE -Wall -Wstrict-prototypes -O6 -c fa311.c `[ -f 
/usr/include/linux/modversions.h ]  echo -DMODVERSIONS`

clean: 
rm -f core *.o



Re: system logging

2000-08-31 Thread Mikkel L. Ellertson

On Thu, 31 Aug 2000, Andy Schuler wrote:

 Does anyone know the easiest way to get important logs, (ie connection
 attempts, disk space usage, other performance indicators) emailed to you
 daily? Thanks in advance!
 
 -shoe
 
You may want to check out logwatch.  You run it as cron job.



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



ssh key fingerprint

2000-08-31 Thread Gustav Schaffter

Hi,

I'm an old pgp user, so my concepts and vocabulary *might* be a little
out of style for ssh. If so, please correct me.

I have (open) sshd installed and configured on a server. I have the
(open) ssh client on another PC. During the sshd installation, private
and public keys for RSA and DSA were both generated. During this key
generation, the fingerprints for the public keys were printed to stdout.
I took a pen and scribbled them down.

When I try to connect to the server from a remote PC using the ssh
client, the client tells me something like: Unknown host, this is the
public key fingerprint, do you want to accept? It then prints out the
fingerprint of the public host key it has received, for me to decide
upon. Since I could verify the fingerprint against my notes, I had no
problem to accept the public key.



Now, assume that the client PC is remote. Not run by me at all. The user
on that computer might want to verify the fingerprint before trusting
that he's actually talking to my server and not to a 'man in the
middle'.
So he calls me on the phone (I know the guy and he knows me) and he asks
me: "What's your public key fingerprint?"

In my case I have it, since I wrote it down. But assume I didn't.


Question:
How can I, on the sshd server computer extract this fingerprint from a
public key so that I can read it up to my friend over the telephone and
he can know for sure that he's connecting to my computer?


Best regards
Gustav

-- 
pgp = Pretty Good Privacy.

To get my public pgp key, send an e-mail to: [EMAIL PROTECTED]

Visit my web site at http://www.schaffter.com



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



Re: LILO beyond 1024

2000-08-31 Thread Jonathan Wilson

Very good, you simply need one that's 0.21.4.2 OR HIGHER. Knowing that you 
can now go look for an RPM for it @ www.rpmfind.net (can be a higher 
number, but not lower). Try to get one that claims to be made for your distro.

 JW


At 10:56 AM 8/31/2000 -0500, you wrote:
ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/



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



RE: system logging

2000-08-31 Thread Jeff Grossman

Use Logrotate.  Type in man logrotate.

Jeff

---
Jeff Grossman ([EMAIL PROTECTED])

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Andy Schuler
Sent: Thursday, August 31, 2000 11:43 AM
To: [EMAIL PROTECTED]
Subject: system logging

Does anyone know the easiest way to get important logs, (ie connection
attempts, disk space usage, other performance indicators) emailed to you
daily? Thanks in advance!

-shoe



___
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



Comanche?

2000-08-31 Thread Frank Reichenbacher

I downloaded the linux package for Comanche from covalent.net and have just
realized that it is not a neat rpm package likle those that came on the CD.
How do I install this tar  gz file on my RH 6.2 box? And then how is it
started? Does it load when httpd is started? There are instructions (sort
of) on the comanche site, but I'm sure it assumes the user knows a heck of a
lot more than I know.

Frank Reichenbacher




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



RH 7.0 question.. kernel-enterprise?

2000-08-31 Thread Jason Costomiris

I was just poking through the packages in the 7.0 beta release..

Anyone have a summary of what's different about the kernel-enterprise
package?

-- 
Jason Costomiris|  Technologist, geek, human.
jcostom {at} jasons {dot} org  |  http://www.jasons.org/ 



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



Re: What are good NIC Choices for RH6.2?

2000-08-31 Thread Spunk S. Spunk III

I had problems with a Lynksys 10/100 card because of a Tulip driver thing so
I went down to Frys and bought a $19 D-Link 10/100 card that worked
perfectly. 

Spunk



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



RE: system logging

2000-08-31 Thread Andy Schuler

That's exactly what I was looking for. Thanks!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Mikkel L. Ellertson
Sent: Thursday, August 31, 2000 12:58 PM
To: [EMAIL PROTECTED]
Subject: Re: system logging


On Thu, 31 Aug 2000, Andy Schuler wrote:

 Does anyone know the easiest way to get important logs, (ie connection
 attempts, disk space usage, other performance indicators) emailed to you
 daily? Thanks in advance!
 
 -shoe
 
You may want to check out logwatch.  You run it as cron job.



___
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: How many IP's can 1 NIC card have?

2000-08-31 Thread Eric Wood

I read the IP-Aliases howto.  It said the 2.0.x kernel support 256 aliases
on 1 nic.  2.2.x/2.4.x should be the same or even more.

-eric wood

- Original Message -
From: "Nitebirdz" [EMAIL PROTECTED]
 On Thu, 31 Aug 2000, Eric Wood wrote:

  I have assigned several ip address to my eth0 device.  What is the
maximum
  number of IP's can I assign to this NIC?
 
  Also, is there a config in Apache that redirects a user to another IP
  address with having to serve a web page to redirect them?
 

 I may be totally wrong, but I think I read recently in this very same list
 that the amount is actually in the hundreds.  Take it with a grain of salt
 though.   :-)




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



Re: re-partitioning (more info)

2000-08-31 Thread Statux

You'd need static versions of those utilities. Libraries are too big for
bootdisks. You can prolly manage to get the source and compile your own
static copies :)

On Thu, 31 Aug 2000, M. Neidorff wrote:

 Hi folks,
 While I am thinking this through, it occurred to me that once I delete the 
 existing partitions I won't have tar or fdisk available anymore to work 
 with.  I've created a boot disk (mkbootdisk) and verified that it will boot 
 the system.  Will cp'ing the files "tar" and "fdisk" to the bootdisk be 
 enough to do the work, or do I need some libraries as well?  Any other 
 files that I might be missing?
 
 I just thought of the files to make the ext2 file system also.  Anything else?
 
 Thanks again,
 
 Mark
 
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 

-- 
**
* Statux *
*
*   |   *
* E-Mail:   |   [EMAIL PROTECTED]  *
* ICQ:  |   1732414 *
* Homepage: |   http://www.geocities.com/reverendstatux/*
*   |   *
*



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



  1   2   >