MAC - Could not configure console: Error 0x7f4ce08e
-
###############
BonjourJ’ai la version stable 1.2.0 d’installé
Lors du démarrage de FOG sur un mac j’ai ce message d’erreur et je ne trouve pas de solution.
###############
HelloI have the stable version 1.2.0 installed
When starting FOG on a mac I have this error message and I can not find a solution.
###############
Voici mon boot.php
###############
Here is my boot.php<?php header("Content-type: text/plain"); require_once('../../commons/base.inc.php'); if ($_REQUEST['mac0'] && !$_REQUEST['mac1'] && !$_REQUEST['mac2']) $_REQUEST['mac'] = $_REQUEST['mac0']; else if ($_REQUEST['mac0'] && $_REQUEST['mac1'] && !$_REQUEST['mac2']) $_REQUEST['mac'] = $_REQUEST['mac0'].'|'.$_REQUEST['mac1']; else if ($_REQUEST['mac0'] && !$_REQUEST['mac1'] && $_REQUEST['mac2']) $_REQUEST['mac'] = $_REQUEST['mac0'].'|'.$_REQUEST['mac2']; else if ($_REQUEST['mac0'] && $_REQUEST['mac1'] && $_REQUEST['mac2']) $_REQUEST['mac'] = $_REQUEST['mac0'].'|'.$_REQUEST['mac1'].'|'.$_REQUEST['mac2']; $MACs = HostManager::parseMacList($_REQUEST['mac']); $Host = $FOGCore->getClass('HostManager')->getHostByMacAddresses($MACs); new BootMenu($Host);
###############
Voici mon default.ipxe
###############
Here is my default.ipxe#!ipxe cpuid --ext 29 && set arch x86_64 || set arch i386 params param mac0 ${net0/mac} param arch ${arch} param platform ${platform} param product ${product} param manufacturer ${product} param ipxever ${version} param filename ${filename} isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme :bootme chain http://10.2.153.248/fog/service/ipxe/boot.php##params```
###############
Je suis allé sur le site www.ipxe.org/7f4ce08e et je n’ai pas trouvé de solution adapté à ce qu’il m’arrive.
Je suis actuellement à cours d’idée vous avez une piste ?
###############
I went on the website www.ipxe.org/7f4ce08e and I do not have a solution adapted to Found What happens to me.
I am currently out of ideas you have a track? -
Edit the file:
/var/www/fog/lib/fog/BootMenu.class.php
Look for line Number 684.
Comment it so it reads as:
//print "console --picture $this->booturl/ipxe/bg.png --left 100 --right 80\n";
Revel in the fact that it’s magically working again.
-
This post is deleted! -
#######
J’ai fais la modification et cela a supprimé le message d’erreur mais un autre est survenue. http://ipxe.org/err/2e008081
#######
I made the change and it has eliminated the error message but another occurred. http://ipxe.org/err/2e008081########
Avez-vous une idée ?
########
Do you have an idea ? -
You seem to have two dhcp server on your network. Not that this necessarily causes the issue, but just wanted to point that out.
-
@Quazz said in MAC - Could not configure console: Error 0x7f4ce08e:
You seem to have two dhcp server on your network. Not that this necessarily causes the issue, but just wanted to point that out.
#############
Il y a seulement un serveur DHCP fonctionnel dans tous les cas. Le serveur FOG fait office de serveur DHCP. L’application Fog et le serveur DHCP fonctionne actuellement sur PC mais j’ai juste le problème sur MAC.
#############
There is only a functional DHCP server in all cases. The Fog server is a DHCP server.
Application Fog and the DHCP server currently runs on PC but I just the problem of MAC . -
@melvinpaz It’s very odd that it asks for TFTP information if there’s only one DHCP server available.
To me this indicates some kind of network issue, I’ve only seen it when there’s multiple DHCP servers giving out the same options, confusing the client.
I could be way off base, but I think a packet capture might help us
https://wiki.fogproject.org/wiki/index.php?title=Tftp_timeout…#Troubleshooting
-
@Quazz Why do you think he has two DHCP servers? From what I see the client has two NICs - which does not have to be a problem.
@melvinpaz The PHP files seem to be version 1.2.0 but the iPXE version number and embedded script behavior are definitely not FOG 1.2.0. I guess you have updated your iPXE binaries by hand. This is not a problem. Just important information for us to be able to help you.
At this point iPXE is usually trying to load the linux kernel. Seeing the iPXE feature header I know this is UEFI iPXE binary. So I guess you are still using the default linux kernel version that comes with FOG 1.2.0 - which does not have EFI_STUB. Please go to FOG Configuration -> Kernel update and get a newer kernel installed. This should get rid of the error I suppose.
Note to myself: Should add this to the wiki article on boot issues I am working on!
-
@Sebastian-Roth I thought the clients only asked for manual TFTP information if there’s either a problem with the DHCP server (which would make little sense as it wouldn’t be able to reach this stage) or if there’s something fishy going on on the network (typically DHCP servers giving out the same options)
-
@Quazz Do we see the same information? I don’t see anything about manual TFTP information in this posting… please point me to it!
-
@Sebastian-Roth It happens right after the first “Could not open net0” in the screenshot (third line in the original post of the screenshot)
-
@Quazz
###########
Je ne sais pas si c’est ce que tu m’as demandé mais voici
###########
I do not know if that’s what you asked but here###########
Si vous avez besoin de plus d’info n’hésitez pas
###########
If you need more info please -
@melvinpaz Please read my other post about updating the kernel!
-
I just updated the wiki. Please see if that is of any help to you: https://wiki.fogproject.org/wiki/index.php?title=Booting_into_FOG_and_Uploading_your_first_Image#Exec_format_error
-
##############
Voici ce que j’obtiens
##############
Here’s what I getfog@fog-P5QL-PRO:~$ file /var/www/fog/service/ipxe/bzImage /var/www/fog/service/ipxe/bzImage: x86 boot sector
##############
Dois-je suivre ce tutoriel https://wiki.fogproject.org/wiki/index.php/Build_TomElliott_Kernel car la mise à jour dans la page web ne fonctionne pas et je ne sais pas comment la forcer ?
##############
Should I follow this tutorial https://wiki.fogproject.org/wiki/index.php/Build_TomElliott_Kernel for updating the web page does not and I do not know how the force ? -
##############
Voici la version de ma machinefog@fog-P5QL-PRO:~$ uname -a Linux fog-P5QL-PRO 4.2.0-36-generic #41~14.04.1-Ubuntu SMP Tue Apr 19 17:04:05 UTC 2016 i686 i686 i686 GNU/Linux
##############
HERE machine version to myfog@fog-P5QL-PRO:~$ uname -a Linux fog-P5QL-PRO 4.2.0-36-generic #41~14.04.1-Ubuntu SMP Tue Apr 19 17:04:05 UTC 2016 i686 i686 i686 GNU/Linux
-
@melvinpaz Seems like not all linux distos come with a proper
file
command. Unfortunately yours does not show the kernel version!On the kernel update web gui you should see the currently installed kernel version and should be able to select a newer one from the “Published Kernels” drop down list to install.
-
###########
BonjourJe suis actuellement en train de réinstaller le système d’exploitation. De mémoire je ne pouvais pas sélectionner de version, j’avais seulement 2 option de disponible. Dès que tout est réinstallé je vous fais une capture d’écran
###########
HelloI am currently in the process of reinstalling the operating system. From memory I could not select version, I had only two options available. Once everything is reinstalled I make you a screenshot
-
################
Bonjour
Je le peux pas sélectionner de kernel comme vu dans la capture d’écran
################
Hy
I can not select a kernel as seen in the screenshot -
@melvinpaz are you behind a proxy?