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

    CentOS 7: Could not download init.xz properly, FOG will not install

    Scheduled Pinned Locked Moved Solved
    Linux Problems
    3
    10
    2.9k
    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.
    • F
      fhrivers
      last edited by

      My FOG installation keeps failing with this part:

      • Downloading kernel, init and fog-client binaries… * Could not download init.xz properly

      The error logs show this information at the end:

      New password: Retype new password: Changing password for user fog.

      passwd: all authentication tokens updated successfully.
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory
      sha256sum: init.xz.sha256: No such file or directory

      I have no idea what this means. Should I try an older version of CentOS?

      1 Reply Last reply Reply Quote 0
      • Tom ElliottT
        Tom Elliott
        last edited by

        You should not require downgrading CentOS in order to download the binaries for FOG.

        The No such file or directory, itself, seems fine, as the first time it checks for it (and the binaries don’t exist) you will get the error, however the fact that it tried the 10 times and failed leaves me to think maybe you’re behind a proxy server?

        In that case you’ll likely need to create a .curlrc file that provides the system with proxy information.

        I’m only guessing based on the (very) limited information I’m seeing right now.

        I’m also guessing you’re attempting to install FOG 1.5.5 from the master branch of git (or you downloaded a tar.gz?)

        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
        • F
          fhrivers
          last edited by

          I’m following the instructions for CentOS 7 on the Wiki which has the git method. I’m running it on a VirtualBox VM that’s directly connected to the Internet.

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

            @fhrivers CentOS 7 should definitely be working fine. We are testing the installer on an automated basis: http://fogtesting.theworkmans.us/

            It’s strange. Can you please try downloading the binaries manually?

            cd fogproject/tmp
            curl --silent -kOL https://fogproject.org/inits/init.xz
            curl --silent -kOL https://fogproject.org/inits/init.xz.sha256
            curl --silent -kOL https://fogproject.org/inits/init_32.xz
            curl --silent -kOL https://fogproject.org/inits/init_32.xz.sha256
            curl --silent -kOL https://fogproject.org/kernels/bzImage
            curl --silent -kOL https://fogproject.org/kernels/bzImage.sha256
            curl --silent -kOL https://fogproject.org/kernels/bzImage32
            curl --silent -kOL https://fogproject.org/kernels/bzImage32.sha256
            curl --silent -kOL https://github.com/FOGProject/fog-client/releases/download/0.11.16/FOGService.msi
            curl --silent -kOL https://github.com/FOGProject/fog-client/releases/download/0.11.16/SmartInstaller.exe
            curl --silent -kOL https://github.com/FOGProject/fog-client/releases/download/0.11.16/FOGService.msi.sha256
            curl --silent -kOL https://github.com/FOGProject/fog-client/releases/download/0.11.16/SmartInstaller.exe.sha256
            

            Then re-run the installer:

            cd ../bin
            ./installfog.sh
            ...
            

            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

            F 2 Replies Last reply Reply Quote 0
            • F
              fhrivers @Sebastian Roth
              last edited by

              @Sebastian-Roth said in CentOS 7: Could not download init.xz properly, FOG will not install:

              curl --silent -kOL https://fogproject.org/inits/init.xz

              I did all of this and still the same error and identical errors in the install logs.

              1 Reply Last reply Reply Quote 0
              • F
                fhrivers @Sebastian Roth
                last edited by

                @Sebastian-Roth said in CentOS 7: Could not download init.xz properly, FOG will not install:

                curl --silent -kOL https://fogproject.org/inits/init_32.xz

                When I take out the --silent I get this error: curl: (35) TCP connection reset by peer

                1 Reply Last reply Reply Quote 0
                • F
                  fhrivers
                  last edited by

                  @Sebastian-Roth said in CentOS 7: Could not download init.xz properly, FOG will not install:

                  https://fogproject.org/inits/init.xz

                  Also, it seems as if the stuff from the Github url loads fine. I can’t load anything from the fogproject url. In fact when I paste the fogproject url in my browser I get an error too.

                  Tom ElliottT 1 Reply Last reply Reply Quote 0
                  • Tom ElliottT
                    Tom Elliott @fhrivers
                    last edited by

                    @fhrivers Do you guys have a web filter? Potentially a web filter blocking https://fogproject.org ?

                    I can download the files just fine so I’m not quite sure what’s going on and this is the best guess I can give.

                    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

                    F 1 Reply Last reply Reply Quote 0
                    • F
                      fhrivers @Tom Elliott
                      last edited by

                      @Tom-Elliott Yes, we’re blocking freeware and shareware sites but I haven’t had any problems getting to the site. But I’ll add it to the webfilter anyways.

                      F 1 Reply Last reply Reply Quote 0
                      • F
                        fhrivers @fhrivers
                        last edited by

                        @fhrivers That did it. I assumed that since I could browse this site, I didn’t need to add it to the web filter. I’m up and running! Thanks!

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

                        204

                        Online

                        12.0k

                        Users

                        17.3k

                        Topics

                        155.2k

                        Posts
                        Copyright © 2012-2024 FOG Project