Integrating Hirens Boot 15.2 into fog 1.2.0
- 
 I need some help integrating hirens boot into fog 1.2.0 
- 
 
- 
 ive aldready tried that, I can see “Advance Menu” but when i select that option, I entered user and password an then just a black screen 
- 
 Ive this on advance menu: 
 [CODE]:MENU
 menu
 item --gap – ------------- Advanced Menu --------------
 item Hirens Boot 15.2 Ghost Version
 item RETURN Return to the Top Menu
 choose --default RETURN --timeout 30000 target && goto ${target}:HIRENS 
 imgfetch [URL]http://${fog-ip}/ISO/hirensboot.iso[/URL]
 boot memdisk iso raw ||
 goto MENU:RETURN 
 boot [URL]http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac[/URL]} ||
 prompt
 goto MENUautoboot[/CODE] 
- 
 i believe ipxe is case sensitive. so [FONT=Consolas]Hirens =/= [/FONT][FONT=Consolas]HIRENS[/FONT] 
- 
 well just corrected that and i got the same results  
- 
 Where is the iso located on the fog server? Specifically the path? 
- 
 /var/www/iso 
- 
 iso, not ISO? 
- 
 which permision should I have on that folder? 
 the name of the folder is iso, I already corrected that on the code , still have the same issue
- 
 Assuming the /var/www/iso is exactly as depicted (case and all) and the exact iso file is exactly “hirensboot.iso” try this: 
 [CODE]:MENU
 menu
 item --gap – ------------- Advanced Menu --------------
 item HIRENS Boot 15.2 Ghost Version
 item RETURN Return to the Top Menu
 choose --default RETURN --timeout 30000 target && goto ${target}:HIRENS 
 initrd http://${fog-ip}/iso/hirensboot.iso
 chain memdisk iso raw ||
 goto MENU:RETURN 
 chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} ||
 prompt
 goto MENUautoboot[/CODE] 
- 
 thank you very much, it worked like charm  
 on a side note just make it worked with hirens 10.0 not 15.2, i still got nothing with 15.2, any ideas?
- 
 I don’t know what you mean. It worked, but it’s not working? 
- 
 worked with hirens boot version 10.0 but is not working with version 15.2 ( the newest available ) 
- 
 Okay, try removing the iso raw from the: [code]chain memdisk iso raw[/code] 
- 
 like this? 
 [CODE]:hirens15
 imgfetch http://${fog-ip}/iso/hirensboot15.iso
 boot memdisk ||
 goto MENU[/CODE]
 Still not working
- 
 why are you insistent on imgfetch and boot? 
- 
 sorry , my bad, my actual code is: 
 [CODE]:MENU
 menu
 item --gap – ------------- Advanced Menu --------------
 item hirens10 Hirens Boot 10
 item hirens15 Hirens Boot 15
 item w64 Windows 7 64b
 item RETURN Return to the Top Menu
 choose --default RETURN --timeout 30000 target && goto ${target}:hirens10 
 initrd http://${fog-ip}/iso/hirensboot10.iso
 chain memdisk iso raw ||
 goto MENU:hirens15 
 initrd http://${fog-ip}/iso/hirensboot15.iso
 chain memdisk ||
 goto MENU:w64 
 initrd http://${fog-ip}/iso/w764.iso
 chain memdisk iso raw ||
 goto MENU:RETURN 
 chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} ||
 prompt
 goto MENUautoboot[/CODE] hirens10 works 
 hirens15 not working ( tried with iso raw and without it )
 w764 not working ( tried with iso raw and without it )
- 
 According to that post, they had to redownload the hirens-boot-cd and extract the files. My best guess as to why it’s not working, is it’s not loading the first bytes of the file. Can you try redownloading the file? 
- 
 I did that with no changes, still getting the same response. Is there any way to pause the script? I think im getting an error message but it goes to fast 

