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

Change langage keyboard on boot for password and full inventory

Scheduled Pinned Locked Moved
FOG Problems
5
8
2.5k
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.
  • G
    guiom57
    last edited by Feb 19, 2015, 10:01 AM

    Hi,
    i try to install fog (1.2.0) in my enterprise to replace my actually’s deploiement infrastructure.

    I have search with no result how to change the langage (in french) to the boot interface to write lgin and passord or write registred information.

    If anyone can help me. i have try to enter many exemple in Fog setting /general informations/FOG_KEYMAP but without result! (fr_FR.utf.8, fr.kdb. fr-latin9, …)

    Many thanks !

    G.

    1 Reply Last reply Reply Quote 0
    • S
      Sebastian Roth Moderator
      last edited by Feb 22, 2015, 12:43 PM

      Hi,
      the setting FOG_KEYMAP is used to tell the kernel to use this keymap. See kernel command line options for more details but in my case simply ‘de’ is working. It’s not perfect as german Umlauts are not working but at least the rest is working great. So in your case you’d have to set FOG_KEYMAP to ‘fr’…

      Not sure if this setting also makes a difference for FOG login and password … anyone has a clue? Or just give it a try.

      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
      • G
        geicos
        last edited by Mar 13, 2015, 9:45 AM

        Hi,

        I think it is necessary to Building a custom undionly.kpxe file .
        See: [url]http://www.fogproject.org/wiki/index.php/Building_undionly.kpxe[/url]
        Change in config/console.h :
        define KEYBOARD_MAP us
        to
        define KEYBOARD_MAP fr

        But I have a compilation error at the end of the procedure.

        1 Reply Last reply Reply Quote 0
        • W
          Wayne Workman
          last edited by Mar 14, 2015, 6:55 AM

          [quote=“geicos, post: 43844, member: 28277”]Hi,

          I think it is necessary to Building a custom undionly.kpxe file .
          See: [url]http://www.fogproject.org/wiki/index.php/Building_undionly.kpxe[/url]
          Change in config/console.h :
          define KEYBOARD_MAP us
          to
          define KEYBOARD_MAP fr

          But I have a compilation error at the end of the procedure.[/quote]

          Can you post the error?

          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!
          Daily Clean Installation Results:
          https://fogtesting.fogproject.us/
          FOG Reporting:
          https://fog-external-reporting-results.fogproject.us/

          1 Reply Last reply Reply Quote 0
          • G
            geicos
            last edited by Mar 15, 2015, 9:12 AM

            Hi,

            The command “make bin/{undionly,ipxe}.{,k,kk}pxe EMBED=ipxescript” finish by:

            [HOSTCC] util/zbin
            util/zbin.c:7:18: fatal error: lzma.h: No such file or directory
            #include <lzma.h>

            compilation terminated.
            make: *** [util/zbin] Error 1

            1 Reply Last reply Reply Quote 0
            • T
              Tom Elliott
              last edited by Mar 15, 2015, 2:20 PM

              You building on ubuntu/debian, or Centos?

              Either way, you need install the liblzma package on your system. I think it was done with
              [code]apt-get install liblzma-dev[/code]

              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
              • G
                geicos
                last edited by Mar 29, 2015, 9:29 AM

                Thank you, now the compilation is ok.
                But with my new undionly.ipxe file, I have a boot error:

                [url=“/_imported_xf_attachments/1/1826_fog.PNG?:”]fog.PNG[/url]

                1 Reply Last reply Reply Quote 0
                • S
                  Sebastian Roth Moderator
                  last edited by Mar 29, 2015, 12:38 PM

                  Check the following header file in the ipxe source directory: ipxe/src/config/general.h

                  You’ll see some lines with ‘define’ there. Some have ‘//’ at the beginning which means that those options are not being compiled into the ipxe binary! Remove those two slashes in front of PARAM_CMD (and possible some other options too):

                  [CODE]…
                  #define AUTOBOOT_CMD /* Automatic booting /
                  #define NVO_CMD /
                  Non-volatile option storage commands /
                  #define CONFIG_CMD /
                  Option configuration console /
                  #define IFMGMT_CMD /
                  Interface management commands /
                  //#define IWMGMT_CMD /
                  Wireless interface management commands /
                  //#define FCMGMT_CMD /
                  Fibre Channel management commands /
                  #define ROUTE_CMD /
                  Routing table management commands /
                  #define IMAGE_CMD /
                  Image management commands /
                  #define DHCP_CMD /
                  DHCP management commands /
                  #define SANBOOT_CMD /
                  SAN boot commands /
                  #define MENU_CMD /
                  Menu commands /
                  #define LOGIN_CMD /
                  Login command /
                  #define SYNC_CMD /
                  Sync command /
                  #define NSLOOKUP_CMD /
                  DNS resolving command /
                  #define TIME_CMD /
                  Time commands /
                  #define DIGEST_CMD /
                  Image crypto digest commands /
                  #define LOTEST_CMD /
                  Loopback testing commands /
                  #define VLAN_CMD /
                  VLAN commands /
                  #define PXE_CMD /
                  PXE commands /
                  #define REBOOT_CMD /
                  Reboot command /
                  #define POWEROFF_CMD /
                  Power off command /
                  #define IMAGE_TRUST_CMD /
                  Image trust management commands /
                  #define PCI_CMD /
                  PCI commands /
                  #define PARAM_CMD /
                  Form parameter commands /
                  #define NEIGHBOUR_CMD /
                  Neighbour management commands /
                  #define PING_CMD /
                  Ping command /
                  #define CONSOLE_CMD /
                  Console command /
                  #define IPSTAT_CMD /
                  IP statistics commands /
                  //#define PROFSTAT_CMD /
                  Profiling commands */
                  …
                  [/CODE]
                  Then compile again, copy the new binary to /tftpboot, check file permissions and boot up the client…

                  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 / 1
                  • First post
                    Last post

                  195

                  Online

                  12.0k

                  Users

                  17.3k

                  Topics

                  155.2k

                  Posts
                  Copyright © 2012-2024 FOG Project