• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

MAC - Could not configure console: Error 0x7f4ce08e

Scheduled Pinned Locked Moved
Mac Problems
mac ipxe tftp tftpboot
4
25
8.8k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M
    melvinpaz
    last edited by melvinpaz May 9, 2016, 8:16 AM May 9, 2016, 2:15 PM

    ###############
    Bonjour

    J’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.
    ###############
    Hello

    I 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.

    0_1462802372010_FullSizeRender 3.jpg
    ###############
    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?

    1 Reply Last reply Reply Quote 0
    • T
      Tom Elliott
      last edited by May 9, 2016, 2:20 PM

      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.

      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

      1 Reply Last reply Reply Quote 0
      • M
        melvinpaz
        last edited by melvinpaz May 9, 2016, 8:52 AM May 9, 2016, 2:47 PM

        This post is deleted!
        1 Reply Last reply Reply Quote 0
        • M
          melvinpaz
          last edited by May 9, 2016, 2:49 PM

          #######
          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

          0_1462805081582_FullSizeRender 4.jpg

          ########
          Avez-vous une idée ?
          ########
          Do you have an idea ?

          1 Reply Last reply Reply Quote 0
          • Q
            Quazz Moderator
            last edited by May 9, 2016, 2:54 PM

            You seem to have two dhcp server on your network. Not that this necessarily causes the issue, but just wanted to point that out.

            M 1 Reply Last reply May 9, 2016, 3:00 PM Reply Quote 0
            • M
              melvinpaz @Quazz
              last edited by May 9, 2016, 3:00 PM

              @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 .

              Q 1 Reply Last reply May 9, 2016, 3:04 PM Reply Quote 0
              • Q
                Quazz Moderator @melvinpaz
                last edited by May 9, 2016, 3:04 PM

                @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

                M 1 Reply Last reply May 9, 2016, 3:26 PM Reply Quote 0
                • S
                  Sebastian Roth Moderator
                  last edited by Sebastian Roth May 9, 2016, 9:16 AM May 9, 2016, 3:15 PM

                  @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!

                  Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                  Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                  Q 1 Reply Last reply May 9, 2016, 3:19 PM Reply Quote 0
                  • Q
                    Quazz Moderator @Sebastian Roth
                    last edited by May 9, 2016, 3:19 PM

                    @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)

                    1 Reply Last reply Reply Quote 0
                    • S
                      Sebastian Roth Moderator
                      last edited by Sebastian Roth May 9, 2016, 9:21 AM May 9, 2016, 3:21 PM

                      @Quazz Do we see the same information? I don’t see anything about manual TFTP information in this posting… please point me to it!

                      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                      Q 1 Reply Last reply May 9, 2016, 3:23 PM Reply Quote 0
                      • Q
                        Quazz Moderator @Sebastian Roth
                        last edited by May 9, 2016, 3:23 PM

                        @Sebastian-Roth It happens right after the first “Could not open net0” in the screenshot (third line in the original post of the screenshot)

                        1 Reply Last reply Reply Quote 0
                        • M
                          melvinpaz @Quazz
                          last edited by May 9, 2016, 3:26 PM

                          @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

                          0_1462807531278_Capture d’écran 2016-05-09 à 17.24.07.png

                          ###########
                          Si vous avez besoin de plus d’info n’hésitez pas
                          ###########
                          If you need more info please

                          1 Reply Last reply Reply Quote 0
                          • S
                            Sebastian Roth Moderator
                            last edited by May 9, 2016, 3:28 PM

                            @melvinpaz Please read my other post about updating the kernel!

                            Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                            Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                            1 Reply Last reply Reply Quote 0
                            • S
                              Sebastian Roth Moderator
                              last edited by May 9, 2016, 8:59 PM

                              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

                              Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                              Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                              M 1 Reply Last reply May 10, 2016, 8:42 AM Reply Quote 0
                              • M
                                melvinpaz @Sebastian Roth
                                last edited by May 10, 2016, 8:42 AM

                                @Sebastian-Roth

                                ##############
                                Voici ce que j’obtiens
                                ##############
                                Here’s what I get

                                fog@fog-P5QL-PRO:~$ file /var/www/fog/service/ipxe/bzImage
                                /var/www/fog/service/ipxe/bzImage: x86 boot sector
                                

                                0_1462868707571_Capture d’écran 2016-05-10 à 10.22.07.png

                                0_1462868722460_Capture d’écran 2016-05-10 à 10.22.24.png

                                ##############
                                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 ?

                                1 Reply Last reply Reply Quote 0
                                • M
                                  melvinpaz
                                  last edited by May 10, 2016, 12:35 PM

                                  ##############
                                  Voici la version de ma machine

                                  fog@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 my

                                  fog@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
                                  
                                  1 Reply Last reply Reply Quote 0
                                  • S
                                    Sebastian Roth Moderator
                                    last edited by May 10, 2016, 1:28 PM

                                    @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.

                                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                    1 Reply Last reply Reply Quote 0
                                    • M
                                      melvinpaz
                                      last edited by May 10, 2016, 1:38 PM

                                      ###########
                                      Bonjour

                                      Je 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
                                      ###########
                                      Hello

                                      I 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

                                      1 Reply Last reply Reply Quote 0
                                      • M
                                        melvinpaz
                                        last edited by May 10, 2016, 2:40 PM

                                        ################
                                        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

                                        0_1462891137371_Capture d’écran 2016-05-10 à 16.38.41.png

                                        T 1 Reply Last reply May 10, 2016, 2:44 PM Reply Quote 0
                                        • T
                                          Tom Elliott @melvinpaz
                                          last edited by May 10, 2016, 2:44 PM

                                          @melvinpaz are you behind a proxy?

                                          Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                                          Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                          Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 1 / 2
                                          1 / 2
                                          • First post
                                            7/25
                                            Last post

                                          149

                                          Online

                                          12.0k

                                          Users

                                          17.3k

                                          Topics

                                          155.2k

                                          Posts
                                          Copyright © 2012-2024 FOG Project