• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. melvinpaz
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 49
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by melvinpaz

    • RE: MAC - Could not configure console: Error 0x7f4ce08e

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

      posted in Mac Problems
      M
      melvinpaz
    • RE: MAC - Could not configure console: Error 0x7f4ce08e

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

      posted in Mac Problems
      M
      melvinpaz
    • RE: MAC - Could not configure console: Error 0x7f4ce08e

      ##############
      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
      
      posted in Mac Problems
      M
      melvinpaz
    • RE: MAC - Could not configure console: Error 0x7f4ce08e

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

      posted in Mac Problems
      M
      melvinpaz
    • RE: MAC - Could not configure console: Error 0x7f4ce08e

      @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

      posted in Mac Problems
      M
      melvinpaz
    • RE: MAC - Could not configure console: Error 0x7f4ce08e

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

      posted in Mac Problems
      M
      melvinpaz
    • RE: MAC - Could not configure console: Error 0x7f4ce08e

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

      posted in Mac Problems
      M
      melvinpaz
    • MAC - Could not configure console: Error 0x7f4ce08e

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

      posted in Mac Problems mac ipxe tftp tftpboot
      M
      melvinpaz
    • 1 / 1