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

Lenovo 11e - Doesn't pass Menu screen on iPXE

Scheduled Pinned Locked Moved Solved
FOG Problems
8
36
16.4k
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
    GFm
    last edited by GFm Jul 8, 2015, 8:09 AM Jul 8, 2015, 2:07 PM

    I have new Lenovo 11e’s that wont go any further than where it says “Menu” on the iPXE boot. I did some research and tried manipulating my switches with STP portfast and I plugged into the same switch that my server is located to eliminate any other networking issues.

    This is on my ports in the switch…
    spanning-tree portfast
    spanning-tree bpduguard enable

    I tried updating my undionly.kpxe file, but that didnt work.

    All my other laptops (lenovo, dell,) are working fine and never have been an issue. Legacy is enable and I disable UEFI.

    Any ideas?

    Thanks!image1.JPG

    ** I am running FOG 1.2.0 and the latest kernel

    1 Reply Last reply Reply Quote 0
    • W
      Wayne Workman
      last edited by Jul 8, 2015, 2:13 PM

      Can you try undionly.kkpxe instead?

      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 1
      • G
        GFm
        last edited by GFm Jul 8, 2015, 8:20 AM Jul 8, 2015, 2:19 PM

        How do I tell it to do that? Do I just replace it like I did the other one and the laptop will pick it up, or do I have to change something on the server to force it to use that?

        Thanks for the quick reply!

        W 1 Reply Last reply Jul 8, 2015, 2:21 PM Reply Quote 0
        • W
          Wayne Workman @GFm
          last edited by Jul 8, 2015, 2:21 PM

          @GFm For most people, it’s a DHCP setting.

          What is running DHCP in your environment? That’s where you’d change it. It’s DHCP scope option 067

          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
            GFm
            last edited by Jul 8, 2015, 2:22 PM

            Gotcha… wasn’t thinking 😕 I will try that… just using 2012 win DC’s

            1 Reply Last reply Reply Quote 0
            • G
              GFm
              last edited by Jul 8, 2015, 2:28 PM

              I tried it and it just hangs on Initializing devices… It went past that Menu part quickly, but just hangs after.

              Any other ideas?

              Thanks

              W 1 Reply Last reply Jul 8, 2015, 2:34 PM Reply Quote 0
              • T
                Tom Elliott
                last edited by Jul 8, 2015, 2:30 PM

                If it’s getting “past the menu too fast” my guess is your system is getting a Console display error. This has been fixed in the Dev (trunk) versions of FOG, but can be relatively easily fixed in 1.2.0. Simply open the /var/www/fog/lib/fog/BootMenu.class.php file and find the lines that contain the phrase console. Comment them out with: //.

                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

                G 1 Reply Last reply Jul 8, 2015, 2:53 PM Reply Quote 2
                • W
                  Wayne Workman @GFm
                  last edited by Jul 8, 2015, 2:34 PM

                  @GFm Or alternatively, upgrade to the dev version: https://wiki.fogproject.org/wiki/index.php/Upgrade_to_trunk

                  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/

                  G 1 Reply Last reply Jul 8, 2015, 7:37 PM Reply Quote 0
                  • G
                    GFm @Tom Elliott
                    last edited by Jul 8, 2015, 2:53 PM

                    @Tom-Elliott

                    The only place I see the word Console is this…

                    $this->kernel = “kernel $bzImage root=/dev/ram0 rw ramdisk_size=$ramsize ip=dhcp dns=$dns keymap=$keymap web=${webserver}${webroot} consoleblank=0”;

                    I commented this out and it didnt fix anything.

                    I guess I didnt realize “initialising devices” is before the menu part. To be clear, when I use the normal undionly.kpxe it gets to the menu and does go anywhere. When I use the undionly.kkpxe it gets only to the initialising devices.

                    Do you suggest I upgrade, or is there some other stuff I can still try?

                    Thanks!

                    W 1 Reply Last reply Jul 8, 2015, 3:07 PM Reply Quote 0
                    • W
                      Wayne Workman @GFm
                      last edited by Jul 8, 2015, 3:07 PM

                      @GFm

                      vim does an excellent job at color-coding strings that you search for.

                      Install vim, open the file,

                      type a forward slash (to say you wanna search for the following string) then type “console” and then press enter.

                      So, like this:

                      sudo apt-get install -y vim
                      sudo vim /var/www/fog/lib/fog/BootMenu.class.php
                      /console  [enter]
                      

                      Then use the page up/down keys to quickly look through the file for the color-highlighed word “console”

                      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/

                      G 1 Reply Last reply Jul 8, 2015, 5:11 PM Reply Quote 0
                      • G
                        GFm @Wayne Workman
                        last edited by Jul 8, 2015, 5:11 PM

                        @Wayne-Workman
                        Thanks for the info. I can try that next time. I used gedit and searched for “console.”

                        Since this didn’t work, I guess I’ll give it a try to update to the dev version. I’ll let you know how I end up.

                        Thanks again!

                        1 Reply Last reply Reply Quote 0
                        • G
                          GFm @Wayne Workman
                          last edited by Jul 8, 2015, 7:37 PM

                          @Wayne-Workman I tried updating, but it keeps erroring out on the php5-mcrypt.

                          Installing package: php5-mcrypt…Failed!

                          I am running Ubuntu 13.10. I tried installing it manually via apt-get, but that failed too.

                          Any ideas?

                          Thanks!

                          W 1 Reply Last reply Jul 8, 2015, 7:41 PM Reply Quote 0
                          • W
                            Wayne Workman @GFm
                            last edited by Jul 8, 2015, 7:41 PM

                            @GFm Try to update your system first.

                            apt-get update
                            apt-get upgrade
                            

                            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/

                            G 2 Replies Last reply Jul 9, 2015, 11:08 AM Reply Quote 0
                            • G
                              GFm @Wayne Workman
                              last edited by Jul 9, 2015, 11:08 AM

                              @Wayne-Workman I got this… (attached)apt-get.txt

                              1 Reply Last reply Reply Quote 0
                              • G
                                GFm @Wayne Workman
                                last edited by Jul 9, 2015, 11:27 AM

                                @Wayne-Workman Also, tried this installing php5-mcrypt manually mcrypt.txt

                                Thanks

                                1 Reply Last reply Reply Quote 0
                                • T
                                  Tom Elliott
                                  last edited by Jul 9, 2015, 11:45 AM

                                  http://old-releases.ubuntu.com/releases/13.10/

                                  Can you change your sources to link to old-releases instead of us.archive and security?

                                  This should be able to be changed with a sudo command of:

                                  cp /etc/apt/sources.list /etc/apt/source.list.original_fog #backs up original just in case
                                  sed -i -e 's/\/\/*archive.ubuntu.com\|\/\/*security.ubuntu.com/\/\/old-releases.ubuntu.com/g' /etc/apt/sources.list
                                  

                                  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

                                  G 1 Reply Last reply Jul 9, 2015, 12:01 PM Reply Quote 1
                                  • G
                                    GFm @Tom Elliott
                                    last edited by Jul 9, 2015, 12:01 PM

                                    @Tom-Elliott No luck… tried installing again after this and the update command. Any ideas?

                                    Thanksmcrypt.txt

                                    1 Reply Last reply Reply Quote 0
                                    • T
                                      Tom Elliott
                                      last edited by Jul 9, 2015, 12:03 PM

                                      Not everything has changed to old-releases.

                                      Can you hit me up on chat, we could teamviewer maybe if you’re able to.

                                      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

                                      G 1 Reply Last reply Jul 9, 2015, 1:44 PM Reply Quote 0
                                      • G
                                        GFm @Tom Elliott
                                        last edited by Jul 9, 2015, 1:44 PM

                                        @Tom-Elliott My lenovo 11e still hangs whether I use the undionly.kkpxe or kpxe. the kkpxe hangs on initializing devices and the kpxe hands on the part where it said menu (now it says Menu PXEXT). Any ideas?

                                        Thanks!

                                        FYI anyone looking at this, Tom helped get me updated to the latest dev version.

                                        1 Reply Last reply Reply Quote 0
                                        • cmlC
                                          cml Moderator
                                          last edited by Jul 9, 2015, 1:47 PM

                                          I have built the ipxe files with debug options turned on. This may give more insight into what is going on.

                                          tftpboot.tar.gz

                                          1 Reply Last reply Reply Quote 2
                                          • 1
                                          • 2
                                          • 1 / 2
                                          1 / 2
                                          • First post
                                            7/36
                                            Last post

                                          154

                                          Online

                                          12.1k

                                          Users

                                          17.3k

                                          Topics

                                          155.3k

                                          Posts
                                          Copyright © 2012-2024 FOG Project