Lenovo Miix 700
-
here is the photo of the error the
Tue Aug 30, 2016 15:16 pm
Running Version 1.3.0-RC-8
SVN Revision: 5949 -
Yes my dhcp option 67 is set and string value: undionly.kpxe
-
@arton This device is in UEFI mode, and requires a
.efi
boot file. You’ll need to find one of fog’s .efi files that will work with this device. You can find a listing of possible files by running this command on your fog server:ls -lahRt /tftpboot | grep .efi
However, most timesipxe.efi
works.You’ll probably also be interested in setting up BIOS and UEFI co-existence for your DHCP server so you can boot both BIOS and UEFI devices without having to change DHCP every-single-time. Instructions on this are here:
https://wiki.fogproject.org/wiki/index.php?title=BIOS_and_UEFI_Co-Existence -
Hi here is what i get when i run that command on my fog server
-
Right the NBP indicates this is a uefi device. In this case you need to use a uefi compatible boot kernel. As a suggestion, change your dhcp option 67 to ipxe.efi. Then pxe boot the target computer again.
FWIW, the undionly.kpxe is for bios (legacy) devices.
Looking at your ls command, ipxe.efi doesn’t exist. This IS an issue. Please confirm that you have ipxe.efi as well as about 4 others in that /tftpboot directory.
-
that all what i have on tftpboot directory
-
@arton Well that’s not right for 1.3.0-rcX series. Did you upgrade this install from a previous release? This looks a bit like a FOG 0.30 tftp directory.
How did you install 1.3.0? I assume you downloaded the installer from git or svn, then did you run the installfog.sh script in the bin directory?
-
yes what i did fallow the command on the how to upgrade so they it sad to make a Dir under root name fog-project then run the download svn then i did run installfog.sh from that directory.
Now when i look under fogproject/packages/tftp/ I see -
@arton that’s very strange why the tftpboot directory is that why. Your screen shot contains what I would expect in the /tftpboot dir
Did the fog installer run to completion? Please run the installfog script again. If you are using a Debian based Linux you will need sudo then installfog.sh.
-
thank you i did run the install again now the tftpboot has all the files now i getting different error here is the picture
-
@arton Did the installer complete?
-
yes it did finish completely
-
@arton What’s doing DHCP there? Did you follow the article I posted earlier? Do you hae PortFast enabled on your switch? Can you try to place a mini-switch between the computer and the building network?
-
i dont see any post about port fast on network
-
@arton Can you answer the other questions please?
-
yes i can put a mini switch between building network and pc i let y know the results
-
here is the error
-
@arton This last picture is what I might expect to see from pxe booting a bios (legacy) system with undionly.kpxe (not an uefi boot, it doesn’t matter but just trying to set the context). Is this the case? I’m still getting the impression that your install is broken.
What I want you to do next is to (with a web browser) key in http://192.168.15.187/fog/service/ipxe/boot.php?mac=00:00:00:00:00:00 and post the results here. Ideally this should display the FOG ipxe boot menu in its entirety (> 20 lines of stuff). If you get 3 or 4 lines and that is it, then we will need you to post (tail) the apache error log because something is broken.
-
The calls look good in the last picture, is the firewall on for the fog server? What OS is it running?
-
#!ipxe
set fog-ip 192.168.15.187
set fog-webroot fog
set boot-url http://${fog-ip}/${fog-webroot}
cpuid --ext 29 && set arch x86_64 || set arch i386
iseq ${platform} efi && set key 0x1b || set key 0x01
iseq ${platform} efi && set keyName ESC || set keyName CTRL + A
prompt --key ${key} --timeout 3000 Booting… (Press ${keyName} to access the menu) && goto menuAccess || exit
:menuAccess
login
params
param mac0 ${net0/mac}
param arch ${arch}
param platform ${platform}
param username ${username}
param password ${password}
param menuaccess 1
param debug 1
isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
:bootme
chain -ar http://192.168.15.187/fog/service/ipxe/boot.php##paramsServer is Ubuntu 14.04 LTS