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

    Kernel update behind proxy & Problems with fixparts

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    3
    13
    3.0k
    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.
    • T
      Tywyn
      last edited by

      @george1421 Thank you.
      Found the proxy setting - works.

      You were writing about a debug deploy.
      Actually I wanted to capture. Is the debuy capture procedure the same as you described it for the debug deploy task?

      george1421G 1 Reply Last reply Reply Quote 0
      • george1421G
        george1421 Moderator @Tywyn
        last edited by george1421

        @Tywyn said in Kernel update behind proxy:

        Actually I wanted to capture. Is the debuy capture procedure the same as you described it for the debug deploy task?

        For this part you could do a capture or deploy. The key is to get to the linux command prompt. Run the command and then delete the task on the FOG UI, then schedule your new capture task. It is a bit concerning if you have this error on capture. We’ve seen this when the disk was gpt to start with then reformatted as mbr. And typically when you go to deploy an image mbr type there are bits of gpt information left behind which causes this error. In your case you are capturing the image… this may be something new.

        Now I can tell you that you upgraded to the latest kernel, you will probably want to downgrade to 4.15.2 if you experience 3-4 minute delay when deploying your image when creating the disk partitions.

        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!

        1 Reply Last reply Reply Quote 0
        • T
          Tywyn
          last edited by

          @george1421
          Ok … as you say, there may be something screwed up with the partitions: I usually installed Windows 7 on one partition, because I thought, this would be needed for the resizability when capturing images with fog.

          As far as I can see, Windows 10 comes along with 3-4 partitions and the way to reduce it to one partition like I did on win 7 does not work here. I reduced it to 2 Partition. I assume that this may cause the trouble, or?

          I did try a debug capture, but the fixparts command is not in the dirs mentioned in the PATH-env variable. In which directory should it be?

          george1421G 1 Reply Last reply Reply Quote 0
          • T
            Tywyn
            last edited by

            Will reinstall the OS on the host now and see, whether I can capture then … Results will be posted here on monday

            1 Reply Last reply Reply Quote 0
            • george1421G
              george1421 Moderator @Tywyn
              last edited by

              @Tywyn said in Kernel update behind proxy:

              I did try a debug capture, but the fixparts command

              Interesting since fixparts should be in the FOS image. Either way we’ll wait until you update this thread.

              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!

              1 Reply Last reply Reply Quote 0
              • T
                Tywyn
                last edited by Tywyn

                @george1421
                Well, in total we have 3 different models of computers with Windows 10, Fujitsu, HP and Bluechip.
                Bluechip and Fujitsu can be captured meanwhile without problems.

                Reinstalled the HP with the default partition layout that comes with windows 10. There are 2 partitions. One with 549MB, system reserved, the other one is for C:.
                EFI is disabled.

                During boot I see this error-message. Dunno whether it is relevant:

                [Firmware Bug]: TSC_DEADLINE disabled due to Errata; please update microcode to version: 0x22 (or later)
                

                Capture still fails with (sorry for the bad quality):
                0_1535963239552_IMAG0026.jpg

                Your suggested debug steps are still not working, since fixparts is obviously not in the image.

                1 Reply Last reply Reply Quote 0
                • T
                  Tywyn
                  last edited by

                  Could some admin please change the subject of this thread to “Kernel update behind proxy & Problems with fixparts” ? Thank you 🙂

                  1 Reply Last reply Reply Quote 0
                  • S
                    Sebastian Roth Moderator
                    last edited by Sebastian Roth

                    @Tywyn Could you try debug mode again. You should have fixparts there: /usr/sbin/fixparts /dev/sda

                    We actually had an issue with a missing fixparts binary two months ago but that should only be the case if you installed FOG 1.5.4 around that time.

                    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
                    • T
                      Tywyn
                      last edited by Tywyn

                      @Sebastian-Roth

                      Back from vacation. Sorry for my late reply.

                      Tried it again. It seems, that fixparts is not in /usr/sbin.
                      So, is the kernel-update the thing I have to do? If yes:
                      I am not a experienced user of fog, so: Can I break something?

                      Is Kernel - 4.18.3 TomElliot 64 the one to choose?

                      So I have to download it and where exactly do I have to put it?

                      One more question for my understanding: I captured other PCs without problems. If the fixparts is missing in the image, why was I able to capture the other PC-models? Or is fixparts only needed in debug mode?

                      Thanx for your help!
                      Rainer

                      1 Reply Last reply Reply Quote 0
                      • S
                        Sebastian Roth Moderator
                        last edited by

                        @Tywyn Did you install FOG 1.5.4 about two month ago? There was an issue with fixparts back then [ref].

                        I’d advise you to manually update kernel and inits.

                        cd /var/www/html/fog/service/ipxe
                        mkdir backup
                        mv bzImage* init* backup/
                        wget https://fogproject.org/kernels/bzImage
                        wget https://fogproject.org/kernels/bzImage32
                        wget https://fogproject.org/inits/init.xz
                        wget https://fogproject.org/inits/init_32.xz
                        chown apache:apache bzImage* init*
                        

                        The last command might be different depending on the Linux OS you have. This should be correct for Ubuntu/Debian. Try chown httpd:httpd bzImage* init* if you are on CentOS/Fedora.

                        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
                        • T
                          Tywyn
                          last edited by Tywyn

                          @Sebastian-Roth & @george1421
                          Thank you for your help. Updated the kernel and inits the way you described it. Now the capture works.
                          Installed 1.5.4 on august 9th, as far as I can see.

                          1 Reply Last reply Reply Quote 0
                          • 1 / 1
                          • First post
                            Last post

                          196

                          Online

                          12.0k

                          Users

                          17.3k

                          Topics

                          155.2k

                          Posts
                          Copyright © 2012-2024 FOG Project