Re: Minimum Password Length

2000-10-09 Thread Emmanuel Seyman
u want to improve security, I'ld suggest you take a good look at the rest of the file to see if there are more changes you want to make. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Minimum Password Length

2000-10-09 Thread Emmanuel Seyman
rpjday a écrit : > > On Mon, 9 Oct 2000, Emmanuel Seyman wrote: > > > Yuo have to edit the login.def file ( /etc/login.def in > > a standard RedHat distrib). > > you probably mean /etc/login.defs, no? Note to self: double-check file names and paths before posting a

Re: jailing ftpusers with wu-ftp

2000-10-10 Thread Emmanuel Seyman
imizing Linux: Red Hat Edition" which you'll find here: http://www.linuxdoc.org/LDP/gawlso/Securing-Optimizing-Linux-RH-Edition-1_3.pdf Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: pico can cripple a system

2000-10-12 Thread Emmanuel Seyman
't remember how the thing works and I don't have a manpage installed, which is very strange. > sorry can't be mroe helpful... hopefully it'll get people talking though! ;) Who knows. :-> Emmanuel Seyman ___ Redhat-list mail

Re: pico can cripple a system

2000-10-12 Thread Emmanuel Seyman
Emmanuel Seyman wrote : > > I think ulimit is what you're talking about. You can use it to limit > file sizes, max memory sizes, etc for users. Maw memory size is > unlimited by default in RedHat (in 6.2 anyways) so that would explain > pico crashing the system. I'ld like

Re: pico can cripple a system

2000-10-12 Thread Emmanuel Seyman
rally claim more than they need. When memory becomes short (which rarely happens), Linux has to kill processes to get memory back. There's an article about it in this week's Linux Weekly News (Kernel section, of course): http://www.lwn.net/2000/1012/kernel.php3 Emmanuel Seyman _

Re: large filesystem under Linux

2000-10-30 Thread Emmanuel Seyman
"G. T. Francisco" wrote : > > I don't know anything about RAID and large HD's but out of curiosity > how long would it take to fsck 290gig? FWIW, I scandisked a 45Go drive this weekend: 5 hours. Emmanuel Seyman ___ Re

Re: kernel for AMD Athlon

2000-10-30 Thread Emmanuel Seyman
'x68_serial_nr=1' to Lilo for this to be desactivated. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: KDE 2.0 RPMs for 6.2?

2000-11-03 Thread Emmanuel Seyman
Bernhard Rosenkraenzer wrote : > > Go ftp://ftp.linux-easy.com/pub/kde/rh62 for preliminary versions, at the > moment x86 only. Just a minor correction: /pub/kde/rh6.2/ is the correct directory. > I'll put updates there when they're ready. Thanks, Bero! Emmanuel ___

Re: [6.2, newbie] http [FAILED]? and related network questions

2001-04-26 Thread Emmanuel Seyman
nfo. It contains a line per interface and should read 127.0.0.1 localhost.localdomain localhost 192.168.1.13dragon HTH! Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: HP970Cse driver?

2001-04-30 Thread Emmanuel Seyman
nting on both sides of the printer? Yup. You can find it on HP's sourceforge site: http://hpinkjet.sourceforge.net/ Can't remember if all of the features are availible but you should find all the info you need there. Emmanuel Seyman ___

Re: CDROM Automounting

2001-05-01 Thread Emmanuel Seyman
og files full of crap! :-( I remember there was a RPM that tried to automount CDs when I was testing Fisher. The first thing I did on finding it was "rpm -e". I can't remember what it was called but it shouldn't be hard to find. Emmanuel Seyman PS: Try the RPMS that cont

Re: what is wrong with root login for ssh2

2001-05-02 Thread Emmanuel Seyman
On Wed, May 02, 2001 at 02:37:43AM -0400, Statux a ecrit: > > I thought that root logins were the reason why people recommend ssh in > the first place. Is there something I don't know? :) This is just a guess but it must be easier to "steal" the password passed at the beginning of the session th

Re: Mirroring

2001-05-04 Thread Emmanuel Seyman
Hat site if you don't feel like downloading a 650M iso and burning it to CD. You'll probably just have to read the Reference Guide (Appendix D). http://www.redhat.com/support/manuals/ Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] ht

Re: email ?

2001-11-12 Thread Emmanuel Seyman
On Mon, Nov 12, 2001 at 03:25:07AM -0800, Steve Lee wrote: > > I have two accounts on my machine with a username > of "stevelee and "one". I can send all emails > that i want to the username "one" but the email > stevelee. Does anyone have any idea on how to get > this working? Is there any

Re: webalizer stopped working

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 07:11:31AM -0500, [EMAIL PROTECTED] wrote: > > Out of the blue, webalizer (1.3) has stopped producing stats. No changes > have been made to it or it's configuration in ages. This is a known bug on Webalizer 1.3 . It ignores every log entry dated post-4th October. Upgrade t

Bash globbing

2001-11-14 Thread Emmanuel Seyman
I'm trying to find a way to get the names of the files in my Mail folder but would like to exclude the sent folder. I'm trying to find the parameters to echo that will send me the list but I'm having a hard time and I was wondering if somebody could help me. I've tried `echo [^sent]*` which send

Re: Bash globbing

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 10:01:22AM -0500, Anthony E. Greene wrote: > > You could always take advantage of grep: > > `ls ~/mail | grep -v '^sent'` I thought of that but I need all the info on one line, hence the echo. [seyman@munshine seyman]$ echo ~/Mail/* | grep -v sent [seyman@munshine sey

Re: Cert problem popping with 7.2

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 06:28:33AM +, Rodolfo J. Paiz wrote: > > However, I'm not sure what the heck to do with them. "make usage" in that > directory gives a list of instructions which I do not understand, and I'm > not trying to use secure POP (yet); just POP. That is, the pop3s service i

Re: Bash globbing

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 05:26:10PM +0100, Thomas Ribbrock wrote: > > Well, how about > echo `ls ~/mail | grep -v '^sent'` Damn! I should have thought of that. Thanks to both of you. Emmanuel ___ Redhat-list mailing list [EMAIL PROTECTED] https://li

Re: Bash globbing

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 08:51:25AM -0800, Harry Putnam wrote: > > How can we tell you what globbing syntax to use if you don't show us > the file names? Everything but "sent". I could give you some names but I'm sure you can think something up. > What does `ls Mail' print? A whole load of name

Re: Bash globbing

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 12:01:35PM -0500, Brad Cox wrote: > > How about echo Mail/* | sed s/ sent//g Make that `echo Mail/* | sed s#Mail/sent##` and you've got yourself a deal. Thanks Brad! Emmanuel ___ Redhat-list mailing list [EMAIL PROTECTED] htt

Re: Bash globbing

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 12:25:15PM -0800, Harry Putnam wrote: > > Both: > s#Mail/sent## > and > `ls ~/mail | grep -v '^sent'` > Will fail in the event of filenames like `unsent' or `notsent' ? the "^" before "sent" searches for the beginning of the line. It will not fail for `unsent' or `

Re: setting up email

2001-11-14 Thread Emmanuel Seyman
On Wed, Nov 14, 2001 at 02:18:59PM -0700, doug piper wrote: > > I'd appreciate any bits of wisdom anyone can throw at me. Hey, Doug. Can you answer these for me? What type of connection do you have between you and the mailserver (dail-up, cable, DSL, LAN)? Can you ping the mail server you're t

Re: setting up email

2001-11-15 Thread Emmanuel Seyman
On Thu, Nov 15, 2001 at 11:12:41AM -0700, Doug Piper wrote: > > [doug@localhost doug]$ fetchmail -v [ snip ] > fetchmail: Query status=7 > fetchmail: normal termination, status 7 Here's the explanation for exit status 7 from the fetchmail man: 7 There was an error condition reported

Re: Tekram DC-390U3W

2001-11-16 Thread Emmanuel Seyman
On Thu, Nov 15, 2001 at 07:53:24AM -0800, [EMAIL PROTECTED] wrote: > > Anyone have any experience loading RH 7.2 on a SCSI system with a Tekram > DC-390U3W controller? Is it supported on the cdrom? Do I have to use the > drivers image? I use the same card on two RH 6.2 servers. I'm surprised

Re: ssh automation

2001-11-18 Thread Emmanuel Seyman
On Sun, Nov 18, 2001 at 05:58:38PM +, Ian Truelsen wrote: > > The permissions are fine. >From the machine you're trying to connect from, type: ssh -v hostname where hostname is the name of the machine you're trying to connect to. Emmanuel ___

Re: System Log Book?

2001-11-19 Thread Emmanuel Seyman
On Mon, Nov 19, 2001 at 09:37:39AM +0100, Thomas Ribbrock wrote: > > I have a question on my mind: What do ye folks out there use as a system > logbook? What I mean is something to keep notes of what RPMs you installed/ > upgraded/removed (and when), which configuration files you changed, etc.pp.

Re: RPM for vsftpd?

2001-11-20 Thread Emmanuel Seyman
On Tue, Nov 20, 2001 at 04:13:26PM +, Rodolfo J. Paiz wrote: > > Chris Evans' vsftpd is now in version 1.0.1; does anyone know where I can > find an RPM package of it? I believe this is what you're looking for: http://enigma.freshrpms.net/rpm.html?id=387> > Also, how does one know what part

Re: RPM for vsftpd?

2001-11-20 Thread Emmanuel Seyman
On Tue, Nov 20, 2001 at 04:58:38PM +, Rodolfo J. Paiz wrote: > > Who runs freshrpms.net? And why do most of their packages have an "fr1" in > the name? Are they different somehow? Can they be trusted? freshrpms.net is run by Matthias Saou, who posts on RH's enigma-list every now and again.

Re: RPM for vsftpd?

2001-11-20 Thread Emmanuel Seyman
On Tue, Nov 20, 2001 at 06:41:39PM +, Rodolfo J. Paiz wrote: > > >I presume the "fr1" means that it's a french version (how the fsck > >can you make a $LANG version of a server?). > > Alternately, "fr" could be a reference to `F'resh`R'pms, yes? Would you believe I never even stopped to cons

Re: upgrading RH 7.1 to 7.2

2001-11-26 Thread Emmanuel Seyman
On Sun, Nov 25, 2001 at 12:18:44AM +0200, Gilbert Goldstein wrote: > > Is available an upgrade from RedHat? If yes does it have an installation > program? Where can I find it? The installation CD for RHL 7.2 will ask you if you want to format the previous install or if you want to simply upgrade

Re: Help with cron and lynx

2001-11-26 Thread Emmanuel Seyman
On Mon, Nov 26, 2001 at 09:36:50AM -0800, John Weez wrote: > > The crontab entry looked like this > > 5 0 * * * lynx http://www.myserver.com/html/test.php I believe this should read "lynx -dump http://www.myserver.com/html/test.php";. Check /var/log/crond just in case. Emmanuel

Re: FTP Server

2001-11-29 Thread Emmanuel Seyman
On Thu, Nov 29, 2001 at 08:13:25PM +0800, [EMAIL PROTECTED] wrote: > > My System is Linux Red Hat 6.2... > How to set the security for the ftp ( wu-ftp ) Server ? > Thank for your help ! If you don't need anonymous ftp, remove the anon-ftp package. I've also found the HOWTOs on wu-ftpd's websit

Re: XSnow

2001-12-01 Thread Emmanuel Seyman
On Sat, Dec 01, 2001 at 12:14:01PM -0800, David Talkington wrote: > > >I'm running Gnome 1.4.0. I didn't know their were problems under > >KDE also. I know I had no problems what so ever under Redhat 6.2 > >and 7.0. >From what has been said on enigma-list, Gnome and KDE both run their own backgr

Re: overwrote much of /etc.....

2001-12-01 Thread Emmanuel Seyman
On Sat, Dec 01, 2001 at 08:59:49PM +, Jack Byers wrote: > > Well I was trying to back up my /etc dir of my 5.2 sys byers > by copying it over to a subdir under a username on my 6.2 sys corni > I used ftp as root and thot i had the right syntax > to get the files copied over to that subdir.

Re: POP/SMTP Service

2001-12-02 Thread Emmanuel Seyman
On Mon, Dec 03, 2001 at 07:21:20PM +0200, Iulian wrote: > > Hello World! Hum... Reminds me of a C program I wrote once. > How do I install service SMTP/POP3 on RedHat 7.1! SMTP is handled by Sendmail and POP3 by uw-imap. You'll find both of these on the CD. Install, read the docs and configure

Re: ssh ( telnet )

2001-12-03 Thread Emmanuel Seyman
On Mon, Dec 03, 2001 at 10:46:31AM +0800, [EMAIL PROTECTED] wrote: > > My system is Red Hat 6.2... > So, how can I use ssh telnet ? Get the rpms from ftp.openbsd.com and install them on the machine. Fire up the server if you want to ssh to the machine. Just type `ssh machine-name`. Emmanuel

Re: ssh ( telnet )

2001-12-03 Thread Emmanuel Seyman
On Mon, Dec 03, 2001 at 07:11:24PM +0800, [EMAIL PROTECTED] wrote: > > What file name must I download ? In ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/rpm/SRPMS/, download openssh-3.0.2p1-1.src.rpm and do what the README in the parent directory says. Emmanuel _

Re: overwrote much of /etc.....

2001-12-03 Thread Emmanuel Seyman
On Mon, Dec 03, 2001 at 07:39:26PM +, Jack Byers wrote: > > It did overwrite XF86Config which might not be a prob, > might work w/o change >I havent tested restarting X yet, >looking for my corni monitor specs Good idea. You can re-create this file by running Xconfigurator. > I am n

Re: Tha game, Chromium

2001-12-03 Thread Emmanuel Seyman
On Mon, Dec 03, 2001 at 02:32:40PM -0500, Ezra Nugroho wrote: > > Does anyone know if there is any package/library that I need to install to > make it fast? Taken from /usr/games/chromium/data/doc/faq.htm: Q: The game runs very slowly. Why? A: Chromium absolutely requires hardware acceleration

Re: Sendmail takes ages to start

2001-12-05 Thread Emmanuel Seyman
On Wed, Dec 05, 2001 at 02:40:48PM +, Kevin Jones wrote: > > What does sendmail do with the hostname that causes it to hang if it's > not there? Sendmail (any SMTP server, really) greets a connection to it with the hostname of the machine so that loops of the machine sending mail to itself c

Re: Openssl tools reg, gendsa, genrsa, etc

2001-12-11 Thread Emmanuel Seyman
On Tue, Dec 11, 2001 at 02:27:08PM -0500, Jim Lambert wrote: > > These tools aren't in any of these pkgs: > > openssl-devel-0.9.6-9 > openssl-0.9.6-9 > openssl095a-0.9.5a-9 > openssl-perl-0.9.6-9 They're in the updates to your distribution. Emmanuel ___

Re: Openssl tools reg, gendsa, genrsa, etc

2001-12-11 Thread Emmanuel Seyman
On Tue, Dec 11, 2001 at 04:07:49PM -0500, Jim Lambert wrote: > > Huh? I've run up2date and I think, I've got the latest versions of these > packages. Is there some other package I should be installing? If openssl is installed, just type `openssl req` to create a X.509 certificate. Replace the `

Re: Linux player for 7.2?

2001-12-11 Thread Emmanuel Seyman
On Tue, Dec 11, 2001 at 05:28:39PM -0800, Tong Young wrote: > > Does anyone know where to find a DVD player for RedHat 7.2? I tried to get > this Livid thing but their website appears to be down for several days now. > I've tried vlc and ogle and couldn't get it to work. What are the error messa

Re: Anyone Know How to configure DNS?

2001-12-13 Thread Emmanuel Seyman
On Thu, Dec 13, 2001 at 05:33:36PM +0800, northstone wrote: > > actually i am having problem with configuring DNS > anyone can tell me what show i know before configuring the DNS There's a DNS-HOWTO in the LDP. Head over to http://www.linuxdoc.org/ and read that to get the basics. If you need mor

Re: Where are the aliases set?

2001-12-14 Thread Emmanuel Seyman
On Sat, Dec 15, 2001 at 01:19:26AM +0800, David wrote: > > I recently installed RedHat 7.1 and begin poking around the system. I found > that certain aliases like 'ls' and 'll' are set on default. However, I did > not find these aliases statements in /etc/bashrc, /etc/profile, ~/.bashrc, > ~/.bas

Updating Glibc without rebooting

2001-12-15 Thread Emmanuel Seyman
Hey all. I've updated all my Zoot installs with the glibc update that came out and was wondering if there was a way to reload glibc without having to reboot. Emmanuel ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman

Re: Booting a new untested kernel remotely

2001-12-18 Thread Emmanuel Seyman
On Tue, Dec 18, 2001 at 08:17:00AM -0600, Jesus Ortega (a.k.a. Nitebirdz) wrote: > > there is not graphics console attached to the system. I'd like to know if > there is any simple way to configure LILO to boot a new untested kernel > only _once_ so that if it fails I can always shut down the sy

Re: no PPP, no ssh

2001-12-22 Thread Emmanuel Seyman
On Sat, Dec 22, 2001 at 11:55:47PM +0800, Robert Storey wrote: > > I also have my desktop and laptop connected to one another with > an ethernet cable. Both machines are now running RH 7.2. The two > machines can ping off of each other without error. But I get a > "connection refused" error when

Re: Cron to auto-mail myself an attachment

2001-12-24 Thread Emmanuel Seyman
On Mon, Dec 24, 2001 at 05:56:05PM +0600, [EMAIL PROTECTED] wrote: > > I need to have cron to auto mail me an attachment once a week. > is it something like this ? > mimencode file1 | qmail-inject [EMAIL PROTECTED] I use mutt in these cases. mutt -a file1 [EMAIL PROTECTED] Emmanuel

Re: Bind-9.2.0

2001-12-26 Thread Emmanuel Seyman
On Wed, Dec 26, 2001 at 07:56:43PM +0100, Szemerédy Gábor wrote: > [ After installing Bind 9.2.0 ] > Now I have no rc file , no named.conf under /etc! > So the server does not work. > Please tell me where was my mistake? I don't think you've done any mistakes. You only have to create a

Re: identd: Who needs it?

2002-01-08 Thread Emmanuel Seyman
On Tue, Jan 08, 2002 at 04:48:36PM +0100, Leonard den Ottolander wrote: > > > > What processes use identd? The RFC (sorry, forgot the number) for the protocol says it's only used for the finger service. When I asked this list the same question a while ago, I was told it's also used in irc serve

Re: Front end for cdrecord?

2002-01-16 Thread Emmanuel Seyman
On Wed, Jan 16, 2002 at 12:04:51PM +0100, Nick Wilson wrote: > > Can someone reccomend a good front end to cdrecord? > I looked at the cdrecord man page and it looked like way to much work > just to record some data/music cd's. Try X-CD-Roast http://www.xcdroast.org/ Emmanuel

Re: Where to store src?

2002-01-17 Thread Emmanuel Seyman
On Thu, Jan 17, 2002 at 05:20:55PM +0100, Nick Wilson wrote: > > Just a quickie, where should I put the src directoriew for programs that > I download? Is there an accepted standard or is it a 'take your pick' > type thing? Call it extreme paranoia but I prefer not to compile anything as root. I

Re: Where to store src?

2002-01-17 Thread Emmanuel Seyman
On Thu, Jan 17, 2002 at 11:01:26PM +0100, Nick Wilson wrote: > > * On 17-01-02 at 22:47, Emmanuel Seyman said > > > > Call it extreme paranoia but I prefer not to compile anything as root. > > I have a "build" directory in my $HOME where I put all the tarbal

Re: Installing Postfix on RH 6.2 - "user" problem

2000-11-14 Thread Emmanuel Seyman
There's are RPMS for Postfix on its homepage (http://www.postfix.org/) which might be more recent than the one on the Powertools CD. There is also a HOWTO on RedHat's homepage (http://www.redhat.com/support/docs/mail.html). HTH. Emmanuel Seyman _

Re: auto kicked-off from RH system

2000-11-30 Thread Emmanuel Seyman
If the variable is set, you'll see the number of seconds you can stay idle. Then, you can edit your .bash_profile or /etc/profile to change the setting or deactivate it. Emmanuel Seyman PS: A timeout setting isn't as bad as it sounds. It's the first thing I add to the root acco

Re: auto kicked-off from RH system

2000-11-30 Thread Emmanuel Seyman
On Thu, Nov 30, 2000 at 07:58:37PM +0800, gary a ecrit: > > hi seyman, Emmanuel, please. > I didn't get any value when entering 'echo $TMOUT', is that means the > timeout is unlimited or ?? Yup. It also means I have no idea why you been disconnected which is a bit of a pain. :-< Have you asked

Re: uptime-load average

2000-12-04 Thread Emmanuel Seyman
On Fri, Dec 01, 2000 at 04:27:31PM +0100, Baumgartner Michael AII/Wien a ecrit: > Hi, > could somebody tell me whats the meaning of the load value in uptime or top? Straight from the man page from top: uptime This line displays the time the system has been up, and the three loa

Re: where is db2html?

2000-12-08 Thread Emmanuel Seyman
On Fri, Dec 08, 2000, [EMAIL PROTECTED] a ecrit: > > Can anyone tell me what package contains the file db2html. stylesheets-1.54.13rh-1 (on a RedHat 6.2 with all upgrades). Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED]

Re: [newbie] .zip files...

2000-12-11 Thread Emmanuel Seyman
On Thu, Dec 14, 2000 at 12:30:33AM -0600, christopher j bottaro a ecrit: > > i got some xmms skins and they are in .zip files. what do i use to unzip > them? i tried gunzip -S .zip but it doesn't work... unzip Emmanuel Seyman _

Re: RPM and Bzip Chasing Tails?

2000-12-12 Thread Emmanuel Seyman
rather not go through the Perl Cookbook just to find it. :-| Emmanuel Seyman PS: If the perl rpm insists that it *needs* tcsh, it *needs* tcsh. ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Using SSH in "automatic" mode

2000-12-13 Thread Emmanuel Seyman
opy to station2. Rename it to ~/.ssh/authorized_keys, chmod 600 it and you should be able to ssh and scp from station1 to station2 without having to type in your password. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listma

Re: New System with ABIT KT7 RAID BOARD and AMD THUNDERBIRD 800MHZ CPU

2000-12-13 Thread Emmanuel Seyman
ed two weeks after I brought the system but hopefully, you won't have that problem. :-| Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Abit KT7-RAID Motherboard drivers?

2001-01-05 Thread Emmanuel Seyman
On Thu, Jan 04, 2001 at 09:57:45PM -0500, Steve Gulick a ecrit: > > Anyone know what drivers I need to get ATA100 and Raid working? LWN had a link to a review of this motherboard by Linux Lookup. Maybe you'll find it useful. http://www.linuxlookup.com/html/reviews/mps/kt7-raid.htm

Re: Apache port 80 problem

2001-01-16 Thread Emmanuel Seyman
On Tue, Jan 16, 2001 at 06:41:08AM -0500, Mark Basil a ecrit: > > OK, I know that this is a strange problem, and I'm guessing that few to > none have seen this before. However, can anyone suggest any route over > another to get this resolved? Thanks alot. This is probably a stupid comment but

Re: Startup problem II

2001-01-16 Thread Emmanuel Seyman
al_nr=1 at the > lilo prompt the problem persist. That should be "x86_serial_nr=1" . ^^ It's my fault, sorry. I probably posted the wrong info to the list the first time. Emmanuel Seyman ___ Redhat-list mail

Re: Software RAID setup up question

2001-01-17 Thread Emmanuel Seyman
sure if this is standard procedure but I created the same partitions on hdb as on hda and then joined each set of partitions together in mdX devices which I then gave to the install procedure to do as it saw fit. Emmanuel Seyman ___ Redhat-list ma

Re: Linux News Web Site

2001-01-18 Thread Emmanuel Seyman
ursday. http://www.lwn.net/ Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Redhat 6.2 and windows 95...

2001-02-06 Thread Emmanuel Seyman
he 2.2.14 kernel for rescue, /boot would have been *way* bigger than 3M. I'ld go with 16M, myself. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: AMD Althon and Duron !!

2001-02-08 Thread Emmanuel Seyman
On Wed, Feb 07, 2001 at 09:20:33PM -0700, Drew Hunt a ecrit: > > It was posted a couple months ago. > Attached is the message with the line you need. > > > 'x68_serial_nr=1' to Lilo for this to be desactivated. That should be 'x86_serial_nr=1' (my

Problem with fork

2001-02-08 Thread Emmanuel Seyman
s the first time I've seen something like this and I'm a bit lost about where to start fixing it. This is a PC with Apache, MySQL and PHP like most of the Linux servers here. The only distinctive thing about this PC is that it's in RAID 1. Anybody have an id

Kernel message

2001-03-06 Thread Emmanuel Seyman
Hi, all. Could somebody please tell me what this means? I get it every once in a while in /var/log/messages. Actually, let me correct that: Could somebody please tell me this isn't important? Emmanuel ___ Redhat-list mailing list [EMAIL PROTECTED] h

Re: Kernel message

2001-03-06 Thread Emmanuel Seyman
On Tue, Mar 06, 2001 at 10:41:55AM +0100, Emmanuel Seyman a ecrit: > Hi, all. > > Could somebody please tell me what this means? I get it every once > in a while in /var/log/messages. Might help if I actually sent the message, wouldn't it? I get this every 12 minutes: Ma

Re: Logrotate and dates..

2001-03-06 Thread Emmanuel Seyman
On Tue, Mar 06, 2001 at 08:18:29AM -0500, Duncan Hill a ecrit: > I'm playing with logrotate, and have run into something. Namely, the > fact that log rotate calls the older logs .1, .2, .3 etc. Is it > possible, within logrotate, to specify that these files get a date > instead? Or, can Apache

Re: Best User list?

2001-03-14 Thread Emmanuel Seyman
On Wed, Mar 14, 2001 at 07:07:59AM -0500, Mike Burger a ecrit: > > Currently, Wolverine is the beta of RH7.1. It has a 2.4.1 based kernel > and XF 4.0.2. Not sure what Nautilus is, though. Nautilus is the GNOME file manager that came out yesterday. I haven't gotten around to installing it yet b

Re: Rotating logs

2001-03-15 Thread Emmanuel Seyman
file, > and then start syslog back up? You do *not* want to do this. Trust me on this one. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Sendmail problems

2001-03-19 Thread Emmanuel Seyman
n't really what I want. Anybody know how to fix this? Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Sendmail problems

2001-03-19 Thread Emmanuel Seyman
rk but I changed DNS servers recently and the mail server went bonkers. Can't find virtualstable in the index of the Sendmail O'Reilly book. How do you use it? Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.

Re: Sendmail problems

2001-03-19 Thread Emmanuel Seyman
AME capatv.com. ; acticiel.com: mailIN CNAME moe.acticiel.com. moe IN A 195.25.109.50 FWIW, 195.25.109.50 and 195.25.109.55 are the same machine. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL

Re: Sendmail problems

2001-03-19 Thread Emmanuel Seyman
On Mon, Mar 19, 2001 at 09:40:19AM -0500, Mike Burger a ecrit: > > For redirection of addresses on virtual domains, you really should use the > virtusertable function. I know and I plan to replace this server with Postfix and clean up the config but I have too many things to do to deal with it ri

Re: Sendmail problem

2001-03-20 Thread Emmanuel Seyman
On Mon, Mar 19, 2001 at 05:03:33PM -0500, Warren Melnick a ecrit: > This one is weird: > > Whenever I send an email, sendmail gives me something like this: > Mar 19 16:50:55 www sendmail[399]: QAA00397: [EMAIL PROTECTED], > ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=esmtp, > rela

Re: How to create IDE RAID-1?

2001-03-25 Thread Emmanuel Seyman
if possible) during installation, > or even after installation. The RAID configuration is done during the installation. You'll probably find the instructions here more up to date than the ones you're currently using. http://www.redhat.com/support/man

Re: System is spamming me; rmmod -as failure

2001-03-26 Thread Emmanuel Seyman
amming but I suspect you have a bigger problem than that. What does lsmod tell you? Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: error on log rotate

2001-03-26 Thread Emmanuel Seyman
On Mon, Mar 26, 2001 at 11:45:22PM -0800, Steve Lee a ecrit: > how do i disable this? > i get this email from cron everytime. Log rotation is configured in /etc/lorotate.conf or /etc/logrotate.d/ . In your case, I'ld bet on /etc/logrotate.d/mysql or mysqld. You can move the file to somewhere els

Re: Strange behavior of RH 6.2

2001-03-30 Thread Emmanuel Seyman
Change the config files to change it. This should go in /etc/sysconfig/network, /etc/sysconfig/network-scripts/ifcfg-eth0 or, in the worst of cases, in /etc/rc.d/rc.local Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: configuring red-hat to stop responding to ping requests

2001-04-02 Thread Emmanuel Seyman
est net.ipv4.icmp_echo_ignore_all = 1 Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Please help me...

2001-04-03 Thread Emmanuel Seyman
to the crontab by editing /etc/crontab . Read the crontab man page. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

mtime in Bash

2001-04-03 Thread Emmanuel Seyman
Hey all. I'm trying to do a little shell script and I have a list of files on which I have to do an operation. I'ld like to get the mtime for each of the files but can't figure out how to do it. Can anybody help Emmanuel Seyman

Locale?

2001-04-03 Thread Emmanuel Seyman
fr_FR" to /etc/sysconfig/i18n but /etc/profile.d/lang.sh unsets LC_ALL (huh?). I can get around that by re-exporting LC_ALL at the very end of /etc/profile but this seems more like a bug than a feature to me. Am I screwing up, missing the obvious or anything else? Emman

Re: Secondary DNS.

2001-04-05 Thread Emmanuel Seyman
rate, you can shut down your primary DNS server and see if the load is transferred to the secondary. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Secondary DNS.

2001-04-06 Thread Emmanuel Seyman
d you should see if there are any errors. Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Seconday DNS

2001-04-06 Thread Emmanuel Seyman
t;db.127.0.0"; }; zone "XXX.XXX.XXX.in-addr.arpa" in { type slave; file "db.XXX.XXX.XXX"; masters { IP.of.the.master.DNS.server; }; }; # End of /etc/named.conf Replace XXX.XXX.XXX with the appropriate numbers and IP.of.the.master.DNS.server then r

Re: root remote login

2001-04-09 Thread Emmanuel Seyman
because using a highly-crypted data transmission system is illegal in certain countries. I believe using a key bigger than 128 bits is a war crime in Frnace (ie you can be convicted of treason if you're caught using it). Emmanuel Seyman ___ Redhat-

Re: minimalist installs

2001-04-10 Thread Emmanuel Seyman
On Tue, Apr 10, 2001 at 05:06:59AM -0700, Monte Milanuk a ecrit: > > First and foremost, is there a decent way to 'strip' RedHat > down to the bare minimum? There are a variety of reasons > to do so, from installing on minimal hardware i.e. a 486 > for firewall or home control projects, security

Re: Clearing /var/log/message(s)

2001-04-10 Thread Emmanuel Seyman
On Tue, Apr 10, 2001 at 09:05:30AM -0400, KANODIA, ASHOK a ecrit: > > The simplest way I think is > cat /dev/null > /var/adm/message being lazy, I usually do: > /var/log/messages :-> Emmanuel ___ Redhat-list mailing list [EMAIL PROTECTED] https://l

Re: Access restrictions to Apache

2001-04-10 Thread Emmanuel Seyman
On Tue, Apr 10, 2001 at 04:17:13PM +0200, Nathalie Boulos a ecrit: > > Is there anything else I should do? In the exact same case, I did this: ... Order deny,allow Deny from all Allow from 195.25.109. Emmanuel ___ Redhat-list ma

Re: RAID Question

2001-04-12 Thread Emmanuel Seyman
2622464 fd Linux raid autodetect /dev/sda4 4612 8755 42434565 Extended /dev/sda5 4612 5636 1049584 fd Linux raid autodetect /dev/sda6 5637 8755 3193840 fd Linux raid autodet Emmanuel Seyman __

Re: iso checksums

2001-04-20 Thread Emmanuel Seyman
-i386-disc2.iso 59f435378fb1645700731c91bc54 seawolf-i386-powertools.iso Emmanuel Seyman ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

  1   2   3   4   5   6   >