Re: sending mail with attachment via commandline?

2003-10-16 Thread Eric Wood
Sean Estabrooks wrote:
> You can use mutt :
> 
> mutt -a $ATTACHFILE -s "$SUBJECT" $MAILTO < $TXTFILE

Ah! I just tested sending multiple attachments too...  cool trick!
Thanks, -eric wood


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: SendMail GUI

2003-10-16 Thread Eric Wood



You could put linuxconf on and get sendmail 
(including users) going within minutes.  linuxconf includes a GUI, TUI, and 
web interface.
 
If you decided to go the linuxconf route, you'll 
want to install:
http://vimap.sourceforge.net/ first.
 
-eric wood

  - Original Message - 
  From: 
  Donald 
  Tyler 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, October 16, 2003 11:38 
  AM
  Subject: SendMail GUI
  
  
  Hi,
   
  I have been asked to get a mail 
  server up and running quickly, and since I know almost nothing of Sendmail I 
  really need a GUI to do that.
   
  Can anyone recommend 
  something?
   
  If not, can someone point me in 
  the direction of a quick start guide? I have a book that I am reading, but I 
  wont finish it in time to get the server up.
   
  Thanks


Re: procmail expert needed

2003-10-07 Thread Eric Wood
Hal Burgiss wrote:
> IANAE, but I was on the procmail mailing list long enough to see this
> same scenario come up several times, and the consensus among the
> experts was that this approach is fundamentally flawed. IOW, quick use
> of sed to de-htmlize has many pitfalls, and ways to fall over, and no

It appears as though procmail offers no "undo" feature of a filter.  Filters
are permanent within the pipe stream - much like a command line.  There's
got to be a way to save the message to disk and retrieve the original
message farther down in the recipe in case your filter needs to be undone.

-eric wood


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


procmail expert needed

2003-10-06 Thread Eric Wood
The procmail maillist list isn't working for me... may be down.  So I'll try
here..


Basically I want search for key terms only after stripping the HTML from the
message because many spammers split up words with fake html tags, ie
viagra.

The sed trick strips out all html-like tags.  Cool.  Except I'm trying to
figure out a way to un-do the stripping if the words I'm looking for isn't
in the body of the message after all.  So far the stripped message gets
delivered to the mailbox regardless.
I need to do something like this:

preserve_copy_of_message_here
  :0fwb
  | sed -e :a -e 's/<[^>]*>//g;/mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Procmail recipes

2003-09-26 Thread Eric Wood
Just got into procmail myself.

http://www.procmail.org/ has very good FAQs and links.  I think you want a
rule like this:

:0 c
* ^Subject:.*some text
! [EMAIL PROTECTED]

The :0 begins a ruleset. The '*' is like an if statement. The ! lets you
forward the mail to somewhere else.  The "c" makes a copy of the email so
that it is forwards *as well as* get delivered into the users mail box.
Take the "c" out if you don't want them to get a copy - which is what you
want if certain types of attachments. Spastic contains lots of useful
procmail examples that the man pages don't show.

-eric wood


Jason Williams wrote:
> For instance, im trying to setup procmail to sort all mail to a specific
> account if the headers have a certain subject in it...
>
> ANy recommendations?


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: /dev/null not executable

2003-09-15 Thread Eric Wood
Make sure /dev/null and/or /bin/false is in your /etc/shells file
upgrade probably removed it
-eric wood

Dana Holland wrote:
> After upgrading to 8.0, I get an error message telling me that
> /dev/null is not executable when I try to enter that with a chsh
> command.  We use this when setting up ftp accounts for access to our
> web server.  I can still go into /etc/passwd and manually enter that
> - and it works.  So, if nothing else, I could just change the
> instructions for setting up ftp accounts.
>
> But I'm wondering why the change?


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: AMD mobo

2003-09-10 Thread Eric Wood
Any AMD mobo should do fine.  You may want to avoid the nvidia nforce2
chipset board as those drivers (gigbit nic and sata) aren't in RH 9 (unless
you're into compiling your own kernel).  But then again, the system will
still run anyway.  On the flip side for Intel, I think the i865/i875
chipsets aren't in RH 9 either as they are fairly new - yet another patch
and recompile.

-eric wood

Greg Bradner wrote:
> Hello:
> I am putting together a system and am looking for a fast, solid,
> problem free motherboard that is AMD compatible.  I will be using all
> add on cards and don't plan on using any onboard compontents.  Any
> suggestions?


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: SCO and the FTC

2003-08-22 Thread Eric Wood
Sent my complaint in.  Wonder if SCO is archiving all messages with certain
keywords.like "sco".  I hope they are!

-Eric Wood


Jason Dixon wrote:
> Someone informed me that you can submit your complaint online:
> http://www.ftc.gov/ftc/consumer.htm


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: what is sgi-fam used for on the default instal anyway?

2003-08-14 Thread Eric Wood
I'd think twice about turning sgi-fam off.  Obviously the kernel is one who
knows about all file changes on the disk.  It makes these changes kown to
other program through its "dnotify" function.  sgi-fam just happens to be
the only library that I know of that hooks into dnotify.

When a program subscribes (registers for a callback) to monitor a certain
file or directory, it signals an event in your app.  Typically the event
would be to refresh what your looking at.   For example, browse to
/var/spool/mail and watch all the inboxs change in real time - without you
having to click refresh.

Many unix apps go polling bananas.  That's a bad performance hit.  Imagine
all your panel applets having to poll the filesystem every second to update
it-self.  (ahem... the wire-less monitor applet).  If no changes are going
on, then why is your applet still asking the same question over and over
again and using up CPU time?  FAM-enabling them would make them effecient
and much more responsive to the user.

With enough griping to the programmers, more and more apps are (as they
should) becoming fam compliant.

-eric wood


Bret Hughes wrote:
> On Thu, 2003-08-07 at 21:19, Gordon Messmer wrote:
>> Bret Hughes wrote:
>> It's much more efficient to use FAM, which can simply "ping" the
>> application to let it know there's an update, rather than checking
>> for updates repeatedly.
>>
> Makes sense, Thanks.  Since I do not use nautilus ( the only thing
> whatrequires lists on my 7.3 boxes) I guess I'll leave it off :)
>
> Bret


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Red Hat 10

2003-07-30 Thread Eric Wood
Michael Gargiullo wrote:
> I've heard rumors that RedHat 10 will be the last "desktop" version of
> redhat released.  That RedHat is going to support only Advanced
> Server.
>
> Is there any truth to this?

Well AS doesn't include OpenOffice and other "desktop" eyecandy apps.  WS
will include most of the goodies we're acustomed too with RH Linux.  So I
think you're concerned is with RH only supporting WS instead of the general
RH releases (if their will be anymore after 10).  Who knows.  The cards are
in RH's favor.

-eric wood


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: How can I print from Linux to a printer connected to a Print Server

2003-07-28 Thread Eric Wood
Run printtool.  Define the printer as a JetDirect with 10.10.10.32 as the
ip.  Leave 9100 as the port.
-eric wood


[EMAIL PROTECTED] wrote:
> Hi Everyone!
>
> I currently have RH Linux 8 installed with Samba ver 2.2.8a running
> on it. I wish to print from Linux to an HP DeskJet printer connected
> to a hardware print server. This print server is currently running in
> a Windows NT 4 network i.e. it has its own IP address e.g.
> 10.10.10.32  How can I send a print job from Linux to this HP DeskJet
> printer? Any help would be much appreciated.
>
> Thanks
> Pierre M. Camilleri


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: RH: Please fix kernel make target "rpm"

2003-07-25 Thread Eric Wood
Oooo. make oldconfig used a .config I didn't want. I see.
-eric wood

Gordon Messmer wrote:
> Eric Wood wrote:
>> # make mrproper `/bin/cp configs/kernel-2.4.20-i686.config .config`
>> oldconfig dep clean rpm
> How about:
> make mrproper
> cp configs/kernel-2.4.20-i686.config .config
> make oldconfig dep clean rpm


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Building Custom Kernel

2003-07-25 Thread Eric Wood
normally loop isn't a loaded module but it is temporarily needed to generate
initrd.  Try this:
# insmod loop
# make install
# rmmod loop
-eric

Fahad Khalid wrote:
> Hi all,
>
>I'm trying to intall the latest stable kernel from kernel.org.
> All goes well, but when i do the make install, an error message at the
> end of make process is generated, saying,
>
>"All of your loopback devices are already in use"
>
>This error fails the initrd process.
>
>Please let me know what possible can be the reason and how to
> solve this problem.
>
> Fahad


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


RH: Please fix kernel make target "rpm"

2003-07-24 Thread Eric Wood
# make mrproper `/bin/cp configs/kernel-2.4.20-i686.config .config`
oldconfig dep clean rpm

The resulting rpm file seems to always be built for i386 even though you're
using a 686 .config file.  It looks like kerne.spec file which is generated
from "scripts/mkspec" neglects to issue an arch.  Or you have to edit the
Makefile and slip in a "--target=i686" or "--target=athlon" like so:

$(RPM) -ta --target=i686 $(TOPDIR)/../$(KERNELPATH).tar.gz ; \

before you do the build.

More troubling is the absense of a pre-install and post-install script
embedded within the rpm.  So the kernel install doesn't do the
"/sbin/new-kernel-pkg" trick as in the official kernel rpms.

I guess what is needed is a new mkspec script for RH systems which will slip
in the install scripts.
-eric wood


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Data Migration

2003-07-23 Thread Eric Wood
Alan,
rsync should do just fine.  You might want to do a --dry-run to see the
outcome.  Also, check out whether or not you need to use the -Hardlinks
option which has been know to choke some big data copies.

-eric wood

Alan Harding wrote:
> Hello Chums I wonder if you could help me with a quick question
>
> I have an "oppurtunity" to migrate some data from one Unix server to
> another. I was going to use *nix tools to do it and had plumped for
> Rsync. I have a lot of data to move (1.5Tb+ from one site and 1Tb+
> from another), but time is not an issue, reliability of the data is.
> Is Rsync the correct animal for the job, or is there something better


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Why i18n (locales) is so slow? LANG="en_US.UTF-8"

2003-07-16 Thread Eric Wood
I'm sure this is an FAQ.  I've read up on
http://nscp.upenn.edu/aix4.3html/aixbman/prftungd/natlangsup.htm which
explains the structure types and why it's so expensive to do
internationalization.  So I went back to using "C" for my RH 8 and 9
systems:

$ cat /etc/sysconfig/i18n
#LANG="en_US.UTF-8"
LANG="C"
SUPPORTED="en_US.UTF-8:en_US:en"
SYSFONT="latarcyrheb-sun16"

Basically I'm trying to find out how LANG="en_US.UTF-8" would benefit me.
So far it has caused great pain as my grep searches (example below) are
severly slowed.   Since I only need english speaking anyway, is there any
benefit with "en_US.UTF-8" that I don't see?

-eric wood




$ LANG="en_US.UTF-8";export LANG
$ time bash -c 'grep WOOD /tmp/customers.tab | wc -l'
  13774

real0m20.267s
user0m20.240s
sys 0m0.030s

$ LANG="C";export LANG
$ time bash -c 'grep WOOD /tmp/customers.tab | wc -l'
  13774

real0m0.060s
user0m0.030s
sys 0m0.030s


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Viewing SCO Partition with RH 7.3

2003-07-16 Thread Eric Wood
Yeah, SCO stop giving out personal editions of OpenServer because it was
causing a decline in sales of their server product.  Yeah right.  Meanwhile
SCO continued to steal Linux code and produce Skunkware offerings.
Take-Take-Take! All the while, SCO never offered to aid in their fs support
in Linux.  So, they're on their on ship which is going down.

But yes, I have a SCO server just for the purpose of mount other people's
SCO disks.
-eric wood


Kevin Krieser wrote:
> SCO used to provide a free license for non-commercial use, but they
> don't appear to anymore.  I had purchased a version years ago for
> personal use.



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: spurious 8259a interrupt: IRQ7

2003-07-13 Thread Eric Wood
I get this on a Tyan mobo with RH 8/9 but not with 7.3.  I get this
message on a Asus mobo with 7.3 but not with 9. Very weird. I've
searched google all over and the kernel developers themselves don't why
either.  Some say to try "noapic|noacpi|nodma|" boot options - which
didn't help me. 

Funny:
http://archive.linuxfromscratch.org/mail-archives/blfs-support/2002/03/1232.html

-eric wood


On Sun, 2003-07-13 at 10:33, Lorenzo Prince wrote:
> I get this message anywhere from immediately at the login prompt to about 5 minutes 
> later.  It seems to never happen 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: xinetd...some input needed

2003-06-25 Thread Eric Wood
RH's chkconfig command can turn on and off system services as well as xinetd
services:

# chkconfig sendmail off
# chkconfig rsync off
# chkconfig telnet on
# chkconfg postgresql on

Of course, chkconfig won't configure your services.  You'll have to use
other tools or edit config files yourself.
-eric wood

Jason Williams wrote:
> I was trying to find out more info on xinetd itself so I could learn
> how to turn on and off daemons and services. For instance, I would
> Jason


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


question about kernel compatiblity and new chipsets

2003-06-23 Thread Eric Wood
Seems that a new mobo comes out every day and a new chipset every few weeks.
For example the KT600 chipset is comming out so how does this effect linux?

1. Does the chipset drivers get merged into the mainstream kernel in a
timely manor?
2. Are there chipsets/mobo that should be avoided?  Ie, no support?
3. What chipsets do RH kernels support?  RH's HCL doesn't seem to be kept up
to well for RH 9.
4. I'm willing to buy a new motherboard based on how well RH 9 supports it,
it there a database
5. Is the  Tyan Trinity GC-SL mobo with the ServerWorks chipset supported
with RH 7/8/9?

Anyone have any stories to share with motherboards and linux support?
-eric wood


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: "fixperm" utility

2003-06-19 Thread Eric Wood
You can always get linuxconf at http://www.solucorp.qc.ca/linuxconf/.  Never
use the linuxconf that comes with RH.  Even if RH decided to re-distribute
linuxconf again, don't use it.  They'll just distribute an old version and
not test it.

-eric wood

- Original Message - 
From: "Toralf Lund" <[EMAIL PROTECTED]>
> Not that linuxconf is gone from the dist, this
> valuable tool is gone. Is there a replacement? And before anyone suggests


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Harddrive

2003-06-03 Thread Eric Wood
1. Just install you harddrive.
2. Boot up computer and log in.
3. Use 'dmesg | grep hd' to see what your harddrive is called.  Like hdb,
hdc, or hdd.
4. Create partitions with fdisk /dev/hdb.  You'll make 1 or more partitions
called /dev/hdb1, /dev/hdb2, /dev/hdb3, etc.
5. Format them with 'mke2fs'.  Ie, # mke2fs -j /dev/hdb2
6. add the mount to /etc/fstab and mount it now.  Ie, # mount /dev/hdb2
/new_directory.

-eric wood


Brent L. Cox wrote:
> Does anyone know how to mount and format an additionl
> hardware other than the on the system is running on.


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


how to ghost an active hard drive?

2003-05-30 Thread Eric Wood
I'm not comfortable with software raid mainly becuase I would know what to
do if a member of the md cluster failed.  So I want to ghost a working drive
to a secondary drive.

Say I have two identical drives: /dev/hda and /dev/hdc.

Periodically I want to completely ghost hda to hdc without having to unmount
hda or go into single user mode, etc.  If hda ever dies, then I just
re-jumper hdc and away I go.

I've tried:

# dd if=/dev/hda of=/dev/hdc

Although I'm sure it ghosted the drive, it also prevented me from rebooting
the computer normally.  Something about grub getting confused about multiple
drives having the same devlabel entries.  Also it took forever.

Is there a tool that will replicate the partitions, copy from kernels and
boot sectors. then copy the files over to a spare drive with grub getting
confused?

Thanks,
-eric wood


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Postfix will not deliver to domain without MX record ?

2003-04-03 Thread Eric Wood
I thought it was a sacred rule to always have an MX record in DNS, otherwise
sendmail or postfix can't do much of anything.
-eric wood

> Lars wrote:
>>
>> Can anybody explain how to get postfix to deliver mail to a
>> domain that does not have an MX record i.e somedomain.com
>> does not have a MX record so delivery is tried to somedomain.com
>> via smtp.



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


Re: Stuck with 640x480 Screen after Upgrading to RedHat Linux 9

2003-04-03 Thread Eric Wood
The only adive I can give is to run "redhat-config-xfree86 --reconfig".
-eric wood

David Christensen wrote:
> I was happily using a 1280x1024 desktop on my Radeon 8500 under RedHat
> Linux 8.0 until I upgraded to RedHat Linux 9.  Now, the screen
> resolution is stuck at 640x480 but the desktop appears to be 1280x1024
> (I can pan across the screen).  I didn't setup a virtual desktop, but
> that seems to be what I have.  Anyone know how to fix the problem?
> (I've attached the config and log files at the end of this email).



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


Re: What time was an RPM installed?

2003-04-02 Thread Eric Wood
Man, I've been wanting something like this for a long while.  RH needs to
incorporate this into their package manager gui.
-eric wood

Ed Wilts wrote:
> #!/bin/bash
>
> rpm -qa --queryformat '%{installtime} %{name}-%{version}-%{release}
> %{installtime:date}\n' | sort -g | sed -e 's/^[^ ]* //'
>
> This is *extremely* useful if you want to know which packages were
> installed in say, the last week.



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


Re: Spam blocking for Sendmail

2003-04-02 Thread Eric Wood
spamassassin is include with RH9.  Although, probably not gui configurable
along with the redhat sendmail gui.  But yes, blocking open relays only
helps a little.  Spam still comes via legitamate gateways.

IMHO, MIMEDefang can block spam without the need for spamassassin - and it
would be at the smtp connection level.  It's just the MIMEDefang developers
are not open to making their system configurable via config/preferences
files.

There needs to be a sendmail milter developed that is highly configurable
based on virtual domain preferences.  RH (or someone) could really make a
market for that.
-eric wood

Ed Wilts wrote:
> We've had a large success rate with realtime blackhole lists and block
> thousands of messages a day.  However, we still see a lot of spam.
>
> I've done some personal testing with spamassassin and I really don't
> like it - the false positive rate was way too high for me.



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


Re: I'm totally lost!!! SOLVED

2003-04-01 Thread Eric Wood
Nowhere in this thread of messages was a Larry Brown.  Please be more
detailed with your experiences for the benefit of others.

-eric wood

From: "Thomas E. Dukes"
> Thanks,
>
> Larry Brown of Dimension Networks bailed me out and got things working.
> I _REALLY_ appreciate everyones assistance.



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


Re: Redhat 9 not 9.0 ?

2003-04-01 Thread Eric Wood
I think that's good! We've catered to ancient programs for too long via
compatibility.  It's time to see what software package will have a pulse.
It's time to see what dies and what is born.
-eric wood


From: "Jeff Bearer" <[EMAIL PROTECTED]>
> Keep in mind that the consumer RHL is going to be a lot more aggressive
> with new stuff, so they may in fact break binary compatibility on each
> release.



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


Re: rsync linux and mac

2003-04-01 Thread Eric Wood
Most of use here are not OS X users.  But Google is a user of all kinds of
OSes:
http://www.bombich.com/mactips/rsync.html

-eric wood

From: "Jianping Zhu":
> I have a linux server with tape in it and i have serveral mac machines, I
> can u use rsync +ssh backup directories in mac machines and how?
> Thanks



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


Re: Another Question on Collecting data frm Serial Port

2003-03-26 Thread Eric Wood
Well,  I trap phone system data from the serial port. I have a start-up
script in my rc.local file that pipes the data to a file:

[EMAIL PROTECTED] rc.d]$ cat /usr/bin/osas_logsrxcalls
/usr/bin/osas_rotatesrxcalls
# Remember, call this script with a background argument '&'
cat < /dev/ttySR11 | sh -c 'while read line; do echo "$line" >>
/usr/ip/osas/arc
hive/SRX_CALLS ; done'

The pipe ensures that the SRX_CALLS files is "movable" with the cat process
breaking or following the moving inode.  My osas_rotatesrxcalls does this:

# Rotate captured text file
if [ -f /usr/ip/osas/archive/SRX_CALLS ]
then
/bin/mv /usr/ip/osas/archive/SRX_CALLS_9 /usr/ip/osas/archive/SRX_CALLS_10
/bin/mv /usr/ip/osas/archive/SRX_CALLS_8 /usr/ip/osas/archive/SRX_CALLS_9
/bin/mv /usr/ip/osas/archive/SRX_CALLS_7 /usr/ip/osas/archive/SRX_CALLS_8
/bin/mv /usr/ip/osas/archive/SRX_CALLS_6 /usr/ip/osas/archive/SRX_CALLS_7
/bin/mv /usr/ip/osas/archive/SRX_CALLS_5 /usr/ip/osas/archive/SRX_CALLS_6
/bin/mv /usr/ip/osas/archive/SRX_CALLS_4 /usr/ip/osas/archive/SRX_CALLS_5
/bin/mv /usr/ip/osas/archive/SRX_CALLS_3 /usr/ip/osas/archive/SRX_CALLS_4
/bin/mv /usr/ip/osas/archive/SRX_CALLS_2 /usr/ip/osas/archive/SRX_CALLS_3
/bin/mv /usr/ip/osas/archive/SRX_CALLS_1 /usr/ip/osas/archive/SRX_CALLS_2
/bin/mv /usr/ip/osas/archive/SRX_CALLS /usr/ip/osas/archive/SRX_CALLS_1
fi
/bin/cp /usr/ip/osas/archive/SRX_START_1 /usr/ip/osas/archive/SRX_START
stty -echo -echoe -echok -echoctl -echoke < /dev/ttySR11


The last stty line just makes sets the serial settings - done a boot time.
Linux is good about remebering serial settings.  On other unix systems you
have to wrap the stty command inside an infinite while loop to make the
process hold the tty settings - yuck.  Go Linux!
-eric wood


- Original Message -
From: "Al Sparks" <[EMAIL PROTECTED]>
> Using a mechanism like
> $ cat /dev/ttyS0 >> some_file
> makes it easier to rotate logs.
>
> When I've tried it in the past, though, I've gotten garbage.  When I
> turned to minicom, I was able to adjust the baud rage, stop bits, and
> parity to make things work.



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


Re: Red Hat Linux 9 | Get the latest Linux early (fwd)

2003-03-24 Thread Eric Wood
But would http://www.redhat.com/mktg/rh9iso/ resolve?
-eric

Robert P. J. Day wrote:
>   before anyone gets too cranked up about this, it is almost
> certainly bogus.  look at the return email address --
> redhat.chtah.com.
> 
>   a quick browse of www.chtah.com shows an obvious
> spammer.  so this is total nonsense.
> 
> rday



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


Re: Installing a new motherboard - anything special to do?

2003-03-24 Thread Eric Wood
> On Fri, 2003-03-21 at 18:09, Leon Goldman wrote:
>> I would like to get a new motherboard with faster CPU. I am running
>> RH
>> 8.0. If I just plug in the board and boot up will RH8.0 recognize the
>> new board and the hardware?
>> Leon

RedHat kernels seems to take well the total replacement of mobos.   You
should be fine. The kernel can detect chipset changes, etc and kudzu then
reconfigure somethings based on what the kernel says.  For example, network
settings can be inherited from a missing on-board nic to a new on-board nic.

Unlike windows (where it goes through about 5 boots of detecting new
hardware and ask for all kinds of drivers, then duplicates them to where you
have to remove them in safe mode), linux to pretty clean.  My question is,
how much component swapping does RH really do to test the robustness of
kudzu?  Sounds like they might can take a harddrive and boot it up on as
many different systems as possibly - then see what will go wrong.

-eric wood



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


Re: Red Hat Linux 9 - Obsoleting RHCE's a an unprecidented pace....

2003-03-24 Thread Eric Wood
Correct me if I'm wrong, but a .0 release mainly reflects glibc
compatability.  Maybe something in glibc upgraded so much that calling it
8.1 would make it be too different than normal convention.

8.0 appears to be an odd ball much like Windows ME was for Microsoft.   But,
I'm sure RH has a very good reason for this - they seem to know what they
are doing when "controversial" things like this comes about.

-Eric Wood

From: "Rick Johnson" <[EMAIL PROTECTED]>
> What happened to 8.1? I feel that if Red Hat is going to increment in
> Full x.0 release numbers, they're going to obsolete alot of their RHCE's
> much quicker than if they had made this a x.1. IMHO, there isn't enough



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


Re: need a strategy to backup my systems

2003-03-22 Thread Eric Wood
Yes, forget everything but rsync. Man rsync.  
-eric wood

- Original Message - 
From: "Anthony E. Greene" <[EMAIL PROTECTED]>
> On 21-Mar-2003/20:41 -0500, Jianping Zhu <[EMAIL PROTECTED]> wrote:
> >I have a 3 redhat linux machines m1 m2 m3. but only m1 has tape
> >dirve. for security reason ftp service did not open in any of this
> >machines. ssh are open in all three machines. I need to backup directory
> >d2 in m2 and d3 in m3. how can I backup d2 d3 from m1?
> >Thanks
> 
> rsync works well over ssh. Search Google for:  rsync over ssh HOWTO



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


Re: spam

2003-03-22 Thread Eric Wood
Is URL still valid?
-eric wood

From: "Jeff Kinz" <[EMAIL PROTECTED]>
> use SPEWS in your procmail file.
> 
> http://www.spews.org/faq.html
> 



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


Re: /usr

2003-03-21 Thread Eric Wood
Are you using the Oracle much?  Seems like that hdc drive isn't being used
much.  Repartiion it and mount some directory under /usr to it (after you
copy the data first).  For example, /usr/lib and /usr/local are good
choices.
-eric wood

From: "bulent acikgoz" <[EMAIL PROTECTED]>
>
> Hello friends,
> I have like this disk structure;
>
> [EMAIL PROTECTED] root]# df -k
> Filesystem   1K-blocks  Used Available Use% Mounted on
> /dev/hda2 32257404   4643176  25975600  16% /
> /dev/hda1   102454 47179 49985  49% /boot
> /dev/hdc1  8127400 32812   7681740   1% /oracle
> none256936 0256936   0% /dev/shm
> /dev/hda3  4539104   4155308153216  97% /usr
> /dev/cdrom  463974463974 0 100% /mnt/cdrom
> [EMAIL PROTECTED] root]#
>
> I want to add space for /usr. How can I this dinamiclly and also not
> disturb?



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


Re: vsftp

2003-03-20 Thread Eric Wood
You might can remove anonftp:
# rpm -e anonftp

But, anonymous_enable=NO in your /etc/vsftpd.conf should have done the
trick.
-eric wood




From: "Richard Humphrey" <[EMAIL PROTECTED]>
> I am running Red Hat 8 with the default install of vsftp. I disabled
> anonymous logins in the vsftpd.conf file and restarted xinetd and yet I
can
> still login anonymously. Is there somewhere else I need to configure to
> block anonymous access?



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


Re: RH 8 / Creative Labs PCI 56k Modem

2003-03-19 Thread Eric Wood
You probably have a winmodem - a brainless modem that work mostly off of
software drivers only.  Check out linmodems.org for support.  You chipset
may be a Broadxent (spelling?) which may not be supported at all.

Creative lacks linux support for most of their products.
-eric wood


From: Mike Taggart
Subject: RH 8 / Creative Labs PCI 56k Modem



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


Re: Is RH8 Ever Going to be Updated?

2003-03-16 Thread Eric Wood
You have to remember that RH didn't write any of the programs you mentioned.
I do feel your pain and your complaint is shared by many newcomers to Linux.
Regretfully, there will still be some nuances in RH 8.1.  I just installed
8.1 beta3 and shook my head because of  some old quirks are still there.

If I were you, I'd subscribe to the respective program's mailing list and
voice your concerns.  For example, the Galeon developers might have
overlooked the need for "auto-completion". *You* can actually make a
difference!


-Eric Wood

- Original Message -
From: "Colburn" <[EMAIL PROTECTED]>
> Thousands of patches and kludges later RH8 is functional but well behind
> the curve.  Anyone know if/when RedHat intends to release a
> significantly upgraded version?  (I am sick of wasting time trying to
> get things to work, or fixing things the updates break.)



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


Re: Apology to those affected:

2003-02-21 Thread Eric Wood
Well said. 
-eric wood

- Original Message - 
From: "Cameron Simpson" <[EMAIL PROTECTED]>
> I agree it should be the list owner, lest multiple people supply this
> service:-( But in the absense of a proactive list owner, a single person
> supplying this service is better than none.



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


Re: zillions of mgetty.log.ttyS4.1.1.1.1... messages

2003-02-20 Thread Eric Wood
It should stop.  What happens is the asterisk match the first mgetty file
and made a backup.  The next time the backup file got backed up itself.
Then the backup of the backup got backed up. Then the backup of the backup
of the backup got backed up. Then..

I don't believe there's any valid reason to have an asterisk in a
logrotate.d file.  They goofed.

After you took out the asterisk, are you getting many many /var/log/mgetty*
files again?  You shouldn't
-eric wood

- Original Message -
From: Billy Davis
To: [EMAIL PROTECTED]
Sent: Thursday, February 20, 2003 9:56 AM
Subject: Re: zillions of mgetty.log.ttyS4.1.1.1.1... messages


Thanks for the reply Eric.  I reviewed the mgetty file and found the
astersik, and I see what you have changed.  However, it seems to me that
what ever problem caused these 'zillions' of files to be created, will still
create them, or am I missing something?



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: zillions of mgetty.log.ttyS4.1.1.1.1... messages

2003-02-19 Thread Eric Wood



For some reason, the mgetty guys uses an asterisk 
in the:
/etc/logrotate.d/mgetty
file.  
 
Take out that asterisk. 
 
My file looks like this now:
 
    /var/log/mgetty.log.ttyS0 
{     nocompress    
 missingok    }    
/var/log/mgetty.log.ttyPS13 {    
 nocompress     missingok    
}    /var/log/mgetty.log.ttyPS14 {    
 nocompress     missingok    
}    /var/log/mgetty.log.ttyPS15 {    
 nocompress     missingok    
}
-eric wood

  - Original Message - 
  From: 
  Billy Davis 
  
  To: [EMAIL PROTECTED] 
  Sent: Wednesday, February 19, 2003 3:16 
  PM
  Subject: zillions of 
  mgetty.log.ttyS4.1.1.1.1... messages
  
  We have a RH7.3 server with an internal modem set 
  up as ttyS4.  The modem works great whenever we need to dial in or 
  out.  However, yesterday, the Server started acting very strangely 
  (spooler quit printing, modem would not answer the phone) and we started 
  getting an error message about 'mgetty trying to respawn to quickly, port 
  locked for 5 minutes'.  While trying to find out what was going on, I 
  happened to notice that there were a 'zillion'  zero byte length messages 
  in /var/log named mgetty.log.ttyS4.1.1.1.1... up thru 
  mgetty.log.ttyS4.4.4.4.4.4...  It took 30 minutes to delete them all 
  (they could not be deleted with a single rm command), but after they were 
  deleted, the system started acting normally again.  Does anybody know 
  what caused this problem and how to prevent it from occurring 
  again?
   
  Thanks,
  Billy


Re: Shared swap

2003-02-07 Thread Eric Wood
Absolutely, you can even (shrug) let a windows OS use that partition too.

-eric wood
-GodFather

- Original Message - 
From: "Molnar Peter" <[EMAIL PROTECTED]>


> Hello!
> 
> Is it safe to use the same swap partition for two Linux installs on the
> same computer? 
> "I will make him an offer, he can't refuse."



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: RH 8

2003-02-07 Thread Eric Wood
What kind of tape drive and controller?  If SCSI, do you have the chain
properly terminated?  Is the terminator on the cable or a pass-though active
terminator?
-eric wood

- Original Message -
From: Gonzalo Barbeito

I've got a RH8 box, after having changed the tape drive the system started
printing in the system console

info fld=0x2602a,current sd08:12
sense key recovery error additional sense peripheral device with fault

the new tape drive works fine in despite of the error.
Can any one tell me what's going on??



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Sniffing the POP3 password

2003-02-03 Thread Eric Wood
exdump

but you didn't hear it from me.



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: /dev/shm

2003-01-30 Thread Eric Wood
- Original Message -
From: "Todd A. Jacobs" <[EMAIL PROTECTED]>
> The real test is how much swap you're using. Linux swaps aggressively,
> even if you aren't really out of RAM. But if your swap is always full, and
> your drives are thrashing, it's a clear indication that you've exceeded
> your reasonable limits.

Good description.  We store a copy of our entire customer database in the
/dev/shm.  This help us have very fast lookups.  Also, we point our
applications (and webservers) to use /dev/shm instead of /tmp since our app
builds and deletes many small temporary sort files.

-eric wood



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: XINETD

2002-12-09 Thread Eric Wood
2.3.9 was a blunder.  The xinted guys think they've snagged the problem so a
new xinetd package will be out any day. So stick with 2.3.7 for now.

-eric wood


- Original Message -
From: <[EMAIL PROTECTED]>
> Eduardo,
>
> Another fellow had the same question and posted what he found in Bugzilla.
> There appears to be a problem with the later version so they may have
rolled
> back. See this for more info
>
> http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=76146
>
> Regards, Mike Klinke



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: xinetd/imapd wedging? - [DON'T USE XINTED 2.3.9]

2002-11-13 Thread Eric Wood
How many users at one time run imap/pop etc? Are you getting a lot of
CLOSE_WAIT when you run netstat -a?
-eric

- Original Message -
From: "Todd A. Jacobs" <[EMAIL PROTECTED]>
> On Tue, 12 Nov 2002, Eric Wood wrote:
>
> > Downgrade to 2.3.8.  I use 2.3.7 which works great.
>
> I'm currently using xinetd-2.3.7-2, so the problem would seem to be
> something else. I guess I should have posted the version number in the
> first place. :)
>
> Any other ideas?



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: xinetd/imapd wedging? - [DON'T USE XINTED 2.3.9]

2002-11-12 Thread Eric Wood
Don't use xinetd-2.3.9-0.73.i386.rpm.  This package has been broken from the
start and we (over on the xinetd mailing list) are baffled as to why RH
still has 2.3.9 available on their updates server.  Trond of RH (who I think
is responsible for the xinetd rpm) has been MIA on the mailing list for
quite some time.

Downgrade to 2.3.8.  I use 2.3.7 which works great.

-eric wood


- Original Message -
From: "Todd A. Jacobs" <[EMAIL PROTECTED]>


> Has anyone else experienced wedging with imapd? I've been finding that
> imapd frequently "dies," without generating any log messages. Restarting
> xinetd seems to resolve the issue for a while, but there's no obvious
> explaination for the lack of response.



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: linuxconf

2002-11-07 Thread Eric Wood
- Original Message -
From: "ABrady" <[EMAIL PROTECTED]>
> Defending the indefensible, eh?
>
> I downloaded versions myself, straight from solucorp.qc.ca and had
> problems with them. Specifically with sendmail, bind, permissions, etc.
> Basically, I had trouble with the same things that gave me trouble with
> the Redhat-supplied versions.

I don't recall your problems comming across the linuxconf mailing list.  Can
you elaborate on the specific issues you had?
-eric wood




-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: linuxconf

2002-11-07 Thread Eric Wood
- Original Message -
From: "Juan Nin" <[EMAIL PROTECTED]>
> >The linuxconf version which came with RH 7.2 and below are all sabotaged
by
> RH.
>
> Do you have any article or something on this?

One only needs to review the version of linuxconf bundled at distribution
release time versus the version readily available.  RH *always* released a
very old version, turned off many modules, gave no effort or opportunity
into making it compliant with the next version.  They didn't even grab the
latest version from initial beta to final release.  And they wonder why they
got so many support calls.   Who ever was the package maintainer for LC at
RH really dropped the ball.

Regardless, RH did the right thing to not bundle linuxconf anymore - they
couldn't handle it.  RH can no longer sabotage the reputation of linuxconf.
Any bugs now are truely linuxconf bugs.

-eric wood



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: linuxconf

2002-11-07 Thread Eric Wood



What version of linuxconf?  Get the latest 
version here: http://www.solucorp.qc.ca/linuxconf/
 
The linuxconf version which came with RH 7.2 and 
below are all sabotaged by RH.  Most people run this crippled version and 
then complain that it don't work.  They are short-sighted.
 
-eric wood
 

  - Original Message - 
  From: 
  RH 
  
  
  
  Hello Group,
   
  I'm running RH7.1, and every time after I 
  quit Linuxconf I get the 
following.


Re: setting up IMAP server with redhat 8

2002-11-06 Thread Eric Wood

- Original Message -
From: "Rune Berge" <[EMAIL PROTECTED]>
> > Verify that imap is on port 143:
> > $ getent services imap
>
> This returns "imap 143/tcp imap2" which I assume is a good sign.
>
> > Then:
> > $ netstat -an | grep 143
> > check that you're listening on port 143.
>
> This, however, doesn't return anything. I guess that means I'm not
> listening in port 143. What should I do?

Activate the imap services:
# chkconfig imap on
# chkconfig imaps on
Restart xinetd in case chkconfig didn't do the job like it was supposed to
# service xinetd restart

> But how do I create mail accounts for the users?

Simply create normal user accounts with the user manager in X windows.  Then
point the imap client software to your server and you good to go.

-eric wood



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Where to send package updates

2002-11-02 Thread Eric Wood
You code send the code change to the the last package maintainer listed in
the src.rpm's changelog   Their email address is usually in there.  They, in
turn, will hopefully submit it to the core team of that package - if it's
other than RH.

I've emailed BSD man pages (for programs that were missing one) to the RH
package maintainers.

-eric wood


- Original Message -
From: "Jonathan DeSena" <[EMAIL PROTECTED]>
> I would like to submit my changes to someone at Redhat to look over and
> perhaps adopt, but I have not been able to find out how to go about



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: RedHat 8.0 and Wireless

2002-10-22 Thread Eric Wood
I've got it to work too. 

http://prism2.unixguru.raleigh.nc.us/

-eric wood



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



rh 7.1 and ghostscript

2002-10-21 Thread Eric Wood
Has anyone upgraded ghostscript-5.50 on a RH 7.1 successfully.  I'm
concerned about printing problems after I upgrade.
-eric wood

[root@seawolf doneq]# rpm -q --whatrequires ghostscript
ghostscript-fonts-5.50-3
gv-3.5.8-11
ifhp-3.4.4-1
printconf-0.2.15-2
hylafax-4.1.4-1rh7



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: What is /dev/shm

2002-10-21 Thread Eric Wood
I remove the sticky bit from it and place a lot of read-only data files in
there - this speeds up databases greatly for me. Just don't run out of real
memory!

-eric wood

- Original Message -
From: "Michael Rubin" <[EMAIL PROTECTED]>
> I am running RH 7.1  What is /dev/shm?  Some kind of shared memory?  Is it
> dangerous to security?



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: exdump

2002-10-21 Thread Eric Wood
It is a bit dated but compiles and runs good.

-eric wood

- Original Message -
From: "Ernest E Vogelsinger" <[EMAIL PROTECTED]>
> As to its homepage exdump is quite a bit outdated (d/l not available, last
> update 1999)- has anyone experience with RH 7.2 and exdump 0.2 - is it
safe
> to use?



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: pop3 sniffer

2002-10-21 Thread Eric Wood
exdump

- Original Message -
From: "juaid" <[EMAIL PROTECTED]>
> Hi
>
> I am about to switch a mail server using pop-before-smtp to use SMTP AUTH.
> I want the change to be transparent for users, so I need to get their
> passwords for adding them into sasldb
>
> which sniffer (command line) would you recommend for getting pop3 passwds?
>
> thanks in advance,
>
> juaid



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



screen emulation

2002-10-19 Thread Eric Wood
Can someone help me out with:
# screen setup

I'm using "linux" emulation in my $TERM variable.  Does the emulation get
messed up on you too?   I suspect that more adjustment need to be made to
~/.screenrc for the standard "linux" emulation.

-eric wood



-- 
redhat-list mailing list
unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Tonight I got hacked.

2002-10-18 Thread Eric Wood



Look, you're asking us for help and if you can't 
put any time into it then why are you here?
 
Anyway, I will say that I believe I got hacked 
while running wu-ftpd on RH 7.3.  wu-ftpd make the second time on two 
different versions of RH.  I'll never use wu-ftpd again.
 
-eric wood
 

  - Original Message - 
  From: 
  linux 
  power 
  
  Are u sure? I have no time to expriment. 


Re: Wireless PCCard and dhcp

2002-10-16 Thread Eric Wood

Run "pump eth0" or "dhclient eth0" and see if it grabs an ip.

-eric


- Original Message -
From: "Haisam K. Ido" <[EMAIL PROTECTED]>


> I have a netgear M401 wireless pc-card for my laptop and when I run
"iwconfig" the
> eth0 shows up with the correct ESSID and so on; however, how do I tell
this
> interface to acquire an ip address from the dhcpd server?  "ifup eth0"
does not work
> because of"
>
> configuration for eth0 not found.
>
> This used to work on Mandrake8.2



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



which usb devices are plugged in?

2002-10-14 Thread Eric Wood

Is there a way I can list out all the usb devices current plugged in?

I plugged in a USB Tripplite UPS into a usb port and the software wants
/dev/ttyS0 for comminication.  I think I can change that to some
/dev/ttyUSBx through trial and error.

-eric wood




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Lost all permissions

2002-10-07 Thread Eric Wood

There's a /sbin/fixperm program that comes with linuxconf - it does a lot of
permissions fixing.
-eric wood

- Original Message -
From: "Mark Gillingham" <[EMAIL PROTECTED]>
>
> Could not chdir to home directory /home/mark: Permission denied
> /bin/bash: Permission denied



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: SCO Openserver Applications on Linux

2002-10-03 Thread Eric Wood

There used to be called a iBCS modules that you loaded and it ran SCO stuff.
Now it's called ABI.  I think it's still a module:
/lib/modules/2.4.18-10/kernel/abi/sco/abi-sco.o

Maybe use can do a insmod abi-sco or modprobe abi-sco.

Is this modules already loaded (lsmod)?
-eric wood

- Original Message -
From: <[EMAIL PROTECTED]>
> Hi Guys,
>
> Thanks for the help offered.  I have been looking at this a bit further,
and here is what I have found out...
>
> libc_s looks like the Dynamic Link Library for COFF applications.  Running
"file" on the application, says it is an SCO ELF binary.  Seems to me that
libc_s is the wrong track.  Any advice, what libraries do I need?  Where do
I get them?
>
> Thanks...
>
> Matt



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: SCO Openserver Applications on Linux

2002-10-02 Thread Eric Wood

Add /shlib to your /etc/ld.so.conf file and run the re-run the "ldconfig"
program.

-eric

- Original Message -
From: <[EMAIL PROTECTED]>
>  He installed the libc_s in a directory he called /shlib, like it is on
SCO Openserver.  This is not the right place, or this library doesn't work.



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Moving Sendmail/IMAP

2002-09-26 Thread Eric Wood

Make sure that the files in the /var/spool/mail for correct owner and group
permissions.  Each mail file should be owned by the respective user account.

-eric wood

- Original Message -
From: "James Pifer" <[EMAIL PROTECTED]>
To: "redhat" <[EMAIL PROTECTED]>
Sent: Thursday, September 26, 2002 3:39 PM
Subject: Moving Sendmail/IMAP


> I'm moving my whole system, which includes Sendmail and IMAP (for POP3)
> to a new hard drive. I've copied over my
> /etc/passwd
> /etc/groups
> /etc/shadow
> /var/spool/mail
> I've also updated the /etc/mail directory
>
> Sendmail and POP3 are running, but I can't get my mail because
> apparently the passwords don't match. I can login at the console without
> a problem using my old password. How do I get all the users passwords
> synced with the old system? Where does Sendmail or IMAP get the
> passwords from?
>
> Thanks,
> James
>
>
>
>
>
> --
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
> https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Linuxconf in RedHat 7.3

2002-09-06 Thread Eric Wood

- Original Message -
From: "Keith Morse" <[EMAIL PROTECTED]>
> Redhat doesn't support it anymore, but it is still available from
> http://www.solucorp.qc.ca/linuxconf/  if you happen to like it.

When did RH even try to "support" it?  They just gave it a bad rap by
disabling modules, not assisting Jacques into make it compatible with the
next version, yadda yadda yadda.
-eric



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: sync RH updates

2002-07-30 Thread Eric Wood

Use rsync - one command does it all.  You'll have to various redhat mirrors
to see if they run an rsync'd server for the updates directory.

-eric


- Original Message -
From: "Martín Marqués" <[EMAIL PROTECTED]>

> Is there a way to sync the updates of some RH distributions (6.2, 7.2 and
7.3
> I need) in another fashion then using wget? I have repeated versions of
> openssh, for example, with wget.
>
> Saludos... :-)
>




-- 
redhat-list mailing list
Unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: PHP Vulnerability

2002-07-24 Thread Eric Wood

The 4.1.2-7 (which came with 7.3) shouldn't have the vulnerability.  If it
did RH would have whipped out a new php package for the 7.x distro.
-eric wood

- Original Message -
From: "João Borsoi Soares" <[EMAIL PROTECTED]>
> My RH7.3 has PHP version 4.1.2-7. In the php.net it
> tells that PHP versions 4.2.0 and 4.2.1 have the
> vunarability. Are you shure we have to do the patch?
>




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



Re: linuxconf - segmentation fault ( core dumped )

2002-07-22 Thread Eric Wood









Here recently, linuxconf had a problem parsing the RH network settings files
and core dumped.  Grab the lastest linuxconf from:
http://www.solucorp.qc.ca/linuxconf/download.hc

-eric wood

- Original Message -
From: "kutbuddin ali hussain" <[EMAIL PROTECTED]>
> Hello,
> when i try to run Linuxconf it gives me following error.
> " segmentation fault ( core dumped ) "
> please help.
>
> thanks




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




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




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



Re: linuxconf - segmentation fault ( core dumped )

2002-07-22 Thread Eric Wood





Here recently, linuxconf had a problem parsing the RH network settings files
and core dumped.  Grab the lastest linuxconf from:
http://www.solucorp.qc.ca/linuxconf/download.hc

-eric wood

- Original Message -
From: "kutbuddin ali hussain" <[EMAIL PROTECTED]>
> Hello,
> when i try to run Linuxconf it gives me following error.
> " segmentation fault ( core dumped ) "
> please help.
>
> thanks




___
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: linuxconf - segmentation fault ( core dumped )

2002-07-22 Thread Eric Wood

Here recently, linuxconf had a problem parsing the RH network settings files
and core dumped.  Grab the lastest linuxconf from:
http://www.solucorp.qc.ca/linuxconf/download.hc

-eric wood

- Original Message -
From: "kutbuddin ali hussain" <[EMAIL PROTECTED]>
> Hello,
> when i try to run Linuxconf it gives me following error.
> " segmentation fault ( core dumped ) "
> please help.
>
> thanks




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



named.conf expert needed

2002-07-18 Thread Eric Wood

The question is why can't my internal lan able to get to a newly added
domain on my external lan?

I added a new domain called xyz.com to my external view.  I can dig and
nslookup everything
about xyz.com fine which logged into my external server.

If I'm at a internal client station (which is NATed) I can't see the xyz.com
domain
*until* the dns gets propogated to my ISP.  So, it as if my "internal" view
doesn't refer to my "external" view for an answer.  It just goes out to the
other nameservers.

My /etc/resolv.conf has my external DNS as the first nameserver to query,
and my ISP's nameservers are farther down.  Even the allow-recursion
argument didn't help.

Any ideas?

-eric wood


acl "internal-subnet" { 10.0.0.0/8; 127.0.0.1; };

view "internal" {
 match-clients { "internal-subnet"; };
 allow-recursion { "internal-subnet"; };
 zone "interplas.com" {
type master;
file "named_internal/interplas.com";
 };
 zone "0.0.10.IN-ADDR.ARPA" {
type master;
file "named_internal/10.0.0";
 };
 zone "." {
type hint;
file "named.ca";
 };
 zone "0.0.127.IN-ADDR.ARPA" {
type master;
file "named.local";
 };
};


view "external" {
 match-clients { any; };
zone "182.83.66.IN-ADDR.ARPA" {
type master;
file "66.83.182";
};
zone "." {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "named.local";
};
zone "xyz.com" {
type master;
file "xyz.com";
};
};




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



Re: Red Hat 7.3 and linuxconf

2002-07-17 Thread Eric Wood

Jacque is working on a new sendmail config.  Even so, it still works great
as far as I can tell.  Is there another gui that handles sendmail
configuration and vdomains better than linuxconf?
-eric

- Original Message -
From: "Kevin Myers" <[EMAIL PROTECTED]>
> >I thought the same thing until I was introduced to sendmail.  Linuxconf's
> >virtual domains it very easy and I primarily use linuxconf just for
> >configuring sendmail.
> >-eric
> >
>
> Definitely a bad idea. The linuxconf sendmail config is badly out of
date -
> or was - and has regular appearances on the sendmail mailing lists as
such.




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



Re: imap rpm's needed

2002-07-17 Thread Eric Wood

There's one package that I always replace after install RedHat, and that's
imap-2001a-10.virtual.i386.rpm which can be downloaded at
http://vimap.sourceforge.net/

With this, linuxconf, sendmail and virtual domains work beautifully.
-eric wood


- Original Message -
From: "Ragnar Wiencke" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 17, 2002 6:38 AM
Subject: Re: imap rpm's needed


> Hi Jay,
>
> >It's a huge program.  Why not just use the UW imap that
> comes with
> >RedHat? called imap-2001???.rpm or something like that.




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



Re: Red Hat 7.3 and linuxconf

2002-07-17 Thread Eric Wood

I thought the same thing until I was introduced to sendmail.  Linuxconf's
virtual domains it very easy and I primarily use linuxconf just for
configuring sendmail.
-eric


- Original Message -
From: "Kevin Myers" <[EMAIL PROTECTED]>
> >Since Red Hat 7.3 does not come with linuxconf anymore, which package
> >should I use instead? I need a text terminal based configuration tool.
>
> I steer away from auto configuration tools whenever possible -
>Learn about the conf files, and then edit them yourself



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



Re: ftp/telnet - connection refused all of a sudden!!!

2002-07-17 Thread Eric Wood

I own that xinetd version below 2.3.5 had a problem dieing whenever several
fast ftp attempts happen at a time - notable from hackers.  A "service
xinetd restart" fixed it.   This got old.

Fortunately, I've haven't experienced and problems with xinetd-2.3.5-0.7.

-eric

> >I could able to do ftp and telnet to my linux box.
> >After a boot none of these services are availble. I
> >always get back a "connection refused" error.




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



Re: Exchange 2000 to Red Hat

2002-07-17 Thread Eric Wood

Also Shared contacts lists and netmeeting proxy connections.
-eric

- Original Message - 
> Calendaring... public folders... 
> > Is Exchange used for anything else than sending mail.




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



Re: Iptables

2002-07-16 Thread Eric Wood

Drop them from using a few of our active services:
# iptables -A INPUT -i eth0 -s 207.46.197.102 -p tcp -m
multiport --destination-port 22,110,23,25 --syn -j DROP

Drop them totally
# iptables -A INPUT -i eth0 -s 207.46.197.102 -j DROP



- Original Message -
From: "Jesse Angell" <[EMAIL PROTECTED]>
> Is there a way where I can block ips through iptables, but only have it
> block it if it's coming in on a certain ip and port?




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



Re: red hat 8 -> maybe a stupid question?

2002-07-12 Thread Eric Wood

And incomplete gui tools at that
-eric

- Original Message - 
From: "loophole" <[EMAIL PROTECTED]>
> And to think of it
> -they are replacing some great text based tools with
> gui based ones.  



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



Re: Iptables slow when list rules

2002-06-25 Thread Eric Wood

Just for giggles, comment out each line with a "-m limit --limit " on the
line.
-eric wood

- Original Message -
From: "Josep M." <[EMAIL PROTECTED]>
> Hello.
>
> I installed rh7.2 and iptables,I never used iptables before and I had done
my script for one machine only
> and when  i execute "iptables -L" is terrible slow,maybe one line per
minute for list all rules
> in a pII350 with 320RAM and more of 180 RAM free and only me as terminal
user,no X loaded!!
>
> I would like know is this is usual,ipchains was very quickly listing
rules!!




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



Re: Bad Interperter?

2002-06-25 Thread Eric Wood

Make sure this file didn't come from a DOS/Windows system as text files will
have carriage returns.

-eric
- Original Message -
> > [root@localhost source]# ./configure
> > bash: ./configure: bad interpreter: No such file or directory




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



Re: 7.3 - GUI install hangs at formatting / filesystem

2002-06-22 Thread Eric Wood

This killed me too.  I had bad ram.  I swapped it out with some good stuff
and it installed fine.
-eric
- Original Message -
From: "Here and There" <[EMAIL PROTECTED]>
> 2) I'm now "trying" to install 7.3 and
> the system hangs about 1/2 second into
> formatting the / filesystem, at the
> beginning of the actual install after
> getting all info.  Should I not use
> the GUI?  Anyone else having this bug?




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



Re: SCO binaries on 7.3

2002-06-06 Thread Eric Wood

Ah, forgot about the abi guys.  If only some rpm package gurus could make
some rpm for the lastest distros.  Or is abi completely modular now without
having to patch a stock Redhat kernel (7.3 for example?).

I wouldn't mind using abi if I didn't have to fiddle with a stock kernel.
-eric



- Original Message -
From: "Michael H. Warfield" <[EMAIL PROTECTED]>
> On Thu, Jun 06, 2002 at 07:59:09AM -0400, Eric Wood wrote:
> > I believe overall support for iBCS was dropped when things went to 2.2
> > kernel.   Caldera certainly isn't going to support iBCS since it will
cut
> > into their SCO sales.  I would be easier to load a 2.0.x kernel is iBCS
> > module.
>
> Huh?
>
> I thought that iBCS in 2.0 morphed into the ABI (Application Binary
> Interface) in 2.2 and above.  I've even been trading E-Mail with the
> authors about supporting some old FoxPlus stuff and X286 x.out stuff
> under it.  This was just in the last couple of months and the reference
> was under the 2.4 kernels.
>
> http://linux-abi.sourceforge.net/




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



Re: SCO binaries on 7.3

2002-06-06 Thread Eric Wood

I believe overall support for iBCS was dropped when things went to 2.2
kernel.   Caldera certainly isn't going to support iBCS since it will cut
into their SCO sales.  I would be easier to load a 2.0.x kernel is iBCS
module.

-eric wood

- Original Message -
From: "Lesniak, Steven" <[EMAIL PROTECTED]>


> I am running an experiment with Red Hat 7.3 where I need to run SCO
> Openserver 505 binaries on the Red Hat box.  I am aware of iBCS but all
that
> I can find is for much older revs of Linux.
>
> How can I get the SCO files to run properly on my 7.3 install?
>
> TIA




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



Re: Tape Backup Software

2002-05-14 Thread Eric Wood

A personal edition of BackupEdge is under $100 (www.microlite.com). Includes
recoveredge for bare metal restores. No X interface but the tui is fairly
sufficient.

-eric wood

- Original Message -
From: "Jim Hale" <[EMAIL PROTECTED]>
To: "Mailing List - Redhat" <[EMAIL PROTECTED]>
Sent: Monday, May 13, 2002 5:22 PM
Subject: Tape Backup Software


> I'm currently using a Win2K Advanced Server with a Seagate 4g/8g Tape
Backup
> Drive and Veritas Tape Backup Software. Is there software that is
comparable to
> Veritas for Linux so that maybe I can move another server OVER to Linux?
>
> Thanks!
>
> Jim Hale
> ---
> Jim & Kathy's Website Collection
> http://hale.dyndns.org
>
>
>
>
>
>
> -
> This mail sent through IMP: http://horde.org/imp/
>
>
>
> ___
> 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: Outlook XP And Linux IMAP Server

2002-05-13 Thread Eric Wood

I read on the linuxconf mailing list that there is a new vimap version that
will allow multiple connections to the same imap user box if the mail file
is converted to mbx format on the linux server.   I hope Friedrich didn't
mind my cross posting his message.
-eric wood


Hi!

If you always wanted your vimap user to not see other namespaces, like
#news, #ftp,  just the needed ones to access their mail and want to
have their folders in the better mbx instead of the default unix mailbox
format then grab the vimap source rpm at
 ftp://ftp.fl.priv.at/pub/vimap/SRPM/SuSE-7.3/with-mbx-and-no-namespace/

change if you are on redhat or suse and a "rpm -bb imap.spec" should
create what you want. Before I forget, files starting with a dot, like
".vacation.*" are also hidden now.

Only tested on SuSE 7.3. If you have troubles with this just take the
patches and the orginal vimap src-rpm from
  http://vimap.sourceforge.net/

and rework that.

If you install this on a server already running vimap then only newly
created mailfolders will be in the mbx format.

I'm currently working on how to autmatically create
/vhome/domain.com/home/user/INBOX so the imap daemon copies all mail from
/var/spool/vmail/domain.com/user to this place. The plus of the mbx format
is that more than one mail-client can access the same mail folder at the
same time. That's not possible if you stay with the defaults.

--
MfG / Regards
Friedrich Lobenstock


- Original Message -
From: "Chris Mason" <[EMAIL PROTECTED]>
> That happens to me when I use another imap client to access the same
account
> simultaneously.




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



Re: [OT] About 7.3

2002-05-07 Thread Eric Wood

- Original Message -
From: "Ismael Touama" <[EMAIL PROTECTED]>
> But now, what is actually the method to implement OS that
> they're in constant evolution.

Upgrade.  Most people only tweak a few applications.  The rest of package
will upgrade with no problem.

> What's the major difference or technology bounce between
> one project to another one. :o\
> I'm kind of lost as for what policy is bringing up at RedHat.
> (and other distro).

Uhh I'm going to have to plead the 5th amendment on these questions.

-eric



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



Re: frequent hard disk writes

2002-05-02 Thread Eric Wood

- Original Message -
From: "Chad and Doria Skinner" <[EMAIL PROTECTED]>
> My linux box writes to the disk at about 5 - 15 second intervals even when
> no one is logged in. Is there any way to prevent this so that the disks
will
> spin down into standby mode?

This is not a easy question.

You've probably running cron which has to run somthing.  cron causes
/etc/mtab's access time to be update which causes ext3 to flush the hard
drive which causes the hard drive actitivity which causes the hard drive to
never go to sleep.

vixie-cron is not fam_sgi compatible and therefor your hard drive will never
sleep.  However, you can stop the cron daemon.  Maybe Paul Vixie will start
using fam.

furthermore, restarting xinetd will loose all rpc connected sockets with fam
which will then bomb out apps.  Until xinetd gets fixed, fam is almost
useless.  They're working on this bug I believe.

-eric wood






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



need a form generator

2002-04-30 Thread Eric Wood

I've found http://www.satisoft.com/satform/ but I was looking for a more
complete form generator that allowed my to import pictures and draw shaded
boxes, etc.

Does anyone know of a form tool that will merge delimited data and output to
various formats that can be faxed/printed?

Thanks,
-eric wood




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



Re: sgi_fam libwrap from 0.0.0.0

2002-04-29 Thread Eric Wood

This is a know xinetd bug.   They're working on it.
-eric wood

- Original Message - 
> I continously get the following line in /var/log/messages
> and the logwatch file
> 
> xinet[256] FAIL: sgi_fam libwrap from 0.0.0.0
> 
> Does anyone know how to avoid these messages (what file
> should I modify)?
> 
> Cesar




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



Re: Sendmail and a BIG alias file

2002-04-26 Thread Eric Wood

Ashwin,
Are you saying that the  "newaliases" command doesn't work after editing the
/etc/aliases file?  Or that work and sendmail ignores some alias lines?  Can
you be more specific on your problem?

-eric
- Original Message -
From: "Ashwin Khandare" <[EMAIL PROTECTED]>
> Can u please elaborate on the solution u have offered.
> I myself also has been facing the same problem.

> > | How well does sendmail handle a *big* alias file (around 2
entries)




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



cleaning up an directory full of rpm files

2002-04-22 Thread Eric Wood

Say you have a lot of rpms in the same directory.  Some rpms or old and new.
For example:

XFree86-ISO8859-2-100dpi-fonts-4.1.0-15.i386.rpm
XFree86-ISO8859-2-75dpi-fonts-4.1.0-15.i386.rpm
XFree86-ISO8859-9-100dpi-fonts-4.1.0-15.i386.rpm
XFree86-ISO8859-9-75dpi-fonts-4.1.0-15.i386.rpm


Does anyone have a script that would chunk the older rpms and leave me a
directory with just the latest and greatest?

-eric wood



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



Re: fam keeps dying - and why

2002-04-05 Thread Eric Wood

Well, you just fixed only one of the problems by upgrading to xinetd-2.3.4.
Actually, Trond Eivind Glomsrød (the xinetd package maintainer for redhat)
is aware of these problems and is current trying to fix a bigger problem -
that's is if he can convince the author of xinetd to allow it.

Here's the problem:

1. sgi_fam is an xinetd rpc service.  When nautilus or konqueror lauch they
make a connection to fam.  All is fine.

2. When someone (or some program) decides to "/etc/rc.d/init.d/xinetd
reload", the xinetd find it neccessary to give sgi_fam a new port number -
this, of course, make nautilus or konqueror quit sync'ing with the
filesystem because they just lost the connection to fam!  They're left in
limbo.

Even if you say "chkconfig telnet off", which has nothing to do with an rpc
service,  xinetd will restart rpc services.

Bottom line is that I believe xinetd is not handling the -HUP signal
correctly in order to pick and choose which specific service needs to
restart.

-eric wood


- Original Message -
From: "Zhi-Wei Lu" <[EMAIL PROTECTED]>
> It turns out to be a problem with xinetd.  I was using redhat packaged
> xinetd-2.3.3-1.  After I compiled xinet-2.3.4 from
(http://www.synack.net/xinetd/)
> ,installed the xinetd binary, and restart xinetd.  sgi_fam will stay alive
if I do
>
> telnet localhost fam_port
>
> Thank you very much for your help.
>
> How can I file a bug report to redhat about xinetd-2.3.3-1?




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



Re: fam keeps dying

2002-04-03 Thread Eric Wood

I'm on the xinetd mailing list and this sounds real familiar with rpc
service that "wait".  Grab the latest xinetd package off of skipjack or
rawhide.

I'm running skipjack so my didn't error like yours did.  I don't run RH 7.2
any more.

-eric

- Original Message -
From: "Zhi-Wei Lu" <[EMAIL PROTECTED]>
>   But if I start fam using xinetd,
> However, when I do a tcpdump/ethereal on the packet, it clearly says that
> packets are from 127.0.0.1 rather than 0.0.0.0.  Does libwrap has a bug or
not?




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



Re: fam keeps dying

2002-04-03 Thread Eric Wood

- Original Message -
From: "Zhi-Wei Lu" <[EMAIL PROTECTED]>
> fam will stay up.  But if I start fam using xinetd,
>
> telnet localhost fam_port
>
> xinetd (libwrap) will kill fam as seen from the kernel log file in
> my previous message.
>
> Apr  3 09:18:30 dorothy xinetd[23766]: libwrap refused connection to
sgi_fam from 0.0.0.0
>
>
> However, when I do a tcpdump/ethereal on the packet, it clearly says that
> packets are from 127.0.0.1 rather than 0.0.0.0.  Does libwrap has a bug or
not?

What's your xinetd's sgi_fam config file look like. I'll see if I can
duplicate the problem.
-eric




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



Re: fam keeps dying

2002-04-03 Thread Eric Wood

Try running "# fam -d" from a virtual console, and start X.  Maybe the log
will show you what's happening.

-eric wood

- Original Message -
From: "Zhi-Wei Lu" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 03, 2002 1:17 PM
Subject: fam keeps dying


> Hi,
>
> I have noticed recently that sgi_fam services die on most of our
> 2+ dozen linux 7.2 systems, all of which have been patched
> quite update to date except for the kernel I am running
> 2.4.9-21 (rather than 2.4.9-31).




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



Re: fstat() vs. stat()

2002-04-01 Thread Eric Wood

Nevermind. I was using fopen() instead of open().

Dur.

-eric
- Original Message -
From: "Eric Wood" <[EMAIL PROTECTED]>
To: "Red Hat List" <[EMAIL PROTECTED]>
Sent: Monday, April 01, 2002 11:35 AM
Subject: fstat() vs. stat()


> Ug.  Does anyone know why fstat() gives much different results than
stat()?
> -eric wood




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



  1   2   3   >