LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Fog Server Running Ubuntu (https://www.linuxquestions.org/questions/linux-newbie-8/fog-server-running-ubuntu-861491/)

Dru-Jitsu 02-08-2011 03:46 PM

Fog Server Running Ubuntu
 
1 Attachment(s)
So I have a fog server up running ubuntu, everything is working great on the server side. I am having an issue with fog that I was wondering if someone could help me with. When I boot up a pc to start into fog it gives me a
pxe file not found
tftp file not found

I have seen this error from many people but none of their solutions have worked for me.
here is a screen shot of my dhcp3.config file.

Can someone point me in the right direction?

Dru-Jitsu 02-08-2011 06:26 PM

Anyone know anything about this?

jefro 02-08-2011 07:39 PM

Seems to be an odd place for your pxe stuff. What is ls -l of the directory?

Dru-Jitsu 02-08-2011 07:58 PM

Well you have to direct it out from there because it needs to hand off the PXE file. I know there is a way in windows to set this file its 067 bootfile I am not sure whats the equivalent is in linux. As for the ls -l which directory?

I am in /etc/dhcp
Then there are a couple files I am no longer at work so I can't get the exact listing until tomorrow hopefully with what I said that will help there were about 6-8 files inside the dhcp directory.

Dru-Jitsu 02-08-2011 08:01 PM

I might have misunderstood your post are you saying that the /usr/lib/syslinux is a weird place? I thought you meant putting it into the DHCP file sorry it's been a long day.

Dru-Jitsu 02-09-2011 12:10 PM

Anyone have any ideas?

itismike 02-13-2011 12:10 AM

Hi Dru,

Jefro is right - that path looks wrong. Are you following the guide here?

Here's what mine says:
Quote:

$ cat /etc/dhcp3/dhcpd.conf
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
# This file was created by FOG
use-host-decl-names on;
ddns-update-style interim;
ignore client-updates;
next-server 192.168.1.5;

subnet 192.168.1.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
range dynamic-bootp 192.168.1.10 192.168.1.254;
default-lease-time 21600;
max-lease-time 43200;
option domain-name-servers 192.168.1.1;
option routers 192.168.1.1;
filename "pxelinux.0";
}


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