• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. csurepair
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Best 0
    • Controversial 0
    • Groups 0

    csurepair

    @csurepair

    3
    Reputation
    438
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Location Fort Collins

    csurepair Unfollow Follow

    Latest posts made by csurepair

    • RE: unable to boot HP z240 in UEFI

      We are having this same exact issue when attempting to boot Z240’s. Has there been any progress with addressing this? We can get around it somewhat by manually registering the workstations but that really isnt a soulution.

      Any config hacks/bios tweaks/kernal updates for the Z240 would be greatly aptreatiated.

      Thanks all!

      posted in Hardware Compatibility
      C
      csurepair
    • RE: Mac support

      We would very much love to see mac support!

      posted in Feature Request
      C
      csurepair
    • RE: 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!!

      posted in FOG Problems
      C
      csurepair
    • RE: IPXE ISO boot problems

      I actually noticed that mistake right after I posted the code. This is what I have now,
      [CODE]:MENU
      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
      chain memdisk iso raw ||
      echo failed to boot
      prompt
      goto MENU

      :shell
      shell ||
      goto MENU

      autoboot[/CODE]

      And the link resolves fine via a browser,

      [IMG]https://collinscustoms.info/public.php?service=files&t=179ccb1dc8da0d41cb951c602e37ea4e[/IMG]

      But it continues to immediately return to the previous main menu. It seems strange to me that it returns to the main menu so fast without throwing any sort of error or timeout message.

      posted in FOG Problems
      C
      csurepair
    • RE: IPXE ISO boot problems

      Hi Junkhacker,

      Thanks for the quick response! I just changed that around and unfortunately the boot menu is still acting the same way. I double checked all the permissions on the folder and everything seems fine. Does the .iso need to be mounted or is it correct to have the file just as a stand alone .iso inside that pxe “pointed” folder? Thanks again for taking the time.

      posted in FOG Problems
      C
      csurepair
    • IPXE ISO boot problems

      Hello all first time poster here,

      Ive been trying to boot Hirens live CD(or any iso for that matter) from the advanced ipxe menu(i.e. fog admin area). When booting a client the menu & iPXE shell appear correctly but when I select Hirens boot CD it brings me immediately back to the the main pxe menu. This is the code that I am using,

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

      :BOOTCD
      initrd ${192.168.1.130}/var/www/fog/service/ipxe/iso/Hirens152.iso
      chain memdisk iso raw ||
      echo failed to boot
      prompt
      goto MENU

      :shell
      shell ||
      goto MENU

      autoboot[/CODE]

      Any insight would be greatly appreciated thanks!

      Server specs:

      FOG version 1.1.1
      Ubuntu 14.04 LTS

      posted in FOG Problems
      C
      csurepair