LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Security
User Name
Password
Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here.

Notices


Reply
  Search this Thread
Old 05-28-2001, 08:37 AM   #1
manfernandez
LQ Newbie
 
Registered: May 2001
Posts: 6

Rep: Reputation: 0

Hello Again,

I downloaded the dhcp-3.0rc7.tar.gz from ftp ftp.nominum.com. I followed the instructions:

1. tar -zxvf dhcp-3.0rc7.tar.gz
2. ./configure
3. make

When I do this I get the following error:

make [2]: *** [libdhcp.a] segmentation fault (core dumping)
make [2]: leaving directory '/home/super/dhcp-3.0rc7/work.linux-2.2/common
make [1]: *** [install] error 1
make [1]: leaving directory '/home/super/dhcp-3.0rc7/work.linux-2.2
make: *** [install] error 2

When I do a ntsysv, I do not see the DHCPD as a choice, assuming that it did not install, I reboot and try again.

I have also tryed to install the rpm, i get:
floating point exception (core dumped)


RedHat 7.0 (Server Install) 2.2
 
Old 05-28-2001, 07:46 PM   #2
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
u sure u wanna *serve* DHCP to ppl? I mean, this is not the client u use for *having* cablemodem access to ure ISP with.
if ure sure this is what u want u better try the DHCP server from RH, this is a beta anyway. The RH RPM is called dhcp-2.0-12.i386.rpm, should be on any RH mirror, RPMFind or so.
 
Old 05-28-2001, 08:23 PM   #3
jharris
Senior Member
 
Registered: May 2001
Location: Bristol, UK
Distribution: Slackware, Fedora, RHES
Posts: 2,243

Rep: Reputation: 47
Quote:
Originally posted by manfernandez
I downloaded the dhcp-3.0rc7.tar.gz from ftp ftp.nominum.com. I followed the instructions:

1. tar -zxvf dhcp-3.0rc7.tar.gz
2. ./configure
3. make

When I do this I get the following error:

make [2]: *** [libdhcp.a] segmentation fault (core dumping)
make [2]: leaving directory '/home/super/dhcp-3.0rc7/work.linux-2.2/common
make [1]: *** [install] error 1
make [1]: leaving directory '/home/super/dhcp-3.0rc7/work.linux-2.2
make: *** [install] error 2

When I do a ntsysv, I do not see the DHCPD as a choice, assuming that it did not install, I reboot and try again.

I have also tryed to install the rpm, i get:
floating point exception (core dumped)


RedHat 7.0 (Server Install) 2.2
To start with I agree with UnSpawn - you sure you mean to server addresses? In any case even if you hadn't got the errors it wouldn't have installed and you would need to run
Code:
make install
once the 'make' had finished. Looks like something fell over in quite a major way when you compiled it. Have you read through all the documentation for any things that are know to cause build faults, like specific compilers? Also you say that you had a core dump when processing an RPM - have you had other problems with this system? Other processing falling over on you often - you might have an underlying problem.

Jamie...

BTW What the hell is ntsysv when it's at home people?
 
Old 05-28-2001, 09:40 PM   #4
manfernandez
LQ Newbie
 
Registered: May 2001
Posts: 6

Original Poster
Rep: Reputation: 0
Thanks for the response,

I am new to Linux, I purchased a book named: Linux Network Server 24Seven. I have extensive experience with Windows NT and Netware in a NOS environment. I am trying this with my box @ home. I have 8 Boxes running diff OS's, and would like to learn Linux the way I know Netware and NT. I am going chapter by chapter installing everything the book goes over.

Install went ok, BIND went somewhat Ok, and now I am @ DHCP. I am not using this in a production environment, just want to see how it is configured and how it works.

Jharris
BTW: I have not tried installing other rpm's, that is a good idea. I will try to install something small and see how it goes.

unSpawn
I will try to download the correct file, I had also tried the dhcp-2.012.src.rpm. I will try the *i386.rpm

Thanks you both for your help.

manny
 
Old 05-29-2001, 06:26 AM   #5
manfernandez
LQ Newbie
 
Registered: May 2001
Posts: 6

Original Poster
Rep: Reputation: 0
DHCP Resolved

Thanks for all the responses. I was trying to install the rpm via linuxconf. It was giving me an error saying I was missing packages. I installed it (dhcp-2.0-12.i386.rpm) via the command line.

rpm -i dhcp-2.0-12.i386.rpm

and it worked, why it was giving me an error ....... I have no idea.

I tested it and it worked ok,

Thanks

Manny
 
Old 05-29-2001, 11:41 AM   #6
raz
Member
 
Registered: Apr 2001
Location: London
Posts: 408

Rep: Reputation: 31
Quote:
Originally posted by jharris
Quote:
Originally posted by manfernandez
I downloaded the dhcp-3.0rc7.tar.gz from ftp ftp.nominum.com. I followed the instructions:

1. tar -zxvf dhcp-3.0rc7.tar.gz
2. ./configure
3. make

When I do this I get the following error:

make [2]: *** [libdhcp.a] segmentation fault (core dumping)
make [2]: leaving directory '/home/super/dhcp-3.0rc7/work.linux-2.2/common
make [1]: *** [install] error 1
make [1]: leaving directory '/home/super/dhcp-3.0rc7/work.linux-2.2
make: *** [install] error 2

When I do a ntsysv, I do not see the DHCPD as a choice, assuming that it did not install, I reboot and try again.

I have also tryed to install the rpm, i get:
floating point exception (core dumped)


RedHat 7.0 (Server Install) 2.2
To start with I agree with UnSpawn - you sure you mean to server addresses? In any case even if you hadn't got the errors it wouldn't have installed and you would need to run
Code:
make install
once the 'make' had finished. Looks like something fell over in quite a major way when you compiled it. Have you read through all the documentation for any things that are know to cause build faults, like specific compilers? Also you say that you had a core dump when processing an RPM - have you had other problems with this system? Other processing falling over on you often - you might have an underlying problem.

Jamie...

BTW What the hell is ntsysv when it's at home people?


Jamie... answer.

NAME
ntsysv - simple interface for configuring runlevels

SYNOPSIS
ntsysv [--back] [--level <levels>]

DESCRIPTION
ntsysv is a simple interface for configuring runlevel services which are also configurable through chkconfig.
By default, it configures the current runlevel. If the user would like to configure other runlevels, those
levels can be specified on the command line by listing the levels after --levels, without any spaces. For
example, the option --levels 016 edits runlevels 0, 1, and 6.

A service is considered to be started in the runlevel set if it is started in any of the runlevels which are
being edited.

The ntsysv window normally contains a Cancel button. If --back is specified, a Back button appears instead.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
dhcp client not getting IP from dhcp server jkmartha Linux - Networking 2 06-17-2005 08:12 AM
No DHCP server available for install. boone SUSE / openSUSE 2 02-05-2005 08:26 AM
how can a DHCP client get the DHCP server IP? AshesOfTime Linux - Networking 3 11-24-2004 06:50 AM
XP Pro Build 2600/sp1 v.1105 DHCP Client to Redhat 8.0 DHCP Server - Problems atomant Linux - Networking 5 06-28-2003 11:24 AM
How do you make the ip masquerade server/dhcp server broadcast dns to lan cmisip Linux - Networking 6 01-25-2003 10:43 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Security

All times are GMT -5. The time now is 03:45 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration