Re: eth0: card reports no resources.

2000-08-06 Thread John Summerfield


 and how would I find out?

I have had a "resources" problem., and it HAS been connected with IRQ problems.

How did I find out?
I read the mesaages; these are your friends:
dmesg
less /var/log/messages

I've slo noticed that a recent version of modutils is definitely duff (the 
recommended version for 2.4, unless there's been a more recent version since I 
looked) that fails to load modules correctly.


 
 On Sat, 5 Aug 2000, John Summerfield wrote:
 
   Hi everyone
   
   I have two servers with RH 6.2 and a few others with 6.1
   
   I'm getting a TON of messages like the above on the 6.2 systems ONLY.
   They're running the latest 2.2.16 kernel while the other servers still ru
 n
   2.2.14
   
   what is the meaning of this message? why is it only happening on the 6.2
   servers?
  
  IRQ problem perhaps?
  
  
  
  
  ___
  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
 




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



Re: running anaconda to test it.

2000-08-06 Thread John Summerfield


 How do you test anaconda. I made some changes to the pixmaps and I wanna
 test it before I burn it to cd.

I might set up a special entry in /etc/lilo.conf or s special boot floppy that 
mounts the ISO image as if it were a CD, and runs it from there.

You might read /usr/src/linux/Documentation/initrd.txt for more handy hints;-)


 
 I'm using 6.2
 
 I've tried:
 
 ./anaconda --gui
 --rootpath=path/I/want/to/install/it/in
 --method=dir://path/to/my/modified/redhat/dist
 
 This starts up and gives me the RedHat logo but then craps out with some
 error which doesn't really give me any information


Didn't help us either.





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



Re: customizing RedHat 6.2

2000-08-06 Thread Bill Nottingham

Frank Hale ([EMAIL PROTECTED]) said: 
 I want to change the version and release name in a customized RH 6.2 CD
 I am making. I looked in redhat-release-6.2-1.src.rpm and I cannot find
 the definition of %{release_version} and %{release_name}. These
 variables would seemed to be defined somewhere else but where? Here is
 the spec file, keep in mind this is the only file in the SRC.RPM

You can define RPM macros on the command line, hence:

rpm --define "release_version 6.2" --define "release_name Zoot" -ba \
  redhat-release.spec
  
:)

Bill



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



Re: running anaconda to test it.

2000-08-06 Thread John Summerfield

 On Sat, Aug 05, 2000 at 05:49:26PM -0400, Frank Hale wrote:
  
  This starts up and gives me the RedHat logo but then craps out with some
  error which doesn't really give me any information
 
 See, this may not look like information to you, but it can tell me
 exactly what is wrong.  One thing I hate about "bug" reports is when
 people say "it printed an error message" and don't bother to copy and
 paste it.

Matt
I agree with your comments.

Nonetheless, messages presented to inform the user
a)  Should be visible to the user (how many Linux errors aren't?)
b)  Should be intelligible to a reasonably competent user.
c)  Should point the user in the direction of resolving the problem (if the message 
arises because of one).

A message that we can't blame on MAT and which fails in all criteria:
"lp1 on fire" - worse, the message is perpeturated as "usblp1 on fire."

Both are alive in the 2.4.test5 kernel.

Perhaps I can concede that this one's most likely to appear in circumstances where 
there's no user to see the message, but not always.

It's a kernel message, and the only place a user is likely to find it is in 
/var/log/messages. So it fails on visibility.

A competent user might surmise there's a problem with the printer. My wife might dump 
a bucket of water on it.

It fails too, because it leads nobody (except, perhaps a kernel hacker) to a solution.

As a starting0point for "reasonably competent user," I suggest anyone who can follow 
most of the discussion on this list makes the grade. In contrast, I would not descibe 
my wife in those terms.





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



Re: customizing RedHat 6.2

2000-08-06 Thread John Summerfield

 Frank Hale ([EMAIL PROTECTED]) said: 
  I want to change the version and release name in a customized RH 6.2 CD
  I am making. I looked in redhat-release-6.2-1.src.rpm and I cannot find
  the definition of %{release_version} and %{release_name}. These
  variables would seemed to be defined somewhere else but where? Here is
  the spec file, keep in mind this is the only file in the SRC.RPM
 
 You can define RPM macros on the command line, hence:
 
 rpm --define "release_version 6.2" --define "release_name Zoot" -ba \
   redhat-release.spec


and when did this new feature surface? Get documented?
[summer@possum summer]$ rpm -q rpm
rpm-3.0.4-0.48
[summer@possum summer]$ rpm --define
--define: missing argument
[summer@possum summer]$ man rpm | grep -w define
[summer@possum summer]$  
 

we can't use the brilliant new features of rpm if they're not documented. Remember, if 
it's not written down, it doesn't exist!!


   
 




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



Re: customizing RedHat 6.2

2000-08-06 Thread Frank Hale

 
 You can define RPM macros on the command line, hence:
 
 rpm --define "release_version 6.2" --define "release_name Zoot" -ba \
   redhat-release.spec
 
 :)
 

Thanks, I didn't know that. I wasted 3 days trying to find where those
variables were defined. 

Frank



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



Re: customizing RedHat 6.2

2000-08-06 Thread Bill Nottingham

John Summerfield ([EMAIL PROTECTED]) said: 
  rpm --define "release_version 6.2" --define "release_name Zoot" -ba \
redhat-release.spec
 
 
 and when did this new feature surface? 

3.0.

 [summer@possum summer]$ rpm -q rpm
 rpm-3.0.4-0.48
 [summer@possum summer]$ rpm --define
 --define: missing argument

You have to give it *something* to define.
See /usr/doc/rpm-version/macros.

Bill



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



Re: customizing RedHat 6.2

2000-08-06 Thread John Summerfield

 John Summerfield ([EMAIL PROTECTED]) said: 
   rpm --define "release_version 6.2" --define "release_name Zoot" -ba \
 redhat-release.spec
  
  
  and when did this new feature surface? 
 
 3.0.
 
  [summer@possum summer]$ rpm -q rpm
  rpm-3.0.4-0.48
  [summer@possum summer]$ rpm --define
  --define: missing argument
 
 You have to give it *something* to define.
 See /usr/doc/rpm-version/macros.

Bill. 

You missed the point. The option is not documented, either by "--help" or in 
my man page,

You also missed (snipped) the second question.



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



Re: rpmdb conversion?

2000-08-06 Thread Svante Signell

Matt,

Thank you very much for your assistance. Your help saved my day.

btw: Where to find the rpm-4.0-0.66 (source), pinstripe has 0.59 while rawhide has 
0.56.

Matt Wilson writes:
  It seems that you have some db 3.0 databases -- you must have been
  caught in the middle of the db1 - db3.0 - db3.1 thing.  To migrate
  to db 3.1, you'll need to change your database back to a db1 database,
  then upgrade the rpm and db3 packages to db3.1, then migrate from db1
  back to db3.  Here's how you do this:
  
  with the rpm built against db3.0 (not 3.1), and with db3-3.0* installed:
  rpm --rebuilddb --dbapi 3 --rebuilddbapi 1
  rpm -Uvh rpm-*4.0-0.66* db3-3.1*
  rpm --rebuilddb --dbapi 1 --rebuilddbapi 3
  rpm --rebuilddb 
   (just to make sure everything is sane...)
  
  Matt
  
  On Fri, Aug 04, 2000 at 03:51:43PM +0200, Svante Signell wrote:
   How to convert the rpm database to version 3 vithout starting from
   scratch??
   ... 
  ___
  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: SSH

2000-08-06 Thread Nitebirdz

On Sat, 5 Aug 2000, RTS wrote:

 I just set up a new RedHat 6.2 system.
 
 What is everyone using today for SSH services on a system??
 
 Randy
 [EMAIL PROTECTED]

I've been using either OpenSSH or SSH 1.2.27.  Versions of SSH beyond
1.2.27 cannot be used for commercial purposes unless you purchase a
license, as far as I understand.  Personal use must be another issue, I
guess.  

--
Nitebirdz
http://www.linuxnovice.org
Tips, articles, news, links...



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



Re: How are you supposed to add an existing user to a group?

2000-08-06 Thread Joe Brenner


Joe Brenner [EMAIL PROTECTED] wrote: 

 Perhaps this is a stupid question (I'm coming to the
 conclusion that there are no intelligent questions), but if
 you've just created a new group, how are you supposed to go
 about adding new users to it these days?  The man pages for
 useradd, groupadd and groupmod are not enlightening (to me) 
 on this point.  

Ah, but a man -k group turns up what I was looking for: 

   gpasswd - administer the /etc/group file

Which confirms what I was saying about the nature of questions. 
Or at least about my questions. 



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



List problems - please help!

2000-08-06 Thread [101701,2041]

On Thu, 03 Aug 2000 13:51:27 -0400 Kambiz Aghaiepour [EMAIL PROTECTED]
wrote

  Subject: [RHL] List has been moved!!!  (Hooray!!!)

  I have moved this list to a new server running Mailman.  You can go 
  to the lists URL at
https://listman.redhat.com/mailman/listinfo/redhat-list/ 
  to set various options such as digest/non-digest, temporarily disabling 
  delivery, view archives, etc.  

Kambiz, I have tried to access this site but my versions of Nav and
Explorer can not get through!  

  You have been assigned a random password that is REQUIRED
  in order to make changes to your subscription.  You can also have 
  Mailman email you your password by going to the main URL and at 
  the bottom entering your email address and clicking on "Edit Options".  

Unfortunately, I can not even get my password in order to send commands to
[EMAIL PROTECTED]

Can you help me out of this mess.  I want to unsubscribe from the list. 
Can you email me the password or can you unsubscribe me?  If it helps you
in any way I am including the reply I receieved when I subscribed recently
tothe list.

Thank you very much.

Stefan

===

What I got back when I subscibed was the following ...


Sender: [EMAIL PROTECTED]
Date: 28 Jul 2000 19:31:48 -
Message-ID: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: subscribe redhat-digest

You have added to the subscriber list of:

[EMAIL PROTECTED]

the following mail address:

[EMAIL PROTECTED]

By default, copies of your own submissions will be returned.

This is an automated subscription mechanism.  For your verification, a
transcript of the original subscription request is included below.

If the wrong address has been subscribed and you seem to be unable to fix
it
yourself, reply to this message now (quoting it entirely (for diagnostic
purposes), and of course adding any comments you see fit).
--
From [EMAIL PROTECTED]  Fri Jul 28 15:31:47 2000
Received: (qmail 16941 invoked from network); 28 Jul 2000 19:31:47 -
Received: from mail.redhat.com (199.183.24.239)
  by lists.redhat.com with SMTP; 28 Jul 2000 19:31:47 -
Received: from sphmgaaf.compuserve.com (hs-img-6.compuserve.com
[149.174.177.155])
   by mail.redhat.com (8.8.7/8.8.7) with ESMTP id PAA08214
   for [EMAIL PROTECTED]; Fri, 28 Jul 2000 15:31:47
-0400
Received: (from mailgate@localhost)
   by sphmgaaf.compuserve.com (8.9.3/8.9.3/SUN-1.9) id PAA01586
   for [EMAIL PROTECTED]; Fri, 28 Jul 2000 15:31:16
-0400 (EDT)
Date: Fri, 28 Jul 2000 15:30:56 -0400
From: "[101701,2041]" [EMAIL PROTECTED]
Subject: subscribe redhat-digest
Sender: "[101701,2041]" [EMAIL PROTECTED]
To: "redhat-digest-request@re" [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain;
charset=ISO-8859-1
Content-Disposition: inline

subscribe redhat-digest





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



Re: Security Risks?

2000-08-06 Thread Jake McHenry

On 6 Aug 2000, Robert Soros wrote:

--then change the permissions and chmod /var/log/secure to something like 
--
--
--  chmod 664 /var/log/secure
--  chown root:ADMINS /var/log/secure
--  ls /var/log/secure -al
--  
--  -rw-rw   1 root ADMINS   811 Aug  2 04:13
--  /var/log/secure
--
--
--anybody outside of the the ADMINS group (or root) should not be able to
--read/write this file
--
--chmod can also be used with letters if you wish, instead of numerically
--(ie.  
--
--   chmod o+rw,g+rw,u-rwx /var/log/secure


The last line should be "chmod o-rwx,g+rw,u+rw" if you want to get what you said
above.

Jake



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



Books exchange offer

2000-08-06 Thread Miroslav Skoric

If somebody of you is able to get from the bookshop some printed books
for me, related to Linux, I offer in return some books from here. If you
are interested in some touristical, historical and similar way of
exploring this part of Europe and get several unused great illustrated
titles in english covered our area (ex-YU states), its culture and
history, you are welcome. So let me know via this list.

Misko




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



Sendmail 8.11

2000-08-06 Thread Jake McHenry


I have been setting up my new linux machine, and have been trying to install the
new version of Sendmail, 8.11, but have been having trouble under RH6.2. I had
it working under 6.1. Does 6.2 come with md5? If it does, that's great. If not,
where can I download it again? I can't remember where I got it before. I did a
search on RedHat's site, but I don't think I found what I needed.

Thanks,

Jake McHenry
[EMAIL PROTECTED]



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



Re: SSH

2000-08-06 Thread Graham Hemmings

http://www.openssh.com works for me!

Graham...

At 04:15 06/08/2000, you wrote:
I just set up a new RedHat 6.2 system.

What is everyone using today for SSH services on a system??

Randy
[EMAIL PROTECTED]



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



Debugging with DDD

2000-08-06 Thread Thomas Gould

Hi,
I just installed DDD and get the following message when I try to debug a c++
program.  DD itself says it cannot open GDB.  Any ideas?

 [tgould@xx AgeCalculator]$ ddd a.out 
Warning: Cannot find callback list in XtAddCallback 
(Annoyed?  Try 'Edit-Preferences-General-Suppress X Warnings'!) 
Warning:Actions not found: toggle-overstrike 
Warning: Actions not found:toggle-overstrike 
Warning: Actions not found: toggle-overstrike
Warning: Actions not found: toggle-overstrike
Warning: Actions not found: toggle-overstrike
Warning: Cannot convert string "XmTOGGLE_INDETERMINATE" to type UnsignedChar
gdb: cannot open /dev/pts/1: Input/output error
gdb: child communiation setup failed   



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



Re: Fiber Optic NICs

2000-08-06 Thread Willy Wittesaele

Hello ,

I made a small test with the Alied Telesyn card (2450 FT card - I think)
It worked , but for the driver you have to look at the chip that's on
the card and a driver with another name is available in the kernel
source tree.

It is only a 10 Mbit card.

good luck , willy


On Sat, 5 Aug 2000, Kevin Diffily wrote:

 Does anyone know of support for Fiber Optic NICs in Red Hat 6.2?  Has 
 anyone had direct experience using them?
 
 Thanks
 Kevin
 
 
 
 ___
 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: Fiber Optic NICs

2000-08-06 Thread Willy Wittesaele

Hello ,

A few months ago I made a little test with an Alied Telesyn
10 Mbit NIC card (2450FT I think). It worked fine but for the 
driver I had to look at the chip that was on tha card and seached in the
kernel source tree for another card with the sane chip.

Good luck , willy


On Sat, 5 Aug 2000, Kevin Diffily wrote:

 Does anyone know of support for Fiber Optic NICs in Red Hat 6.2?  Has 
 anyone had direct experience using them?
 
 Thanks
 Kevin
 
 
 
 ___
 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: [RHL] Sendmail 8.11

2000-08-06 Thread Eric Clover

/usr/sbin/authconfig

eric




Jake McHenry wrote:
 
 I have been setting up my new linux machine, and have been trying to install the
 new version of Sendmail, 8.11, but have been having trouble under RH6.2. I had
 it working under 6.1. Does 6.2 come with md5? If it does, that's great. If not,
 where can I download it again? I can't remember where I got it before. I did a
 search on RedHat's site, but I don't think I found what I needed.
 
 Thanks,
 
 Jake McHenry
 [EMAIL PROTECTED]
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list



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



Re: Redhat-list digest, Vol 1 #14 - 22 msgs

2000-08-06 Thread Eric S. Johansson



[EMAIL PROTECTED] wrote:

 Subject: Sendmail 8.11
 Date: Sun, 6 Aug 2000 08:40:18 -0400 (EDT)
 From: Jake McHenry [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED], [EMAIL PROTECTED]

 I have been setting up my new linux machine, and have been trying to install the
 new version of Sendmail, 8.11, but have been having trouble under RH6.2. I had
 it working under 6.1. Does 6.2 come with md5? If it does, that's great. If not,
 where can I download it again? I can't remember where I got it before. I did a
 search on RedHat's site, but I don't think I found what I needed.

 Thanks,

 Jake McHenry
 [EMAIL PROTECTED]


I recently installed 8.11 on a va-linux 6.2.1 box and this is what I did

after unbundling the tar file, I created a site.config.m4 file consisting of three
lines.  I wanted regular expression mapping turned on so that I could filter out
various viruses and other nasty beasts.  I also wanted TCP wrappers turned on for
connection level access control:

define(`confMAPDEF',`-DMAP_REGEX')
define(`confLIBS',`-lwrap')
APPENDDEF(`confENVDEF',`-DTCPWRAPPERS')

place the site.config.m4 file in "/sendmail-8.11.0/devtools/Site/site.config.m4"
as specified by the build instructions.  cd to the source directory and run the
build command ("sh Build  -c").  I then installed using the build command as well.

Note, that this will trash the sendmail RPM you probably have installed.  You may
want to remove the sendmail and sendmail-cf RPM's before starting.

One classic place the transition between 8.9.3 and 8.11.0 causes grieve is the
change in location of many files.  8.11.0 puts all of its configuration files in
"/etc/mail".  You may want to change this but I would not recommend it to because it
would mess up anyone following after you.  the most common things to trip over is
moving sendmail.cf and aliases into "/etc/mail".

my sendmail.mc file is listed below.  I made some changes from the stock Red Hat mc
the file which is to turn off auto rebuild, turn off ident queries, and a few
others.  You can do the diffs if you want the full story.

I set up webmin because a not very technical person was going to administer e-mail
accounts.  I discovered a small bug in the config.info file.  you need to change the
location of the sendmail.cf file and the default settings won't you.  The first two
lines in the configuration file and with a ",8".  Change that to ",0", then change
the sendmail.cf location to /etc/mail/sendmail.cf and all of the other tools seem to
work okay.

divert(-1)
dnl This is the macro config file used to generate the /etc/sendmail.cf
dnl file. If you modify thei file you will have to regenerate the
dnl /etc/sendmail.cf by running this macro config through the m4
dnl preprocessor:
dnl
dnlm4 /etc/sendmail.mc  /etc/sendmail.cf
dnl
dnl You will need to have the sendmail-cf package installed for this to
dnl work.
include(`/home/esj/sendmail-8.11.0/cf/m4/cf.m4')

define(`confDEF_USER_ID',``8:12'')
OSTYPE(`linux')
undefine(`UUCP_RELAY')
undefine(`BITNET_RELAY')

dnl define(`confAUTO_REBUILD')

define(`confTO_CONNECT', `1m')
define(`confTO_IDENT',0)

dnl define(`confTRY_NULL_MX_LIST',true)
dnl define(`confDONT_PROBE_INTERFACES',true)

define(`PROCMAIL_MAILER_PATH',`/usr/bin/procmail')
FEATURE(`smrsh',`/usr/sbin/smrsh')
FEATURE(`mailertable',`hash -o /etc/mail/mailertable')
FEATURE(`virtusertable',`hash -o /etc/mail/virtusertable')
FEATURE(`virtuser_entire_domain')
dnl FEATURE(`genericstable')
FEATURE(redirect)
FEATURE(always_add_domain)
FEATURE(use_cw_file)
FEATURE(local_procmail)
MAILER(smtp)
MAILER(procmail)

FEATURE(`delay_checks')
FEATURE(`access_db')
FEATURE(`blacklist_recipients')
FEATURE(`dnsbl')
dnl We strongly recommend to comment this one out if you want to protect
dnl yourself from spam. However, the laptop and users on computers that do
dnl not hav 24x7 DNS do need this.
dnl FEATURE(`accept_unresolvable_domains')
dnl FEATURE(`relay_based_on_MX')




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



Re: Why is list reply set to user? (Vidiot)

2000-08-06 Thread Chuck Mead

On Fri, Aug 04, 2000 at 09:08:02PM -0500, Vidiot was heard to say:

 For me, it is just easier to have them in my main mailbox and go through them 
 sequentially.

No it's not. You merely *think* it's easier. Don't let fear of procmail put you
in this situation... :-)

Disclaimer: I am not trying to start a flame war... you may certainly handle your 
email in any way you choose but I would encourage you to learn how to use 
procmail as it *WILL* make your life easier... I get ~1000 messages a day and could
not survive without it...

--
Chuck Mead, CTO, LinuxMall.com
[EMAIL PROTECTED]
GnuPG Public Key Available: http://pgp.ai.mit.edu/



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



rpm upgrade

2000-08-06 Thread rob smith

I am using  rpm 3.0.4-0.48  this is what came with rh6.2... should I have
upgraded this??  If so to which one??  I sometimes get sag faults when installing rpms
and have to reboot

thanks
Rob




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



Re: help

2000-08-06 Thread Nitebirdz

On Sat, 5 Aug 2000, wong wrote:

 thank..
 
 if can not browse on the server, that mean i have to install another
 workstaion (pc)
 to browser through the server ?
 
 

By the way, if you're still wondering why I recommended not to run
Netscape or any other browser on a production server (I ignore if you're
using this only for personal purposes), just take a look at the URL I'm
submitting below for Brown Oriffice:

http://www.brumleve.com/BrownOrifice/



--
Nitebirdz
http://www.linuxnovice.org
Tips, articles, news, links...



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



Re: list archive

2000-08-06 Thread Chuck Mead

On Sun, Aug 06, 2000 at 12:54:39AM -0400, Brian Ashe was heard to say:

 Hi Kambiz,
 
 I too thank you for your hard work and effort.
 
  but I'm rather dissapointed to see it's not
  searchable. 
 
 KA Yeah.  Me to.
 
 Might I suggest htdig as a quick fix to this problem. It may not be
 glamorous but it wouldn't take too much effort and would yield a wondrous
 effect. List archives are very limited in their appeal or usefulness without
 a search function.

That's how we've been running the search function for the Red Hat archives
at moongroup.com.

:-)

--
Chuck Mead, CTO, LinuxMall.com
[EMAIL PROTECTED]
GnuPG Public Key Available: http://pgp.ai.mit.edu/



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



Re: SSH

2000-08-06 Thread tcurl


I initially used SSH 1, then found BSDSSH, a V2 version that is free.





RTS [EMAIL PROTECTED]@redhat.com on 08/06/2000 12:15:08 AM

Please respond to [EMAIL PROTECTED]

Sent by:  [EMAIL PROTECTED]


To:   [EMAIL PROTECTED]
cc:   [EMAIL PROTECTED]
Subject:  SSH

I just set up a new RedHat 6.2 system.

What is everyone using today for SSH services on a system??

Randy
[EMAIL PROTECTED]



___
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: xwindows slow in general or...?

2000-08-06 Thread Miroslav Skoric

"Hossein S. Zadeh" wrote:
 
 On Wed, 24 May 2000, Thomas Ribbrock wrote:
 
  On Tue, May 23, 2000 at 07:28:15PM -0700, Stephen King wrote:
   Is it just my installations or it is a fact that xwindows, and say KDE or
   Gnome, are slower than any win95/98/NT/2000 installation on the same
   machine?
  [...]
 
 flame armor
 
 Let me set the record straight: X IS slower than windows on the same
 hardware.
 
 /flame armor
 

Wouldn't say that. On my system (Celeron 400 MHz, 96 MB RAM) the whole
process of booting Linux (including Gnome) is much faster than NT
booting.

Misko




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



Re: RH install - lilo upgrade

2000-08-06 Thread Miroslav Skoric

Steve Borho wrote:
 
 On Wed, May 24, 2000 at 02:39:08PM -0400, Jerry Human wrote:
  Hi all:
 
  I have just received my new 10.2 gig hard drive and I want to use it for
  RH 6.2 exclusively. It will become hdc when installed. However, RH 6.2
  needs a boot partition below 1023 on hda. Currently I have RH installed
  on hda4 that boots from a floppy with lilo which satisfies that
  requirement. I've read the install docs and still don't understand how
  to seperate the /boot from / and the rest of RH installed elsewhere.
  Could someone explain?
 
  Also, with the release of lilo-21.4.3, the 1023 cylinder requirement is
  null. However, RH 6.2 doesn't come with that version. Is there a way to
  completely install RH on hdc without using hda for booting?
 
 Install linux, tell it to install the boot sector on /dev/hdc.
 Make sure the install program creates a boot floppy.
 Boot into linux using the floppy
 Insert a disposable floppy (other than your emergency boot disk) and run:
 
 lilo -b /dev/fd0
 
 This will put the lilo boot image on the boot sector of the floppy.
 Whenever you want to boot Linux, just insert the floppy and go.  It's
 almost as fast as the hard-drive boot sector.
 
 Keep both these floppies around.  The emergency boot floppy has a kernel
 and small filesystem on it so you can boot into linux and do repair work
 if anything should happen to your hard drive.  The lilo floppy just has a
 special boot sector that points to your kernel and root partition on hdc.
 The lilo floppy will boot faster but is entirely dependent on your system
 being in perfect working order.
 
 If you ever change the location of your kernel (or install a new one),
 you'll need to run that lilo command again with the floppy in the drive.
 


Sorry for not responding sooner for an old topic. I understood that guy
wanted to boot his linux from the hard disk, not from floppy. Is there a
way to perform that but not painful too much?

Misko




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



Re: lilo problem (no. of cylinders 1023)

2000-08-06 Thread Miroslav Skoric

Matt Housh wrote:
 
  I went thru the info provided on this page. According to that I should
  be doing a mapping of
  C/H/SC/H/S
  8682/64/32 = 1106/255/53
 
  The above page also says that I should provide the new geometry to the
  kernel thru the lilo boot prompt. But what do I do if I am doing  fresh
  install and the scsi disk is the only available disk on the system? For
  fresh install, I tried to give linux sda=1106,255,63 during the 'boot:'
  prompt, but that did not help.
 
  The above doc also says that BIOS gives the geometry figures before the
  kernel is booted. Is it possible to change the geometry in the BIOS
  itself?
 
 The difference in that document and what you're trying to do is
 that you're using a SCSI card, which provides its own bios to control the
 drives. When you use IDE, that's on the motherboard, but not SCSI. It
 should still work to pass the parameters on the lilo boot line, though.
 What does it do when you try it? And have you checked in fdisk during the
 install to see if the geometry is correct then?
 
 Matt
 
 

Sorry for not answering earlier to this old topic. When I handle SCSI
disks I only face to this geometry problem when I try to install Linux
NOT onto the first SCSI drive in the set (second, 3rd, etc). I suggest
to install Linux (mean /boot partition) onto the first disk, and rest on
other disk(s) so there might be no problem at all.

Misko



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



Re: SSH

2000-08-06 Thread Jake McHenry


So BSDSSH is SSH2? I've been looking for a new copy of SSH2.

jake


On Sun, 6 Aug 2000 [EMAIL PROTECTED] wrote:

--
--I initially used SSH 1, then found BSDSSH, a V2 version that is free.
--
--
--
--
--
--RTS [EMAIL PROTECTED]@redhat.com on 08/06/2000 12:15:08 AM
--
--Please respond to [EMAIL PROTECTED]
--
--Sent by:  [EMAIL PROTECTED]
--
--
--To:   [EMAIL PROTECTED]
--cc:   [EMAIL PROTECTED]
--Subject:  SSH
--
--I just set up a new RedHat 6.2 system.
--
--What is everyone using today for SSH services on a system??
--
--Randy
[EMAIL PROTECTED]
--
--
--
--___
--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
--

Jake McHenry
[EMAIL PROTECTED]



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



Re: SSH

2000-08-06 Thread gaillard lee johnson

Nitebirdz wrote:

 On Sat, 5 Aug 2000, RTS wrote:

  I just set up a new RedHat 6.2 system.
 
  What is everyone using today for SSH services on a system??
 
  Randy
  [EMAIL PROTECTED]

 I've been using either OpenSSH or SSH 1.2.27.  Versions of SSH beyond
 1.2.27 cannot be used for commercial purposes unless you purchase a
 license, as far as I understand.  Personal use must be another issue, I
 guess.


yup me too and i love it...all my trouble with gnome was  either   6.0
or the old  2.2.5-15 kernel or both ..

anyway the new helix1.2 is awesome...now i simply must figure out why
i cant alter kernel.must be that the default install didn't include
kernel sources?..anyway.

anyway know of a way to alter my kernel without having to recompile to
allow for scsi emulation/generic scsi
so myc dburning will work?

lee




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



Re: Strange log entry

2000-08-06 Thread Chuck Mead

On Thu, 3 Aug 2000, Burke, Thomas G. spewed into the bitstream:

BTGWhat the heck does this mean?
BTG
BTGAug  1 10:43:25 tomii sendmail[1475]: KAA01474: KAA01475: DSN: User unknown

DSN == Delivery Status Notification

It looks to me (without the surrounding log entry's) that someone sent a
message requesting DSN and the recipient was not found...

--
Chuck Mead, CTO, LinuxMall.com
[EMAIL PROTECTED]
GnuPG Public Key Available: http://pgp.ai.mit.edu/



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



modem problems

2000-08-06 Thread Thomas Williams

I'm new to this list and I'm new to Linux as well, however I'm not new to 
computers. I'm more of a Mac expert than anything else. I got 6.2 for my 
PC, a HP Pavilion and I got it installed and it all seems to work but I 
can't get it to recognize the modem. I have a Supra/Diamond internal PCI 
56K modem. What do I have to set up to get it to work?

Tom Williams



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



Re: modem problems

2000-08-06 Thread gaillard lee johnson

Thomas Williams wrote:

 I'm new to this list and I'm new to Linux as well, however I'm not new to
 computers. I'm more of a Mac expert than anything else. I got 6.2 for my
 PC, a HP Pavilion and I got it installed and it all seems to work but I
 can't get it to recognize the modem. I have a Supra/Diamond internal PCI
 56K modem. What do I have to set up to get it to work?

 Tom Williams

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

internal modems from what i recall in howtos can be tricky
you need to definitely have a look on your cd or online regarding the
modem-howto's and go from there..:)
( look on your distribution CD or goto www.redhat.com and click links for
howto's )
good luck feel free to ask if you get stuck...
lee




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



Re: modem problems

2000-08-06 Thread Julian Thomas

In [EMAIL PROTECTED], on 08/06/00 
   at 04:01 PM, Thomas Williams [EMAIL PROTECTED] typed:

 I 
can't get it to recognize the modem. I have a Supra/Diamond internal PCI 
56K modem. What do I have to set up to get it to work?

Almost all PCI modems are 'winmodems' with drivers only for that other
unmentionable operating system - they don't even work with NT.

Throw it out and get a real (external) modem.
 
--
 Julian Thomas:  [EMAIL PROTECTED]  http://home.epix.net/~jt
 In the beautiful Finger Lakes Wine Country of New York State!
 Boardmember of POSSI.org - Phoenix OS/2 Society, Inc 
http://www.possi.org
 -- --
 Programming today is a race between software engineers stirring to build
 bigger and better idiot-proof programs, and the universe trying to
produce
 bigger and better idiots. So far, the universe is winning.




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



sshd to start automatically when my computer starts?

2000-08-06 Thread Juha-Heikki Lehtonen

Hi!

I'm almost beginner with linux. I've  installed secure shell afterwards
and I would like that it started automatically...
Could somebody tell me how can I add it to my inittab or whatever where
it starts automatically.
I'm running rh6.0.

Thanks...

Juha



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



Re: sshd to start automatically when my computer starts?

2000-08-06 Thread John P. Verel

I'm running 6.2 and when I installed ssh, sshd was automagically set
up to run at boot.

John

On 08/06/00, 11:32:23PM +0300, Juha-Heikki Lehtonen wrote:
 Hi!
 
 I'm almost beginner with linux. I've  installed secure shell afterwards
 and I would like that it started automatically...
 Could somebody tell me how can I add it to my inittab or whatever where
 it starts automatically.
 I'm running rh6.0.
 
 Thanks...
 
 Juha
 
 
 
 ___
 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: sshd to start automatically when my computer starts?

2000-08-06 Thread Chuck Mead

man chkconfig

or...

type ntsysv

The correct choice will become obvious... :-)

On Sun, 6 Aug 2000, John P. Verel spewed into the bitstream:

JPVI'm running 6.2 and when I installed ssh, sshd was automagically set
JPVup to run at boot.
JPV
JPVJohn
JPV
JPVOn 08/06/00, 11:32:23PM +0300, Juha-Heikki Lehtonen wrote:
JPV Hi!
JPV 
JPV I'm almost beginner with linux. I've  installed secure shell afterwards
JPV and I would like that it started automatically...
JPV Could somebody tell me how can I add it to my inittab or whatever where
JPV it starts automatically.
JPV I'm running rh6.0.
JPV 
JPV Thanks...
JPV 
JPV Juha
JPV 
JPV 
JPV 
JPV ___
JPV Redhat-list mailing list
JPV [EMAIL PROTECTED]
JPV https://listman.redhat.com/mailman/listinfo/redhat-list
JPV
JPV
JPV
JPV___
JPVRedhat-list mailing list
JPV[EMAIL PROTECTED]
JPVhttps://listman.redhat.com/mailman/listinfo/redhat-list
JPV



--
Chuck Mead, CTO, LinuxMall.com
[EMAIL PROTECTED]
GnuPG Public Key Available: http://pgp.ai.mit.edu/



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



Re: sshd to start automatically when my computer starts?

2000-08-06 Thread Gordon Messmer

On Sun, 6 Aug 2000, Juha-Heikki Lehtonen wrote:
 I'm almost beginner with linux. I've  installed secure shell afterwards
 and I would like that it started automatically...

That's probably easiest if you install OpenSSH from www.openssh.com.  They
have Red Hat rpms, and once installed I'm pretty sure they're already set
to run when the system starts.  If not, you can use any SysV runlevel
editor to enable them at boot ( `ntsysv` is an example of such an editor
).

MSG




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



serious problem--help

2000-08-06 Thread Rob Smith

I had a problem were I had to hit reset on the box (I now that is bad to start)
When rebooting filesystem failed so i had to run fsck.  It seemed to fix a lot
of things (like 100 or more)  Then I rebooted and when I logged in it said "no
/root directory"  and bash$ came up.  I tried to start x but it said couldn't find
root directory.  So trying to be creative I did  "mkdir /root"  that allowed me
into X.  All of my programs are still there but they are acting as if I am
running them for the first time...can someone explain what happened or even better
how to fix it??


thanks
Rob




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



figured out

2000-08-06 Thread gaillard lee johnson

okay.,kernel source wasn't there...geez.how lame
anyway i still am in need of possible or not to alter things without
altering kernelas in last paragraph below...

thanks
lee




anyway the new helix1.2 is awesome...now i simply must figure out
why
i cant alter kernel.must be that the default install didn't include
kernel sources?..anyway.

anyway know of a way to alter my kernel without having to recompile to
allow for scsi emulation/generic scsi
so myc dburning will work?



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



Re: serious problem--help

2000-08-06 Thread Gordon Messmer

On Sun, 6 Aug 2000, Rob Smith wrote:

 I had a problem were I had to hit reset on the box

Out of curiosity, do you know what caused the problem?

 When rebooting filesystem failed so i had to run fsck.  It seemed to fix a lot
 of things (like 100 or more)

Those were probably damaged files that are now in /lost+found

 running them for the first time...can someone explain what happened or even better
 how to fix it??

If /root was detached or unlinked, then all of the files and directories
are now in /lost+found.  If you can figure out where they were,
originally, then you can move them back into place.  Since your filesystem
has suffered damage, I'd probably verify the integrity of the system like:
rpm -Va  /tmp/rpm.Va.out 21

Look for any missing files.  It's probably easier to reinstall the package
containing missing files than to figure out which file under /lost+found
is the right one.

MSG




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



Re: modem problems

2000-08-06 Thread John Aldrich

On Sun, 06 Aug 2000, you wrote:
 I'm new to this list and I'm new to Linux as well, however I'm not new to 
 computers. I'm more of a Mac expert than anything else. I got 6.2 for my 
 PC, a HP Pavilion and I got it installed and it all seems to work but I 
 can't get it to recognize the modem. I have a Supra/Diamond internal PCI 
 56K modem. What do I have to set up to get it to work?
 
It's a "softmodem" and will only work with EXTREME
prejudice in linux. It requires proprietary software which,
while it HAS been hacked together for some "WinModems" may
or may not have been hacked for your modem. About 95-98% of
all PCI modems are "WinModems" (TM 3com) which require
proprietary software.
To see if your modem has software for it, go to
www.linmodems.org.
If you want to avoid headaches, get rid of it and get a
REAL modem (most ISA modems and all serial-based externals
will work.)
John



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



list archive--please send url

2000-08-06 Thread Rob Smith

If you read my last message "serious problem--help"  I won't have to explain
why I need the url to the list archieve, I am in windoz now and don't have
the link...please send quickly..thanks

Rob Smith
[EMAIL PROTECTED]




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



realm?

2000-08-06 Thread Michale C. Balines


hi!

i have put up 2 linux boxes. one for aaa (authrization, authentication,
accouting) of paid subscribers and one for prepaid subscribers. i have
finally set up the first linux box running with the proper aaa.

i'm being puzzled with the prepaid linux server. how will i direct the aaa
of the prepaid users to the prepaid server? i heard about realm, but i
haven't figure out how to do it.

please help!

mike



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



Re: list archive--please send url

2000-08-06 Thread Chuck Mead

On Sun, 6 Aug 2000, Rob Smith spewed into the bitstream:

RSIf you read my last message "serious problem--help"  I won't have to explain
RSwhy I need the url to the list archieve, I am in windoz now and don't have
RSthe link...please send quickly..thanks

Real time and searchable:

http://www.moongroup.com/redhat.phtml



--
Chuck Mead, CTO, LinuxMall.com
[EMAIL PROTECTED]
GnuPG Public Key Available: http://pgp.ai.mit.edu/



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



Re: modem problems

2000-08-06 Thread Tom Davis

On Sun, 06 Aug 2000, John Aldrich wrote:
 On Sun, 06 Aug 2000, you wrote:
  I'm new to this list and I'm new to Linux as well, however I'm not new to 
  computers. I'm more of a Mac expert than anything else. I got 6.2 for my 
  PC, a HP Pavilion and I got it installed and it all seems to work but I 
  can't get it to recognize the modem. I have a Supra/Diamond internal PCI 
  56K modem. What do I have to set up to get it to work?
  
 It's a "softmodem" and will only work with EXTREME
 prejudice in linux. It requires proprietary software which,
 while it HAS been hacked together for some "WinModems" may
 or may not have been hacked for your modem. About 95-98% of
 all PCI modems are "WinModems" (TM 3com) which require
 proprietary software.
 To see if your modem has software for it, go to
 www.linmodems.org.
 If you want to avoid headaches, get rid of it and get a
 REAL modem (most ISA modems and all serial-based externals
 will work.)

Avoid however, external USB modems, because:
a) USB support in Linux is limited to say the least
and
b) A lot of USB modems are winmodems anyway (IIRC).

Tom



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



Dark Blue Man Pages

2000-08-06 Thread Allen, Michael B (RSCH)

Hi!

How do I kill the dark blue in man pages.

Thanks,

Michael B. Allen
http://jcifs.samba.org




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



Re: RH install - lilo upgrade

2000-08-06 Thread Charles Galpin



On Sun, 6 Aug 2000, Miroslav Skoric wrote:

 Steve Borho wrote:
  
  On Wed, May 24, 2000 at 02:39:08PM -0400, Jerry Human wrote:
   Also, with the release of lilo-21.4.3, the 1023 cylinder requirement is
   null. However, RH 6.2 doesn't come with that version. Is there a way to
   completely install RH on hdc without using hda for booting?
  
  Install linux, tell it to install the boot sector on /dev/hdc.
  Make sure the install program creates a boot floppy.
  Boot into linux using the floppy
  Insert a disposable floppy (other than your emergency boot disk) and run:
  
  lilo -b /dev/fd0
  
  This will put the lilo boot image on the boot sector of the floppy.
  Whenever you want to boot Linux, just insert the floppy and go.  It's
  almost as fast as the hard-drive boot sector.
 
 Sorry for not responding sooner for an old topic. I understood that guy
 wanted to boot his linux from the hard disk, not from floppy. Is there a
 way to perform that but not painful too much?

I think all he has to do is what Steve describes, to get linux running.
Once it's running, simply upgrade to the latest lilo and run 'lilo'. He
should at that point be able to boot from lilo (on the boot partition of
the first disk) using his 1024 cylinder partition on hdx.

charles



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



Re: Umm - What's up with unsubscribing?

2000-08-06 Thread Leonard den Ottolander

Hello all,

 I sent an email to:
 
[EMAIL PROTECTED]
 
 With unsubscribe in the body of the message.  I keep getting back a
 message saying that I have to enter a password in order to unsubscribe.  I
 never set a password on this list.  What's up with that?

 LOTS OF LAUGHTER

 Kambiz is sitting in a corner, shaking like a leaf with guilt over starting 
worldwar 3, 4 *and* 5 :-).
 Kambiz, keep up the good work :-)).

CUAO,

Leonard.



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



RE: [solved]Dark Blue Man Pages

2000-08-06 Thread Allen, Michael B (RSCH)

Ok, I solved my own problem. Actually the link provided by Chuck in a recent
post lead me to find a previous message on this:

http://www.moongroup.com/Redhat9/msg02540.html

Personally I like the coloration but blue3 is not ideal for a black bg. I
changed:

*VT100*colorBD: blue3

/usr/X11R6/lib/X11/app-defaults/XTerm

*VT100*colorBD: RoyalBlue1

Funny thing is I've been through these system files half a dozen times
looking for just such a setting. I didn't realise there was a separate
setting for bold. Ahh, the power of X.

Later,

Michael B. Allen
http://jcifs.samba.org

 -Original Message-
 From: Allen, Michael B (RSCH) [SMTP:[EMAIL PROTECTED]]
 Sent: Sunday, August 06, 2000 6:59 PM
 To:   [EMAIL PROTECTED]
 Subject:  Dark Blue Man Pages
 
 Hi!
 
 How do I kill the dark blue in man pages.
 
 Thanks,
 
 Michael B. Allen
 http://jcifs.samba.org
 
 
 
 
 ___
 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: modem problems

2000-08-06 Thread Stephen Liu

Hi Tom,

Searching Lucent Technology website (sorry I forgot its URL), download the
driver and get it installed according to the INSTALL manual.  Finally you
will install it but lot of time consumed.

Take our advice as another guy said "throw it away and get an external
modem".  I succeed having one PCI internal modem installed but taking me lot
of time.

Good luck

Stephen

- Original Message -
From: "Thomas Williams" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, August 07, 2000 4:01 AM
Subject: modem problems


 I'm new to this list and I'm new to Linux as well, however I'm not new to
 computers. I'm more of a Mac expert than anything else. I got 6.2 for my
 PC, a HP Pavilion and I got it installed and it all seems to work but I
 can't get it to recognize the modem. I have a Supra/Diamond internal PCI
 56K modem. What do I have to set up to get it to work?

 Tom Williams





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



Re: Security Risks?

2000-08-06 Thread Robert Soros

"other" is already -rwx , no need to specify it.

 On 6 Aug 2000, Robert Soros wrote:
 
 --then change the permissions and chmod /var/log/secure to something like 
 --
 --
 --chmod 664 /var/log/secure
 --chown root:ADMINS /var/log/secure
 --ls /var/log/secure -al
 --
 ---rw-rw   1 root ADMINS   811 Aug  2 04:13
 --/var/log/secure
 --
 --
 --anybody outside of the the ADMINS group (or root) should not be able to
 --read/write this file
 --
 --chmod can also be used with letters if you wish, instead of numerically
 --(ie.  
 --
 --   chmod o+rw,g+rw,u-rwx /var/log/secure
 
 
 The last line should be "chmod o-rwx,g+rw,u+rw" if you want to get what you said
 above.
 
 Jake
 
 
 
 ___
 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



Samba and W2k

2000-08-06 Thread Gregory Hosler

Hi,

I have a RH6.2 systemn that successfully talks to my wife's W95 box.
I just dual installed W2k on her box (keeping the W95, just incase of
issues/problems), and now my 2 boxes don't communicate.

I used to be able to communicate in both directions. i.e. I used to
be able to mount W95 shares on RH6.2, and I used to be able to mount
Linux shares on W95 (actually this still works). Under W2k, neither direction
works.

I initially suspected the plain text password (encryption) thing, so I
hunted down the registry entry for W2K and applied that fix. still nada.

anyone got this working ?

rgds,

-Greg

--
E-Mail: Gregory Hosler [EMAIL PROTECTED]
Date: 07-Aug-00
Time: 09:16:01

If Bill Gates had a dime for every time a Windows box crashed...
 ...Oh, wait a minute, he already does.

--



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



Re: Samba and W2k

2000-08-06 Thread Kurt A. Brust

YOu need the WIN2K port 6.0.7 samba release. TURBOLINUX HAS IT i dont
know if RH does

On Sun, 06 Aug 2000, you wrote:
 Hi,
 
 I have a RH6.2 systemn that successfully talks to my wife's W95 box.
 I just dual installed W2k on her box (keeping the W95, just incase of
 issues/problems), and now my 2 boxes don't communicate.
 
 I used to be able to communicate in both directions. i.e. I used to
 be able to mount W95 shares on RH6.2, and I used to be able to mount
 Linux shares on W95 (actually this still works). Under W2k, neither direction
 works.
 
 I initially suspected the plain text password (encryption) thing, so I
 hunted down the registry entry for W2K and applied that fix. still nada.
 
 anyone got this working ?
 
 rgds,
 
 -Greg
 
 --
 E-Mail: Gregory Hosler [EMAIL PROTECTED]
 Date: 07-Aug-00
 Time: 09:16:01
 
 If Bill Gates had a dime for every time a Windows box crashed...
  ...Oh, wait a minute, he already does.
 
 --
 
 
 
 ___
 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: Samba and W2k

2000-08-06 Thread Allen, Michael B (RSCH)



 -Original Message-
 From: Gregory Hosler [SMTP:[EMAIL PROTECTED]] 
 Linux shares on W95 (actually this still works). Under W2k, neither
 direction
 works.
 
[Allen, Michael B (RSCH)]  

From linux do:

nmblookup -A ipaddress

Do the ip address of your linux machine and the win2k machine. Are
the GROUP names the same? I think w2k should work fine. Sure you didn't
mess with anything else? Like network setup?

Michael B. Allen
http://jcifs.samba.org



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



Re: Samba and W2k

2000-08-06 Thread Darryl Harvey

At 11:19 AM 7/08/2000, you wrote:
Hi,

I have a RH6.2 systemn that successfully talks to my wife's W95 box.
I just dual installed W2k on her box (keeping the W95, just incase of
issues/problems), and now my 2 boxes don't communicate.

I used to be able to communicate in both directions. i.e. I used to
be able to mount W95 shares on RH6.2, and I used to be able to mount
Linux shares on W95 (actually this still works). Under W2k, neither direction
works.

I initially suspected the plain text password (encryption) thing, so I
hunted down the registry entry for W2K and applied that fix. still nada.

anyone got this working ?

You running W2K Standard/Pro/Server ???


I have it working fine with RH6.2, W2K Pro..
Samba Version 2.0.7,  Win2K Professional

I am using encrypted passwords though.

Darryl



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



RE: Samba and W2k

2000-08-06 Thread Allen, Michael B (RSCH)



 -Original Message-
 From: Kurt A. Brust [SMTP:[EMAIL PROTECTED]]
 Sent: Sunday, August 06, 2000 9:26 PM
 To:   [EMAIL PROTECTED]
 Subject:  Re: Samba and W2k
 
 YOu need the WIN2K port 6.0.7 samba release. TURBOLINUX HAS IT i
 dont
 know if RH does
[Allen, Michael B (RSCH)]  


He meant 2.0.7, try these, but I'm not confirming that what he's
saying is fact:

http://rufus.w3.org/linux/RPM/redhat/6.2/updates/i386/SByName.html


Michael B. Allen
http://jcifs.samba.org



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



RE: Samba and W2k

2000-08-06 Thread Kurt A. Brust

2.0.7 ... correct and yes, it is fact.

On Sun, 06 Aug 2000, you wrote:
  -Original Message-
  From:   Kurt A. Brust [SMTP:[EMAIL PROTECTED]]
  Sent:   Sunday, August 06, 2000 9:26 PM
  To: [EMAIL PROTECTED]
  Subject:Re: Samba and W2k
  
  YOu need the WIN2K port 6.0.7 samba release. TURBOLINUX HAS IT i
  dont
  know if RH does
   [Allen, Michael B (RSCH)]  
 
 
   He meant 2.0.7, try these, but I'm not confirming that what he's
 saying is fact:
 
   http://rufus.w3.org/linux/RPM/redhat/6.2/updates/i386/SByName.html
 
 
   Michael B. Allen
   http://jcifs.samba.org
 
 
 
 ___
 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: [solved]Samba and W2k

2000-08-06 Thread Allen, Michael B (RSCH)

Pls put a [solved] into the subject line if you are posting the definitive
answer to your problem.

 -Original Message-
 From: Kurt A. Brust [SMTP:[EMAIL PROTECTED]]
 Sent: Sunday, August 06, 2000 9:52 PM
 To:   [EMAIL PROTECTED]
 Subject:  RE: Samba and W2k
 
 2.0.7 ... correct and yes, it is fact.
 
 On Sun, 06 Aug 2000, you wrote:
   -Original Message-
   From: Kurt A. Brust [SMTP:[EMAIL PROTECTED]]
   Sent: Sunday, August 06, 2000 9:26 PM
   To:   [EMAIL PROTECTED]
   Subject:  Re: Samba and W2k
   
   YOu need the WIN2K port 6.0.7 samba release. TURBOLINUX HAS IT
 i
   dont
   know if RH does
  [Allen, Michael B (RSCH)]  
  
  
  He meant 2.0.7, try these, but I'm not confirming that what he's
  saying is fact:
  
  http://rufus.w3.org/linux/RPM/redhat/6.2/updates/i386/SByName.html
  
  
  Michael B. Allen
  http://jcifs.samba.org
  
  
  
  ___
  Redhat-list mailing list
  [EMAIL PROTECTED]
  https://listman.redhat.com/mailman/listinfo/redhat-list
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list



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



linux upgrade

2000-08-06 Thread Michale C. Balines


hi all!

would upgrade from 5.0 to 6.2 creates any conflict? like deleting my
databases for the billing, passwd and shadow files?

mike



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



Re: Umm - What's up with unsubscribing?

2000-08-06 Thread Greg Wright



*** REPLY SEPARATOR  ***

On 7/08/00 at 1:48 Leonard den Ottolander wrote:

Hello all,

 I sent an email to:
 
[EMAIL PROTECTED]
 
 With unsubscribe in the body of the message.  I keep getting back a
 message saying that I have to enter a password in order to unsubscribe.
I
 never set a password on this list.  What's up with that?

 LOTS OF LAUGHTER

 Kambiz is sitting in a corner, shaking like a leaf with guilt over
starting 
worldwar 3, 4 *and* 5 :-).
 Kambiz, keep up the good work :-)).


It will all pass, lets all give him some leeway whilst the list is being
updated etc, the software acts different, it basically just provides a web
interface etc

Kambiz so far has been very responsive and active ..  bravo Kambiz !

Not everyone will have everything the way they want it, I guess that is
obvious, but I think I would be speaking for a large majority of long term
list members when I say that having a person from within RH who listens and
maintains the list servers and even participates possibly on the list is
most welcomed

Poor Kambiz has faced the music on other lists as well, the bullets will
run out Kambiz, as Leonard said  keep up the good work



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



Re: Redhat Blacklist

2000-08-06 Thread Greg Wright



*** REPLY SEPARATOR  ***

On 4/08/00 at 22:44 Hal Burgiss wrote:

On Sun, Jul 16, 2000 at 02:30:03PM +1000, Greg Wright wrote:
 
 But repeated attempts to re-subscribe fail. No answer at all. If I
 subscribe from a different account on a different box -- no
 problemo. Answered right away. Is there a blacklist? How to get
 off?
 
 RH used to use Smartlist for this list and some others, but about 2
 months ago approx, some list/s were changed to mailman, who knows
 whats going on in there now, I did notice that the admin uses
 listname[EMAIL PROTECTED]   IIRC , I just recently
 unsubscribed from the other list so cannot tell exactly.
 
 Good Luck, I know you will need it,   BTW Hal, tell us how you go 


I hate to dredge old dirt, but I finally got a grip on this, and some
adventure thrown in. I have been unable to subscribe to any redhat
list for some time from this mail account using:
 
 [hal@feenix hal]$ echo | mail -s subscribe
[EMAIL PROTECTED]
 [hal@feenix hal]$ echo | mail -s subscribe [EMAIL PROTECTED]



shrugs I always use a win client, maybe the mail had something added that
was being filtered, anyway if you keep this handy somewhere, it will be a
much better way to handle your subscriptions IMHO

https://listman.redhat.com/mailman/listinfo/



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



Re: Redhat Blacklist

2000-08-06 Thread Hal Burgiss

On Mon, Aug 07, 2000 at 01:39:03PM +1000, Greg Wright wrote:
 
 I hate to dredge old dirt, but I finally got a grip on this, and
 some adventure thrown in. I have been unable to subscribe to any
 redhat list for some time from this mail account using:
  
  [hal@feenix hal]$ echo | mail -s subscribe [EMAIL PROTECTED]
  [hal@feenix hal]$ echo | mail -s subscribe [EMAIL PROTECTED]
 
 
 shrugs I always use a win client, maybe the mail had something
 added that was being filtered, anyway if you keep this handy
 somewhere, it will be a much better way to handle your subscriptions
 IMHO
 
 https://listman.redhat.com/mailman/listinfo/

Good to know. Actually Kambiz helped me figure it out (Thanks!). Turns out
completely operator error. Sometime back I stuck my dynamic dns name
in sendmail.cf, and actually forgot about it. So the 'mail' on the CLI
was picking this up, and since I have port 25 firewalled ATM, the
list response mail was getting blocked. Doh! Mutt is rewriting some of the
headers, so that is why that worked. 

-- 
Hal B
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
--



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



Re: Redhat Blacklist

2000-08-06 Thread Kambiz Aghaiepour

In this case the problem was Hal's system doesn't allow SMTP connections
externally, so the confirmations back to his system were/are deferred.  If he
uses mutt and sets the address to his ISP account all is well.

All lists at Red Hat are now managed by Mailman and should operate smoothly. 
Let me know if you have any problems.

Kambiz

Greg Wright wrote:
 
 *** REPLY SEPARATOR  ***
 
 On 4/08/00 at 22:44 Hal Burgiss wrote:
 
 On Sun, Jul 16, 2000 at 02:30:03PM +1000, Greg Wright wrote:
  
  But repeated attempts to re-subscribe fail. No answer at all. If I
  subscribe from a different account on a different box -- no
  problemo. Answered right away. Is there a blacklist? How to get
  off?
 
  RH used to use Smartlist for this list and some others, but about 2
  months ago approx, some list/s were changed to mailman, who knows
  whats going on in there now, I did notice that the admin uses
  listname[EMAIL PROTECTED]   IIRC , I just recently
  unsubscribed from the other list so cannot tell exactly.
 
  Good Luck, I know you will need it,   BTW Hal, tell us how you go
 
 
 I hate to dredge old dirt, but I finally got a grip on this, and some
 adventure thrown in. I have been unable to subscribe to any redhat
 list for some time from this mail account using:
 
  [hal@feenix hal]$ echo | mail -s subscribe
 [EMAIL PROTECTED]
  [hal@feenix hal]$ echo | mail -s subscribe [EMAIL PROTECTED]
 
 
 shrugs I always use a win client, maybe the mail had something added that
 was being filtered, anyway if you keep this handy somewhere, it will be a
 much better way to handle your subscriptions IMHO
 
 https://listman.redhat.com/mailman/listinfo/
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list

-- 
\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



unsubsribe

2000-08-06 Thread The Vo




TheVo


Re: serious problem--help

2000-08-06 Thread Nico De Ranter

Don't tell me you always login as root do you :-) ?

Anyway, if you had to recreate your /root directory then yes you are running everything
for the first time again.  Try looking in the /lost+found directory to see if you can
retrieve anything.  

Nico

On Sun, Aug 06, 2000 at 06:23:29PM -0300, Rob Smith wrote:
 I had a problem were I had to hit reset on the box (I now that is bad to start)
 When rebooting filesystem failed so i had to run fsck.  It seemed to fix a lot
 of things (like 100 or more)  Then I rebooted and when I logged in it said "no
 /root directory"  and bash$ came up.  I tried to start x but it said couldn't find
 root directory.  So trying to be creative I did  "mkdir /root"  that allowed me
 into X.  All of my programs are still there but they are acting as if I am
 running them for the first time...can someone explain what happened or even better
 how to fix it??
 
 
 thanks
 Rob
 
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list

 "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