Re: ethernet not working (part 2)

2000-08-08 Thread Richard Adams

On Tue, 08 Aug 2000,  Charles E. Gelm wrote about,  Re: ethernet not working (part 2):
 On my old working kernel (2.2.13), boot messages were:
 ...
 FFreeing unused kernel memory: 32k freed.
 INIT: version 2.76 booting.
 request_module[net-pf-1] fork failed, errno 11
 NET4: Unix domain sockets 1.0 for Linux NET4.0
 ...
 
  What does the "request_module[net-pf-1] fork failed, errno 11" mean?

net-pf-1 = unix sockets. 
According to you config file you have them defined as a module, as to howto
stop the message i am at the minute at a loss, i remember having the very
same problem a while back, but i did not have any further problems from it,
AFAIK.

 
 Also in this old kernel:
  depmod -a 
 returned a ton of "Unresolved symbol..." messages. If this
 information can help you help me, I put them at
  http://gelm.net/depmod.txt
 I also put /var/log/messages at 
  http://gelm.net/messages.txt
  syslog at
 http://gelm.net/syslog.txt

The answer is in syslog, wrong modules for that kernel.

 
  modprobe ne
  can't locate module ne
 
  modprobe ne.o
  can't find module ne.o
 
 Then I edited 'Makefile's EXTRAVERSION=0
  make zImage modules modules_install install
  reboot
 Then
  depmod -a
 returned a prompt! No message.
 
  modprobe ne
  can't locate module ne
 ?
 So the new kernel behaves differently to the 'depmod -a' command,
 but I still don't have an eth0 interface.

It seems to do what it should now,  the EXTRAVERSTION saves one a lot of
trouble as you can well see.
Module ne.o will possably only find the card IF you tell modprobe where to
attach the card, in /etc/modules.conf

The error is "Cant find" module ne, what happens when you give the full
path to modprobe, ?
Another thing to try is mv modules.conf to another name and create a new
one with only the following.

alias eth0 ne
options ne io=0x300
Change 0x300 for the cards address, the =irqX should not be required altho'
it is an option.
options ne io=0x300 irq=11

I have a ne2000 clone, it needs only the io address to be given.

Another problem which can cause havoc is having another kernel ethernet
driver compiled INTO the kernel or some hardware support which uses the same
io address.

My ne2000 card will not work when i install a distribution kernel from
slackware, i can only suspect what i said above to be the problem, however
after compiling a new kernel the card is found no problem.


 :-(
 Chuck

-- 
Regards Richard
[EMAIL PROTECTED]
http://people.zeelandnet.nl/pa3gcu/


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: ethernet not working (part 2)

2000-08-08 Thread ksemat


I had a problem with an ne that did not work until I specified io=0x300
irq=5 and then it worked like a charm otherwise It had consistently
refused to see the card. Is your card ISA or PCI? If it is PCI I recommend
you use irq=10

 Noah
[EMAIL PROTECTED]
 



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Netscrape

2000-08-08 Thread cr

I know this is only halfway a Linux techie question, but can anyone direct me
to a site where I can find some good info on using Netscape?   (And not
Netscrape's own gotta-be-on-line-to-use-it  'Help' system which is as useless
as a Windoze Help file  :(

(I want a way to clear the cache so I can be sure it's downloading the
latest version of a web page and not just recycling the one I DL'd two days
ago).

((The sooner Opera finish their Linux port the happier I will be..))

Chris

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: Two default routes?

2000-08-08 Thread Bogdan Taru



Hi, Jos,

  The problem is that I don't do dial-up. My two connections are permanent
(leased line and cable), so I need to use both of them simultaneous. Any
ideas welcomed! 

bogdan

On Mon, 7 Aug 2000, Jos Lemmerling wrote:

 On Mon, 7 Aug 2000, Bogdan Taru wrote:
 
  
  Hello everyone,
  
   Gotta question: I've got a machine which is connected to 2 ISPs. So, what
  can I do in order to use both of them? I've tryied two default gateways,
  but it always uses the last inserted. I've tryied to use 'routed', but
  something seems to be missing...
   Any suggestions?
  
  bogdan
  
 
 On my machine i've three providers working 'together'; in my ip-up script
 the correct route is added, and in ip-down the route is deleted again.
 
 You may have to use sudo or something (i needed it to run the command 
 'route del default').
 
 
 Greetz Jos Lemmerling
 
 
 
 -
 To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
 the body of a message to [EMAIL PROTECTED]
 Please read the FAQ at http://www.linux-learn.org/faqs
 


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: broken C++ compiler

2000-08-08 Thread Richard Spencer

OK I can do that; pardon my ignorance--I don't usually write scripts, 
although I can follow directions :-)

Here's what happened: 

$ tr -d "\r" mailfile hws
$ chmod a+x hws

Script started on Tue Aug  8 07:31:08 2000
[rks@localhost rks]$ ./hws
#include iostream.h
  int main(void){ cout"Hello World"endl; }
hw.cxx:1: iostream.h: No such file or directory
./hws: ./hw: No such file or directory
ldd: ./hw: No such file or directory
[rks@localhost rks]$ exit
exit

Script done on Tue Aug  8 07:31:20 2000

Wow! I've never run a script like this before.
Now I can see what you often do with the scripts.
I actually went into GUI to do this, but I didn't have
to, did I? Wow, that's terrific.
 
So does this tell you anything?

* [EMAIL PROTECTED] [EMAIL PROTECTED] [000808 07:16]:
 I thought I sent you a script that showed how.  Never mind.  Just cut
 this little script out of the mail, call it mailfile, fromdos it just in
 case:
 tr -d "\r" mailfile hws
 
 make it executable
 
 chmod a+x hws
 
 and run it.
 
 script blog
 ./hws
 exit
 
 in file blog you will have a record of what the script did.
 
 #!/bin/sh
 cat hw.cxx hwend
 #include iostream.h
   int main(void){ cout"Hello World"endl; }
 hwend
 cat hw.cxx
 g++ -o hw hw.cxx
 ./hw
 ldd hw
 exit
 
  # ldd /usr/lib/libstdc++-3-libc6.1-2-2.10.0.so
  libm.so.6 = /lib/libm.so.6 (0x4004e000)
  libc.so.6 = /lib/libc.so.6 (0x4006a000)
  /lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x8000)
 
 That looks very encouraging.  I wonder what could be wrong?
  --
  Running Redhat 6.0 with some upgraded packages.
 
   Richard Spencer  "Why Not" is a slogan
  Sao Paulo, Brazilfor an interesting life.
   [EMAIL PROTECTED]-- Mason Cooley
 
 Lawson
 
 
 A stitch in time saves embarassment.  - Proberbs of Hell revisited
 
 
 
 
 
 YOU'RE PAYING TOO MUCH FOR THE INTERNET!
 Juno now offers FREE Internet Access!
 Try it today - there's no risk!  For your FREE software, visit:
 http://dl.www.juno.com/get/tagj.
---cut here---

-- 
Running Redhat 6.0 with some upgraded packages.

 Richard Spencer  "Why Not" is a slogan
Sao Paulo, Brazilfor an interesting life.
 [EMAIL PROTECTED]-- Mason Cooley

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



User CGI Problems

2000-08-08 Thread Areg

HAllo


1.I'm using Apache 1.3.x,  I tried to place a script not in cgi-bin,
but in user's public_html directory. When i try to run that script
from user's web page, Apache show's nothing more, than script itself
(it's more awful when script is binary file).
Is there any way to tell Apache to run user scripts normally?

2.And when I try to execute CGI using POST method, Apache responds
with error, saying 'Using POST method is not allowed'. How can I
prevent this error?



-- 
Best regards,
 Areg mailto:[EMAIL PROTECTED]



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: /sbin/lilo - segmentation fault

2000-08-08 Thread brownh

 thought it might be a bogus lilo.  script is a handy way to capture a
 console session to a file, and I wanted to remind you of that, too.
 Or you could have said, lilo -v file_to_include_in_the_mail
 (bash only, other shells like "file 21", which bash also likes).
 That way you don't make typos.  :-)

Problem was that the troublesome machine is elsewhere, and not on
line, so pasting impossible unless I happened to remember to bring
along a diskette. As it was, I scribbled notes with a pencil on scrap
paper, so the problem was more illegible handwriting than a type. ;-( 

 I don't know how to make lilo segment fault, so I don't know how to fix
 it.  Could you be dead flat out of space in /boot?  I would expect that
 to get error 28, but maybe not.  df to see.

I can't remember the space I gave /boot, and adding the various images
might have made it crowded. I'll follow your suggestion. This machine
was a cheap box with Windows on it, and I wondered if there's trouble
in the MBR due to contamination by the previous resident. Yet I can
install the old lilo.conf, and so perhaps not.

Haines 

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: Netscrape

2000-08-08 Thread Richard Spencer

What version of netscape did you say you were running?
You didn't say, eh? I'm running 4.72 for Linux, and can tell you 
what to do in version 4.

I'll bet you've got as far as:
'edit' -- 'preferences' -- 'advanced'
but didn't know that you could click 
  on the icon on the left side of the word
  'advanced' for more options. 

Click on 'cache' and then click on the radio box below
'document in cache is compared to document on network...'
called 'every time.'

* cr [EMAIL PROTECTED] [000808 07:16]:
 I know this is only halfway a Linux techie question, but can anyone direct me
 to a site where I can find some good info on using Netscape?   (And not
 Netscrape's own gotta-be-on-line-to-use-it  'Help' system which is as useless
 as a Windoze Help file  :(
 
 (I want a way to clear the cache so I can be sure it's downloading the
 latest version of a web page and not just recycling the one I DL'd two days
 ago).
 
 ((The sooner Opera finish their Linux port the happier I will be..))
 
 Chris
 
 -
 To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
 the body of a message to [EMAIL PROTECTED]
 Please read the FAQ at http://www.linux-learn.org/faqs
---cut here---

-- 
 Richard Spencer   "Why Not" is a slogan for an 
São Paulo, Brazilinteresting life. -- Mason Cooley

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



WU-FTPD RedHat 6.2

2000-08-08 Thread Linux Maillist user



Does anyone know if the current wu-ftpd package
(wu-ftpd-2.6.0-14.6x) doesn't suffer from the
SITE bug that is reviewed at www.wu-ftpd.org ?

They have version 2.6.1 but there isn't any RedHat
equivalent, is there?

--Jesse


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: ethernet not working (part 2)

2000-08-08 Thread Richard Adams

On Tue, 08 Aug 2000,  [EMAIL PROTECTED] wrote about,  Re: ethernet not working 
(part 2):

 refused to see the card. Is your card ISA or PCI? If it is PCI I recommend
 you use irq=10

Possably a good point brought about by a irrelavant answer.

1) The good point is, the origanal question asker said he is using ne.o
which if for "ISA cards".
2) AFAIK no one even asked if it was a ISA card or PCI. Not even me.
3) NE2000 PCI cards use ne2k-pci.o

Further more PCI cards can use any IRQ providing the BIOS is set for
PCI/PNP. Even use IRQ's which are already in use by other PCI cards.
An example is my over crowded machine IRQ 9

  9: 301439  XT-PIC  aic7xxx, es1371

I have even seen 3 cards on one IRQ here in my machine.

The most important thing with any ISA card is to resurve an IRQ in the
BIOS, set (for example) IRQ 10 to PNP only, then make sure your ethernet
card gets loaded BEFORE any other IRQ grabbing ISA card.

We all have IRQ problems from time to time, my NE2000 ISA card will not
work on a distibution slackware kernel becuase there MUST be another driver
compiled into the kernel which then resurves IRQ10 (in my case).

Like i said, i have to recompile a kernel with ne.o support before i can
use slackware with my ne card, however this could be an oversight on my
part.
I have a standard card which is set to io=0x300 like most of its friends
or so i have been told.

  Noah
 [EMAIL PROTECTED]
-- 
Regards Richard
[EMAIL PROTECTED]
http://people.zeelandnet.nl/pa3gcu/


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: Netscrape

2000-08-08 Thread Renaud OLGIATI

On Mon, 07 Aug 2000, you wrote:
 I know this is only halfway a Linux techie question, but can anyone direct me
 to a site where I can find some good info on using Netscape?   (And not
 Netscrape's own gotta-be-on-line-to-use-it  'Help' system which is as useless
 as a Windoze Help file  :(
 
 (I want a way to clear the cache so I can be sure it's downloading the
 latest version of a web page and not just recycling the one I DL'd two days
 ago).

In Netscape,  Edit == Prederences == Advanced == Cache == Clear memory
cache and clear disk cache

Cheers,

Ron the Frog, on the banks of the Paraguay River

 -- 
 
   I refuse to have a battle of wits with an unarmed person.
 
  ---  http://personales.conexion.com.py/~rolgiati  ---
 

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: WU-FTPD RedHat 6.2

2000-08-08 Thread Jim Roland

RedHat, just like any other distribution is a collection of tools and
software, along with some customizations to scripts, etc.  You can always
download the latest version in rpm format and install it, just make sure to
read the README or INSTALL files included with any of the rpms or tar
files, to make sure you don't need extra stuff.  RedHat is fairly stable,
so it's doubtful you will need anything extra, but always read the READMEs.

Jim



On Tue, 8 Aug 2000, Linux Maillist user wrote:

 Date: Tue, 8 Aug 2000 17:24:51 +0200 (CEST)
 From: Linux Maillist user [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: WU-FTPD  RedHat 6.2
 
 
 
 Does anyone know if the current wu-ftpd package
 (wu-ftpd-2.6.0-14.6x) doesn't suffer from the
 SITE bug that is reviewed at www.wu-ftpd.org ?
 
 They have version 2.6.1 but there isn't any RedHat
 equivalent, is there?
 
 --Jesse
 
 
 -
 To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
 the body of a message to [EMAIL PROTECTED]
 Please read the FAQ at http://www.linux-learn.org/faqs
 


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: Two default routes?

2000-08-08 Thread Jack Barnett


I don't think you can have to default routes (atleast this is the way I
understand it, I could be wrong.) but you can set more then 1 static routes.
For example say

eth0 - 192.168.17.2
eth1 - 10.10.10.2

(I know this are bunk ip's, just for example)

everything that goes to 192.168.17.** should be faster if routed out though
eth0, so we can put that route in:

route add -net 192.168.17.0 gw 192.168.17.2 eth0

(check sytnax, can't remember to well from memory)

and everything that goes to 10.10.10.** should be faster if routed out
though eth1, so we could put that route in:

route add -net 10.10.10.0 gw 10.10.10.2 eth1

Say slashdot is 4 hops from eth1 and 102 from eth0, so it should be faster
if we route all packets to/from slashdot though eth1

route add -net 64.28.67.0 gw 10.10.10.2 eth1

You could add static routes like this.

Any one knows if this works, it sound logical right?

Jack


 Hi, Jos,

   The problem is that I don't do dial-up. My two connections are permanent
 (leased line and cable), so I need to use both of them simultaneous. Any
 ideas welcomed!

 bogdan

 On Mon, 7 Aug 2000, Jos Lemmerling wrote:

  On Mon, 7 Aug 2000, Bogdan Taru wrote:
 
  
   Hello everyone,
  
Gotta question: I've got a machine which is connected to 2 ISPs. So,
what
   can I do in order to use both of them? I've tryied two default
gateways,
   but it always uses the last inserted. I've tryied to use 'routed', but
   something seems to be missing...
Any suggestions?
  
   bogdan
  
 
  On my machine i've three providers working 'together'; in my ip-up
script
  the correct route is added, and in ip-down the route is deleted again.
 
  You may have to use sudo or something (i needed it to run the command
  'route del default').
 
 
  Greetz Jos Lemmerling
 
 
 



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: ethernet not working (part 2a)

2000-08-08 Thread Richard Adams

On Tue, 08 Aug 2000,  Chuck Gelm wrote about,  Re: ethernet not working (part 2a):
 Howdy, All:
 Thanks.
  I'll be back at this system this evening, but here are some thoughts
 on the tips I've received overnight.  

I am beginning to think you have the same problem i have with my NE2000
card under slackware's distribution kernel, it JUST WONT work.

I "always need" to compile my own kernel.
I've had this with slackware 7 and recently with slackware 7.1
both did not work.

I must admit i missed that you were using slackware.


 
 #Definitions
 Apparently the computer system is not an issue.
 Slackware 7.0 install, kernel 2.2.13.
 NIC=Macromate MN220PTC in NE2000 mode, io=0x2a0, irq=10, ISA 
 Kernel make config: http://gelm.net/config.txt
 modules.conf (IIRC)=
 #
 alias net-pf-4 off
 alias net-pf-5 off
 alias ne io=0x2a0 irq=10 # This existing configuration works with
 windows98
 #
 messages: http://gelm.net/messages.txt
 syslog: http://gelm.net/syslog.txt
 
 Problem:
  modprobe ne
 can't locate module ne
 ...
 RRichard Adams wrote:
 snipped to this synopsis
  Give full path to ne.o to modprobe.
  Try a modules.conf with a single line 'alias ne io=0x2a0'
 snipped to end
 Thanks, Richard  Noah.
-- 
Regards Richard
[EMAIL PROTECTED]
http://people.zeelandnet.nl/pa3gcu/


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: WU-FTPD RedHat 6.2

2000-08-08 Thread Richard Adams

On Tue, 08 Aug 2000,  Linux Maillist user wrote about,  WU-FTPD  RedHat 6.2:
 Does anyone know if the current wu-ftpd package
 (wu-ftpd-2.6.0-14.6x) doesn't suffer from the
 SITE bug that is reviewed at www.wu-ftpd.org ?
 
 They have version 2.6.1 but there isn't any RedHat
 equivalent, is there?

Slackware took steps to solve this problem, it arose just after slack 7,1
came out.

I have a mail from the slackware team with HOWTO upgrade, which system you
use is not really of any importance, you can use the slackware upgrade via
tar to install the new version, it should not be too much trouble.

If you want the mail from slackware send me a personal i will forward it to
you.


 
 --Jesse

-- 
Regards Richard
[EMAIL PROTECTED]
http://people.zeelandnet.nl/pa3gcu/


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: ethernet not working (part 2a)

2000-08-08 Thread Chuck Gelm

Howdy, All:
Thanks.
 I'll be back at this system this evening, but here are some thoughts
on the tips I've received overnight.  

#Definitions
Apparently the computer system is not an issue.
Slackware 7.0 install, kernel 2.2.13.
NIC=Macromate MN220PTC in NE2000 mode, io=0x2a0, irq=10, ISA 
Kernel make config: http://gelm.net/config.txt
modules.conf (IIRC)=
#
alias net-pf-4 off
alias net-pf-5 off
alias ne io=0x2a0 irq=10 # This existing configuration works with
windows98
#
messages: http://gelm.net/messages.txt
syslog: http://gelm.net/syslog.txt

Problem:
 modprobe ne
can't locate module ne
...
Richard Adams wrote:
snipped to this synopsis
 Give full path to ne.o to modprobe.
 Try a modules.conf with a single line 'alias ne io=0x2a0'
snipped to end
Thanks, Richard  Noah.

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



URGENT: Re: Two default routes?

2000-08-08 Thread Bogdan Taru



Hi, Jack,
 
 Yes, you're right... I can have more than one static route... but there
are two drawbacks in what you've said (I hope I understood right
everything that you wrote me):

1. I'm not going to build static routes for every network in the Internet.
 (the two gateways are ISPs, and the goal is that my server would
choose the best route to the destination IP address -- any destination)
2. If one interface goes down (the interface 'closest' to slashdot, in
your example), it should automatically be labeled 'very expensive' and not
be used for anything. All the traffic should be switched to the other
interface.
 
 I know that this is done by some protocols like RIP or OSPF. And I also
know there are some pieces of software out there which claim to have RIP
and OSPF included ('zebra' is one of them). But I've got lots of trouble
installing 'zebra'. So any help would be really appreciated... this is
getting urgent, and that is why I changed the topic. 

Thank you,
bogdan

On Tue, 8 Aug 2000, Jack Barnett wrote:

 
 I don't think you can have to default routes (atleast this is the way I
 understand it, I could be wrong.) but you can set more then 1 static routes.
 For example say
 
 eth0 - 192.168.17.2
 eth1 - 10.10.10.2
 
 (I know this are bunk ip's, just for example)
 
 everything that goes to 192.168.17.** should be faster if routed out though
 eth0, so we can put that route in:
 
 route add -net 192.168.17.0 gw 192.168.17.2 eth0
 
 (check sytnax, can't remember to well from memory)
 
 and everything that goes to 10.10.10.** should be faster if routed out
 though eth1, so we could put that route in:
 
 route add -net 10.10.10.0 gw 10.10.10.2 eth1
 
 Say slashdot is 4 hops from eth1 and 102 from eth0, so it should be faster
 if we route all packets to/from slashdot though eth1
 
 route add -net 64.28.67.0 gw 10.10.10.2 eth1
 
 You could add static routes like this.
 
 Any one knows if this works, it sound logical right?
 
 Jack
 
 
  Hi, Jos,
 
The problem is that I don't do dial-up. My two connections are permanent
  (leased line and cable), so I need to use both of them simultaneous. Any
  ideas welcomed!
 
  bogdan
 
  On Mon, 7 Aug 2000, Jos Lemmerling wrote:
 
   On Mon, 7 Aug 2000, Bogdan Taru wrote:
  
   
Hello everyone,
   
 Gotta question: I've got a machine which is connected to 2 ISPs. So,
 what
can I do in order to use both of them? I've tryied two default
 gateways,
but it always uses the last inserted. I've tryied to use 'routed', but
something seems to be missing...
 Any suggestions?
   
bogdan
   
  
   On my machine i've three providers working 'together'; in my ip-up
 script
   the correct route is added, and in ip-down the route is deleted again.
  
   You may have to use sudo or something (i needed it to run the command
   'route del default').
  
  
   Greetz Jos Lemmerling
  
  
  
 
 


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: WU-FTPD RedHat 6.2

2000-08-08 Thread Ray Olszewski

At 10:51 AM 8/8/00 -0500, Jim Roland wrote:
RedHat, just like any other distribution is a collection of tools and
software, along with some customizations to scripts, etc.  You can always
download the latest version in rpm format and install it, just make sure to
read the README or INSTALL files included with any of the rpms or tar
files, to make sure you don't need extra stuff.  RedHat is fairly stable,
so it's doubtful you will need anything extra, but always read the READMEs.

Jim --

This isn't *quite* correct. Like any (competently done) Linux distribution,
RH regularly releases updates to specific packages that reflect, mostly,
security fixes. Just downloading the "latest version" won't get these; you
have do download them from the "updates" directory.

For example, RH 6.2 provides the 2.6.0-3 version of wu-ftpd in the
distribution directory, such as

ftp://metalab.unc.edu/pub/Linux/distributions/redhat/redhat-6.2/i386/RedHat/
RPMS/

OTOH, it provides the 2.6.0-14.6 update of wu-ftpd (dated June 23) in the
"updates" directory, such as

ftp://metalab.unc.edu/pub/Linux/distributions/redhat/updates/6.2/i386/

Going back to Jesse's original question, it is clear that he has been doing
his homework here, since he has the current RH update version. And I too
find that a 2.6.1 update isn't yet available from RH. Nor do I know the
answer to his actual question, whether the 2.6.0-14.6 version is vulnerable
to the latest wu-ftpd bug. 

If the wu-ftld site doesn't tell you, I'd try to find the bugtraq archives
and search them.


--
"Never tell me the odds!"---
Ray Olszewski-- Han Solo
Palo Alto, CA[EMAIL PROTECTED]



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: URGENT: Re: Two default routes?

2000-08-08 Thread Jack Barnett


Have you looked into the routed program?




 Hi, Jack,

  Yes, you're right... I can have more than one static route... but there
 are two drawbacks in what you've said (I hope I understood right
 everything that you wrote me):

 1. I'm not going to build static routes for every network in the Internet.
  (the two gateways are ISPs, and the goal is that my server would
 choose the best route to the destination IP address -- any destination)
 2. If one interface goes down (the interface 'closest' to slashdot, in
 your example), it should automatically be labeled 'very expensive' and not
 be used for anything. All the traffic should be switched to the other
 interface.

  I know that this is done by some protocols like RIP or OSPF. And I also
 know there are some pieces of software out there which claim to have RIP
 and OSPF included ('zebra' is one of them). But I've got lots of trouble
 installing 'zebra'. So any help would be really appreciated... this is
 getting urgent, and that is why I changed the topic.

 Thank you,
 bogdan

 On Tue, 8 Aug 2000, Jack Barnett wrote:

 
  I don't think you can have to default routes (atleast this is the way I
  understand it, I could be wrong.) but you can set more then 1 static
routes.
  For example say
 
  eth0 - 192.168.17.2
  eth1 - 10.10.10.2
 
  (I know this are bunk ip's, just for example)
 
  everything that goes to 192.168.17.** should be faster if routed out
though
  eth0, so we can put that route in:
 
  route add -net 192.168.17.0 gw 192.168.17.2 eth0
 
  (check sytnax, can't remember to well from memory)
 
  and everything that goes to 10.10.10.** should be faster if routed out
  though eth1, so we could put that route in:
 
  route add -net 10.10.10.0 gw 10.10.10.2 eth1
 
  Say slashdot is 4 hops from eth1 and 102 from eth0, so it should be
faster
  if we route all packets to/from slashdot though eth1
 
  route add -net 64.28.67.0 gw 10.10.10.2 eth1
 
  You could add static routes like this.
 
  Any one knows if this works, it sound logical right?
 
  Jack
 
  
   Hi, Jos,
  
 The problem is that I don't do dial-up. My two connections are
permanent
   (leased line and cable), so I need to use both of them simultaneous.
Any
   ideas welcomed!
  
   bogdan
  
   On Mon, 7 Aug 2000, Jos Lemmerling wrote:
  
On Mon, 7 Aug 2000, Bogdan Taru wrote:
   

 Hello everyone,

  Gotta question: I've got a machine which is connected to 2 ISPs.
So,
  what
 can I do in order to use both of them? I've tryied two default
  gateways,
 but it always uses the last inserted. I've tryied to use 'routed',
but
 something seems to be missing...
  Any suggestions?

 bogdan

   
On my machine i've three providers working 'together'; in my ip-up
  script
the correct route is added, and in ip-down the route is deleted
again.
   
You may have to use sudo or something (i needed it to run the
command
'route del default').
   
   
Greetz Jos Lemmerling
   
   
   
 
 




-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: URGENT: Re: Two default routes?

2000-08-08 Thread Bogdan Taru



Hi, Jack,

 Yup, I've checked out the 'routed' daemon, but that one is designed only
for small networks... Trying to run it on my server resulted in about 100
routes added to the kernel routing table just about 3 minutes.. :) I also
checked out 'gated', but couldn't get it installed on my machine... :(

bogdan

On Tue, 8 Aug 2000, Jack Barnett wrote:

 
 Have you looked into the routed program?
 
 
 
 
  Hi, Jack,
 
   Yes, you're right... I can have more than one static route... but there
  are two drawbacks in what you've said (I hope I understood right
  everything that you wrote me):
 
  1. I'm not going to build static routes for every network in the Internet.
   (the two gateways are ISPs, and the goal is that my server would
  choose the best route to the destination IP address -- any destination)
  2. If one interface goes down (the interface 'closest' to slashdot, in
  your example), it should automatically be labeled 'very expensive' and not
  be used for anything. All the traffic should be switched to the other
  interface.
 
   I know that this is done by some protocols like RIP or OSPF. And I also
  know there are some pieces of software out there which claim to have RIP
  and OSPF included ('zebra' is one of them). But I've got lots of trouble
  installing 'zebra'. So any help would be really appreciated... this is
  getting urgent, and that is why I changed the topic.
 
  Thank you,
  bogdan
 
  On Tue, 8 Aug 2000, Jack Barnett wrote:
 
  
   I don't think you can have to default routes (atleast this is the way I
   understand it, I could be wrong.) but you can set more then 1 static
 routes.
   For example say
  
   eth0 - 192.168.17.2
   eth1 - 10.10.10.2
  
   (I know this are bunk ip's, just for example)
  
   everything that goes to 192.168.17.** should be faster if routed out
 though
   eth0, so we can put that route in:
  
   route add -net 192.168.17.0 gw 192.168.17.2 eth0
  
   (check sytnax, can't remember to well from memory)
  
   and everything that goes to 10.10.10.** should be faster if routed out
   though eth1, so we could put that route in:
  
   route add -net 10.10.10.0 gw 10.10.10.2 eth1
  
   Say slashdot is 4 hops from eth1 and 102 from eth0, so it should be
 faster
   if we route all packets to/from slashdot though eth1
  
   route add -net 64.28.67.0 gw 10.10.10.2 eth1
  
   You could add static routes like this.
  
   Any one knows if this works, it sound logical right?
  
   Jack
  
   
Hi, Jos,
   
  The problem is that I don't do dial-up. My two connections are
 permanent
(leased line and cable), so I need to use both of them simultaneous.
 Any
ideas welcomed!
   
bogdan
   
On Mon, 7 Aug 2000, Jos Lemmerling wrote:
   
 On Mon, 7 Aug 2000, Bogdan Taru wrote:

 
  Hello everyone,
 
   Gotta question: I've got a machine which is connected to 2 ISPs.
 So,
   what
  can I do in order to use both of them? I've tryied two default
   gateways,
  but it always uses the last inserted. I've tryied to use 'routed',
 but
  something seems to be missing...
   Any suggestions?
 
  bogdan
 

 On my machine i've three providers working 'together'; in my ip-up
   script
 the correct route is added, and in ip-down the route is deleted
 again.

 You may have to use sudo or something (i needed it to run the
 command
 'route del default').


 Greetz Jos Lemmerling



  
  
 
 
 
 
 -
 To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
 the body of a message to [EMAIL PROTECTED]
 Please read the FAQ at http://www.linux-learn.org/faqs
 


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: Two default routes?

2000-08-08 Thread Jack Barnett




 but what is the way to use two ISPs at the same time? if there is one
 default route, then everytime the data is sent through that route, and if
we
 set a specific route, then for every site we have to set a specific route
 for the site we want to access?

I seriously don't know man. Since no one else is replying, I will throw out
some ideas, but no guarnette that they are right or even phyiscally
possiable.

There is something called "metric" in the default routing table.  Basically
you can set more than 1 gw per network and it will try the gw with the
lowest metric first (IIRC).  For example (don't hold me to correct sytnax
here, doing it from memory)

route add default gw 192.168.17.2 metric 1
route add default gw 10.102.18.56 metric 2

This way if you try to access anything that doesn't have a static route (ie.
default route) it will first try to route out though the 192.168.17.2 gw, if
that doesn't work it will then try 10.102.18.56 gw.

But IIRC this isn't load balancing, it is more of a "fail safe" function.

If you want to send out both cable modems at once, you will have do some
really fancy, something over my head.  You might want to try searching for:

multihome
multihomed
esl
loadblancing

Also you might want to try and find a OSPF (Open Shortest Path First) daemon
that would dynamically build a routing table for you on the fly.




 --Original Message--
 From: "Jack Barnett" [EMAIL PROTECTED]
 To: Bogdan Taru [EMAIL PROTECTED], Jos Lemmerling [EMAIL PROTECTED]
 Sent: August 8, 2000 3:50:56 PM GMT
 Subject: Re: Two default routes?



 I don't think you can have to default routes (atleast this is the way I
 understand it, I could be wrong.) but you can set more then 1 static
routes.
 For example say

 eth0 - 192.168.17.2
 eth1 - 10.10.10.2

 (I know this are bunk ip's, just for example)

 everything that goes to 192.168.17.** should be faster if routed out
though
 eth0, so we can put that route in:

 route add -net 192.168.17.0 gw 192.168.17.2 eth0

 (check sytnax, can't remember to well from memory)

 and everything that goes to 10.10.10.** should be faster if routed out
 though eth1, so we could put that route in:

 route add -net 10.10.10.0 gw 10.10.10.2 eth1

 Say slashdot is 4 hops from eth1 and 102 from eth0, so it should be faster
 if we route all packets to/from slashdot though eth1

 route add -net 64.28.67.0 gw 10.10.10.2 eth1

 You could add static routes like this.

 Any one knows if this works, it sound logical right?

 Jack

 
  Hi, Jos,
 
The problem is that I don't do dial-up. My two connections are
permanent
  (leased line and cable), so I need to use both of them simultaneous. Any
  ideas welcomed!
 
  bogdan
 
  On Mon, 7 Aug 2000, Jos Lemmerling wrote:
 
   On Mon, 7 Aug 2000, Bogdan Taru wrote:
  
   
Hello everyone,
   
 Gotta question: I've got a machine which is connected to 2 ISPs.
So,
 what
can I do in order to use both of them? I've tryied two default
 gateways,
but it always uses the last inserted. I've tryied to use 'routed',
but
something seems to be missing...
 Any suggestions?
   
bogdan
   
  
   On my machine i've three providers working 'together'; in my ip-up
 script
   the correct route is added, and in ip-down the route is deleted again.
  
   You may have to use sudo or something (i needed it to run the command
   'route del default').
  
  
   Greetz Jos Lemmerling
  
  
  



 -
 To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
 the body of a message to [EMAIL PROTECTED]
 Please read the FAQ at http://www.linux-learn.org/faqs


 ---
 FREE! The World's Best Email Address @email.com
 Reserve your name now at http://www.email.com





-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Fetchmail working: sendmail next?

2000-08-08 Thread davidturetsky



OK, with a lot of help from the list, I have 
fetchmail working, at least from a non-msn ISP. Now I need something to handle 
outgoing bulk mail, to a list of addressees in a file

I see and hear about lots of packages: exim, 
sendmail, zmailer, majordomo, etc

I'd be grateful to hear views about the relative 
merits of these and any others that it might make sense to consider

David


Linksys 100LNETX V 4.1 problem.

2000-08-08 Thread Dances with Turtles

Well, I resolved my problem with my new Linksys 100LNETX V 4.1 nic.
I returned it and bought a Netgear FA311 and with the driver that
they provided, had it up and running in 10 minutes.

In conclusion:
My old 100LNETX (169 chip) works great.
Linksys's support, while didn't solve the problem, had a really human
being to talk to
and spent time with me.  I tested Netgear's support (email only) and
got a lame
reply.  As a matter of fact, their support told me to use the tulip.c
driver
which is NO LONGER CORRECT for the FA311/FA312 cards.  He didn't even
know
that they now provide their own driver on the installation disk.
The Netgear nic came with a diskette (which was bad) which was for a
FA312 card. The box
was marked FA312, but the card was the FA311.  A fun time trying to
get Windoze to
install the drivers.

So, nothing has really changed when it comes to vendors providing
knowledge and support.  Thank
goodness for people out there in the user community like Ray Olszewski
and others who spent their
time helping out us fools, err, newbies. :)

Funny thing, after all of the ideas that people sent me, and my attempts
to get the network card
working, I couldn't reboot my machine as I had messed up my BIOS
settings, was trying to boot from
the wrong drive (IDE1) after installing a new copy to a second drive,
etc etc etc.  Well, at least
software RAID was easy to set up.

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Network Error

2000-08-08 Thread Dan de Haan

I just set up a Mandrake 7.1 computer.  When I try to load the network
driver (rtl8139) I get the following error:
SIOCSIFFLAGS: Resource Temporarily unavailable.  What does this mean?

Basic info about the computer

PIII-667 on ASUS CUV4X (Via chipset)
RealTech 8139A card
Driver rtl8139.c v.1.07

-Dan de Haan

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



enable CGI scripts

2000-08-08 Thread root

i have got apache_1.3.12 working on my machine, but if i try to open any
cgi files in navigator all i see is the code.  here is what is in my
httpd.conf file:

ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"

#
# "/home/httpd/cgi-bin" should be changed to whatever your ScriptAliased

# CGI directory exists, if you have that configured.
#
Directory "/home/httpd/cgi-bin"
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
/Directory

is that all that has to be done?  when i try to view the cgi file in
netscape i go File - Open Page...- Choose File  and select the .cgi
file i want to see.  then click the 'View in Navigator' button.  Is this
wrong?  is there some other way to view .cgi files?


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: broken C++ compiler (long)

2000-08-08 Thread Richard Spencer

Well, oops (about the missing pipe) 

I still wonder whether I can fix this rpm *%@^*
I do have slackware 7.0, should I avoid using it with my Redhat?
I mean, the binaries are dist specific, right?

I'll just have to install slackware tomorrow  :-)
or check out the tarball for gcc-2.95.2 which I've got.

You don't suppose I should install gcc-c++, gcc-objc, 
gcc-chill, and/or gcc-g77, do you?

* [EMAIL PROTECTED] [EMAIL PROTECTED] [000808 22:23]:
 
 I don't know anymore what RH is doing with compilers.  That rpm is
 gcc-2.95.1 with the fortran and c++ support ripped out, leaving a good
 gnu plain c compiler.  All I can say is c++, objc, fortran, and chill
 are in slackware's gcc-2.95.x.tgz.
 
 Brazil:
 cce.ufpr.br:/pub/linux/slackware-3.2 (updated weekly)
 farofa.ime.usp.br: /pub/linux/slackware
 ftp.pop-mg.rnp.br:/pub/mirror/ftp.cdrom.com/linux/slackware-3.2/ 
 (bi-weekly)
 
 look in contrib, or in [release]/slakware/d1
 

I'll have to check these out; I will look at my Slackware CDROM
first.

 
 drwxr-xr-x root/root 0 1999-09-19 19:39 usr/man/
 drwxr-xr-x root/root 0 1999-09-19 19:39 usr/man/man1/
 -rw-r--r-- root/root 18473 1999-09-19 19:39 usr/man/man1/g++.1
 -rw-r--r-- root/root  9400 1999-09-19 19:39 usr/man/man1/g77.1
 -rw-r--r-- root/root109321 1999-09-19 19:39 usr/man/man1/gcc.1
 -rw-r--r-- root/root 15716 1999-09-19 19:39 usr/man/man1/cccp.1
 
 

Do you mean I need to check man g++, man g77 etc., on my setup?

 
 I think you missed this
  
   rpm -qlp * |grep iostream
 
 and this---^ pipe.  I am a bit sloppy working with rpm's:  I don't
 have many, so I can refer to them as * without making too much of a
 mess.
 I've just learned fairly recently how to work them, after 3 years of
 scanning through man bash.

oops, I'll try again:

Script started on Tue Aug  8 22:40:38 2000
[root@localhost 2.95.1]# pwd
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1
[root@localhost 2.95.1]# rpm -qlp * |grep iostream
SYSCALLS.c.X does not appear to be a RPM package
query of SYSCALLS.c.X failed
cc1 does not appear to be a RPM package
query of cc1 failed
collect2 does not appear to be a RPM package
query of collect2 failed
cpp does not appear to be a RPM package
query of cpp failed
crtbegin.o does not appear to be a RPM package
query of crtbegin.o failed
crtbeginS.o does not appear to be a RPM package
query of crtbeginS.o failed
crtend.o does not appear to be a RPM package
query of crtend.o failed
crtendS.o does not appear to be a RPM package
query of crtendS.o failed
howya does not appear to be a RPM package
query of howya failed
read failed: Is a directory (21)
query of include failed
libgcc.a does not appear to be a RPM package
query of libgcc.a failed
libgcc.map does not appear to be a RPM package
query of libgcc.map failed
specs does not appear to be a RPM package
query of specs failed
[root@localhost 2.95.1]# exit
exit

Script done on Tue Aug  8 22:40:59 2000


Are we ready to give up yet?
Who's sig says "never tell me the odds"
Greg's?

-- 
Richard Spencer -- Sao Paulo, Brazil
Running Linux kernel 2.2.16 and Redhat 6.0

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



2 very simple questions ...

2000-08-08 Thread Webmaster - prayagonline.com

hi,
i have 2 ery simple questions :

1.) I need to issure the commands halt / reboot from a telnet connection
logged on as a different user ... so what to do ??

2.) I want to change the message that appears befor the login prompt ...
   i changes the /etc/issue and /etc/issue.net

but ti guess that got overwritten when i rebooted ..

thanks a lot,
regards,
gaurav


+---+
|Site: http://www.prayagonline.com  |
|Mail: [EMAIL PROTECTED]   |
|Address: 9-A Panna Lal Road Allahabad  |
| 211002, UP India. |
+---+


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: 2 very simple questions ...

2000-08-08 Thread Ray Olszewski

At 07:46 AM 8/9/00 +0530, Webmaster - prayagonline.com wrote:
hi,
   i have 2 ery simple questions :

1.) I need to issure the commands halt / reboot from a telnet connection
logged on as a different user ... so what to do ??

If you are accessing the machine remotely, you have to be root to do this.
(Do you *really* want anyone who can log into your system able to reboot or
halt it? I don't.) So the only option is to su to root then execute the
commands.

2.) I want to change the message that appears befor the login prompt ...
   i changes the /etc/issue and /etc/issue.net

but ti guess that got overwritten when i rebooted ..


Yes. Or at least probably yes. grep through the init scripts for the ones
that write to issue and issue.net (varies by distribution) and comment out
the troublesome lines.


--
"Never tell me the odds!"---
Ray Olszewski-- Han Solo
Palo Alto, CA[EMAIL PROTECTED]



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Bug

2000-08-08 Thread Daniel Provin

Anyone can help me with this bug !!

When i try to change the passwd logged as a normal user i receive this
message:
Can't exclusively open /etc/ptmp, can't update password: Permission denied

but this file doesn't exist, and when i create that, even changing
permissions, it receives a similar message

someone know what do this file does?

thanks
Daniel Provin
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Great website for wholesale body jewelry and piercing supplies

2000-08-08 Thread MPInet User


We have just recently finished our website and online catalog.  Please take a second 
and browse through our site to see our great prices on body jewelry and unique gifts.  
http://www.steeldreamsbodyjewelry.com  We have jewelry that no one has seen before.  
As an incentive to buy from us we have several specials going now! If you buy more 
than $600 in jewelry you will receive 50-14 gauge 1/2" CBR's FREE and with all 14 or 
16 gauge piercing jewelry ordered you will receive a free sterilized individually 
wrapped piercing needle. No orders under $100 please. Please call our toll-free number 
1-877-974-3723 for a free catalog or for more information that isn't on the site.  
Please do not respond to this email address for any information.  Thanks for your time.

-Ray at Steel Dreams








-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



dhcp on startup

2000-08-08 Thread Chris S

when i issue the command  'dhcpcd -h CS561924-A eth0' i am able to get an ip 
address assigned to my eth0 card from my ISP.  which script do i modify to 
include this command so that this process happens automatically on startup?
i am guessing in ifup, but i am not sure where or what the syntax is.  if 
someone could include a code snipit that would be great.

RH6.2, kernel 2.2.5-14

thanks

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: broken C++ compiler

2000-08-08 Thread Richard Spencer

* [EMAIL PROTECTED] [EMAIL PROTECTED] [000808 22:23]:


Sorry Ray, you're the one who's sig sports
Han Solo's words  :-)

-- 
Richard Spencer -- Sao Paulo, Brazil
Running Linux kernel 2.2.16 and Redhat 6.0

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: /sbin/lilo - segmentation fault

2000-08-08 Thread Ray Olszewski

At 12:06 AM 8/8/00 EDT, [EMAIL PROTECTED] wrote:


I don't know how to make lilo segment fault, so I don't know how to fix
it.  Could you be dead flat out of space in /boot?  I would expect that
to get error 28, but maybe not.  df to see.

I wouldn't expect a segfault from that problem either. More likely prospects
are:

1. A libraries problem (lilo uses libc6, so there's always potential for a
glibc2.0 vs 2.1 problem).

2. Bad memory. Subtle weaknesses in memory produce a lot of weird symptoms,
including segfaults. Never seen it with lilo specifically, but why not?

That said, I've never seen lilo segfault either.


--
"Never tell me the odds!"---
Ray Olszewski-- Han Solo
Palo Alto, CA[EMAIL PROTECTED]



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs



Re: broken C++ compiler (long)

2000-08-08 Thread Richard Spencer

* [EMAIL PROTECTED] [EMAIL PROTECTED] [000808 18:48]:
 
 
 On Tue, 8 Aug 2000, Richard Spencer wrote:
 
  * [EMAIL PROTECTED] [EMAIL PROTECTED] [000808 14:45]:
  
   find /usr/include -name iostream.h
 
  $ find /usr/include -name iostream.h
  $
 That just told me your c++ header files are not where they belong.
 
 I am getting desperate.  I just checked gcc-2.95.1.  they are there.
 
 try this:
 
 rpm -qli gcc
 
 you might have to give it the whole version number.  It should spew a
 list of the files in gcc.  pipe it through grep.
 
 rpm -ql gcc |grep iostream



Name: gcc  Relocations: /usr /lib 
Version : 2.95.1Vendor: Vu Hung Quan 
[EMAIL PROTECTED]
Release : 3 Build Date: Sat Sep 11 15:20:38 1999
Install date: Mon Aug  7 05:43:18 2000  Build Host: binaire.cx
Group   : Development/Languages Source RPM: gcc-2.95.1-3.src.rpm
Size: 6822642  License: GPL
Packager: Vu Hung Quan [EMAIL PROTECTED]
URL : http://www.gnu.org/
Summary : gcc compilation system
Description :
This package contains the gnu C compiler and the corressponding
libraries.
/usr/bin/cc
/usr/bin/egcs
/usr/bin/gcc
/usr/bin/gcov
/usr/bin/i386-redhat-linux-gcc
/usr/bin/protoize
/usr/bin/unprotoize
/usr/doc/gcc-2.95.1
/usr/doc/gcc-2.95.1/ChangeLog
/usr/doc/gcc-2.95.1/ChangeLog.0
/usr/doc/gcc-2.95.1/ChangeLog.gcc
/usr/doc/gcc-2.95.1/ChangeLog.lib
/usr/doc/gcc-2.95.1/ChangeLog.libobjc
/usr/doc/gcc-2.95.1/ChangeLog.libobjc.libobjc
/usr/doc/gcc-2.95.1/FSFChangeLog
/usr/doc/gcc-2.95.1/FSFChangeLog.10
/usr/doc/gcc-2.95.1/FSFChangeLog.11
/usr/doc/gcc-2.95.1/README
/usr/doc/gcc-2.95.1/README-bugs
/usr/doc/gcc-2.95.1/README-fixinc
/usr/doc/gcc-2.95.1/README.ACORN
/usr/doc/gcc-2.95.1/README.ALTOS
/usr/doc/gcc-2.95.1/README.APOLLO
/usr/doc/gcc-2.95.1/README.C4X
/usr/doc/gcc-2.95.1/README.DWARF
/usr/doc/gcc-2.95.1/README.FRESCO
/usr/doc/gcc-2.95.1/README.NS32K
/usr/doc/gcc-2.95.1/README.RS6000
/usr/doc/gcc-2.95.1/README.TRAD
/usr/doc/gcc-2.95.1/README.X11
/usr/doc/gcc-2.95.1/README.gnat
/usr/i386-redhat-linux/lib/libiberty.a
/usr/info/gcc.info-1.gz
/usr/info/gcc.info-10.gz
/usr/info/gcc.info-11.gz
/usr/info/gcc.info-12.gz
/usr/info/gcc.info-13.gz
/usr/info/gcc.info-14.gz
/usr/info/gcc.info-15.gz
/usr/info/gcc.info-16.gz
/usr/info/gcc.info-17.gz
/usr/info/gcc.info-18.gz
/usr/info/gcc.info-19.gz
/usr/info/gcc.info-2.gz
/usr/info/gcc.info-20.gz
/usr/info/gcc.info-21.gz
/usr/info/gcc.info-22.gz
/usr/info/gcc.info-23.gz
/usr/info/gcc.info-24.gz
/usr/info/gcc.info-25.gz
/usr/info/gcc.info-26.gz
/usr/info/gcc.info-27.gz
/usr/info/gcc.info-28.gz
/usr/info/gcc.info-29.gz
/usr/info/gcc.info-3.gz
/usr/info/gcc.info-30.gz
/usr/info/gcc.info-4.gz
/usr/info/gcc.info-5.gz
/usr/info/gcc.info-6.gz
/usr/info/gcc.info-7.gz
/usr/info/gcc.info-8.gz
/usr/info/gcc.info-9.gz
/usr/info/gcc.info.gz
/usr/lib/gcc-lib
/usr/lib/gcc-lib/i386-redhat-linux
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/SYSCALLS.c.X
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/cc1
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/collect2
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/crtbegin.o
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/crtbeginS.o
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/crtend.o
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/crtendS.o
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/README
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/asm
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/asm/posix_types.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/float.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/g2c.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/gnu
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/gnu/types.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/iso646.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/limits.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/proto.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/selectbits.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/stdarg.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/stdbool.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/stddef.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/syslimits.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-alpha.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-arc.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-c4x.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-clipper.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-h8300.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-i860.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-i960.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-m32r.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-m88k.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-mips.h
/usr/lib/gcc-lib/i386-redhat-linux/2.95.1/include/va-mn10200.h

RE: dhcp on startup

2000-08-08 Thread Drash, Jim [EESUS]
Title: RE: dhcp on startup





BTW, dhcpcd part of the software discussed in this mailing list. However in RedHat 6.2, you need to modify /etc/sysconfig/network-scripts/ifup

Jim Drash
Ethicon Endo Surgery, Inc.
e-mail: [EMAIL PROTECTED]



 -Original Message-
 From: Chris S [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 08, 2000 1:35 PM
 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: dhcp on startup
 
 
 *** From dhcp-client -- To unsubscribe, see the end of 
 this message. ***
 
 
 when i issue the command 'dhcpcd -h CS561924-A eth0' i am 
 able to get an ip 
 address assigned to my eth0 card from my ISP. which script 
 do i modify to 
 include this command so that this process happens 
 automatically on startup?
 i am guessing in ifup, but i am not sure where or what the 
 syntax is. if 
 someone could include a code snipit that would be great.
 
 RH6.2, kernel 2.2.5-14
 
 thanks
 __
 __
 Get Your Private, Free E-mail from MSN Hotmail at 
http://www.hotmail.com



---
To unsubscribe from this list, visit http://www.isc.org/dhcp-lists.html
or send mail to [EMAIL PROTECTED] with the subject line of
'unsubscribe'.
---





Re: dhcp on startup

2000-08-08 Thread Ted Lemon


dhcpcd is not an ISC product, so this is the wrong place to be asking
about it.   The short answer is that there's some file in /etc/rc.d
that you need to tweek, but I don't know which one offhand.

   _MelloN_

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs