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

Adding Hirens 15.2 boot cd to the boot menu

Scheduled Pinned Locked Moved
FOG Problems
5
31
17.3k
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
    goempie @Wayne Workman
    last edited by May 4, 2016, 2:23 PM

    @Wayne-Workman
    I moved the hbcd.iso to the directory /var/www/fog/iso/hbcd.iso
    Then i changed the menu entry, but no party

    :hbcd
    #open iso with iso editor and remove pmagic to make it ligther
    set path /fog/iso
    set nfs_path /var/www/fog/iso/15.04_64
    initrd ${fog-ip}${path}/fog/iso/hbcd.iso
    kernel ${fog-ip}$ kernel memdisk iso raw || goto failed
    boot || goto failed
    goto start

    W 1 Reply Last reply May 4, 2016, 2:36 PM Reply Quote 0
    • W
      Wayne Workman @goempie
      last edited by Wayne Workman May 4, 2016, 8:37 AM May 4, 2016, 2:36 PM

      @goempie the pathing is wrong. you already have /fog/iso in your path variable, don’t need to do it again.

      also I don’t think you have to specify an IP for the memdisk kernel.

      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 May 4, 2016, 2:37 PM Reply Quote 0
      • G
        goempie @Wayne Workman
        last edited by May 4, 2016, 2:37 PM

        @Wayne-Workman

        Yes i saw it after i posted it.
        This is what i have now
        But still no champagne
        :hbcd
        #open iso with iso editor and remove pmagic to make it ligther
        initrd ${fog-ip}/fog/iso/hbcd.iso
        kernel memdisk iso raw || goto failed
        boot || goto failed
        goto start

        W 1 Reply Last reply May 4, 2016, 2:39 PM Reply Quote 0
        • W
          Wayne Workman @goempie
          last edited by May 4, 2016, 2:39 PM

          @goempie

          try

          :hbcd
          #open iso with iso editor and remove pmagic to make it ligther
          initrd ${fog-ip}/fog/iso/hbcd.iso
          kernel memdisk iso raw
          boot || goto failed
          goto start
          

          also - make sure the permissions on the iso are good, can you see it in a web browser?

          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 May 4, 2016, 2:46 PM Reply Quote 0
          • G
            goempie @Wayne Workman
            last edited by May 4, 2016, 2:46 PM

            @Wayne-Workman said in Adding Hirens 15.2 boot cd to the boot menu:

            :hbcd
            #open iso with iso editor and remove pmagic to make it ligther
            initrd ${fog-ip}/fog/iso/hbcd.iso
            kernel memdisk iso raw
            boot || goto failed
            goto start

            Yep i can see the iso in the browser and can download it.

            0_1462373310234_Screenshot_4.png

            1 Reply Last reply Reply Quote 0
            • G
              goempie
              last edited by May 4, 2016, 2:52 PM

              This is what i see when i go to /fog/service/ipxe/boot.php

              So i don’t think tha the :hbcd in the begining is necessary.
              But i deleted it and stil it doesn’t work.

              :hirensbcd
              :hbcd
              #open iso with iso editor and remove pmagic to make it ligther
              initrd ${fog-ip}/fog/iso/hbcd.iso
              kernel memdisk iso raw
              boot || goto failed
              goto start

              W 1 Reply Last reply May 5, 2016, 3:15 AM Reply Quote 0
              • W
                Wayne Workman @goempie
                last edited by Wayne Workman May 4, 2016, 9:16 PM May 5, 2016, 3:15 AM

                @goempie
                I did a little digging - this thread looks very promising:

                https://forums.fogproject.org/topic/3229/ipxe-iso-boot-problems

                Specifically this post:

                @csurepair said in IPXE ISO boot problems:

                Wahoo!!

                Shes up and running! Thank you both for the feedback, you guys deserve a beer! If your ever in Fort Collins, Colorado PM me haha.

                So for everyone else my problem was totally due to syntax and directory location,

                By changing CODE initrd ${fog-ip}/fog/iso/Hirens152.iso[/CODE] to CODE initrd http://${fog-ip}/fog/service/ipxe/iso/Hirens152.iso[/CODE] iPXE was able to fully resolve the path. This was only accomplished by making iPXE produce some sort of feedback via the below code(most graciously posted by Junkhacker),

                menu
                item --gap – ---------------- iPXE boot menu ----------------
                item BOOTCD Hirens BOOTCD
                item shell ipxe shell
                choose target && goto ${target}

                :BOOTCD
                initrd 192.168.1.130/fog/iso/Hirens152.iso ||
                echo failed to load iso if it stops here
                prompt
                chain memdisk iso raw ||
                echo failed to chain memdisk if it stops here
                prompt
                boot ||
                echo failed to boot here if it stops here
                prompt
                goto MENU

                :shell
                shell ||
                goto MENU

                autoboot[/CODE]

                Thanks again guys!!

                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 May 6, 2016, 6:58 AM Reply Quote 0
                • G
                  goempie @Wayne Workman
                  last edited by May 6, 2016, 6:58 AM

                  @Wayne-Workman

                  Ok getting there.

                  initrd http://${fog-ip}/fog/service/ipxe/iso/hbcd.iso ||
                  echo failed to load iso if it stops here
                  prompt
                  chain memdisk iso raw ||
                  echo failed to chain memdisk if it stops here
                  prompt
                  boot ||
                  echo failed to boot here if it stops here
                  prompt
                  goto MENU

                  When i boot i see that it downloads the iso then it comes to 100% and then i get the message

                  failed to load iso if it stops here

                  G 1 Reply Last reply May 6, 2016, 7:01 AM Reply Quote 0
                  • G
                    goempie @goempie
                    last edited by May 6, 2016, 7:01 AM

                    @goempie

                    IT WORKS 🙂

                    After the promt i just have to hit enter and then the hirens boots.

                    Thanks for the help.

                    I wil try to make a small guide on how to do it.

                    W 1 Reply Last reply May 6, 2016, 12:42 PM Reply Quote 1
                    • W
                      Wayne Workman @goempie
                      last edited by May 6, 2016, 12:42 PM

                      @goempie said in Adding Hirens 15.2 boot cd to the boot menu:

                      I wil try to make a small guide on how to do it.

                      Please do! I’ll add it to the wiki after you have it made.

                      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 Nov 8, 2017, 3:04 AM Reply Quote 0
                      • ?
                        A Former User @Wayne Workman
                        last edited by A Former User Nov 7, 2017, 9:09 PM Nov 8, 2017, 3:04 AM

                        Hey! Thanks for the topic!

                        If it does not exist

                        mkdir /var/www/fog/iso
                        

                        Copy ISO file

                        cp SOURCE_PATH/ISO_FILE /var/www/fog/iso
                        

                        Add

                        /var/www/fog/iso * (ro, sync, no_wdelay, insecure_locks, no_root_squash, insecure )
                        

                        in

                        /etc/exports
                        

                        Run

                        sudo service nfs-kernel-server restart
                        sudo service rpcbind restart
                        

                        Add a new menu in FOG WEB GUI

                        initrd  http://${fog-ip}/fog/iso/ISO_FILE.iso
                        chain memdisk iso raw
                        

                        WORKED PERFECTLY!

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

                        274

                        Online

                        12.0k

                        Users

                        17.3k

                        Topics

                        155.2k

                        Posts
                        Copyright © 2012-2024 FOG Project