UEFI won boot tools via fog menu.
-
@dureal99d This will depend entirely on what you’re trying to boot and how your machines are setup and what not.
Maybe the tools you’re trying to boot don’t support UEFI mode. Maybe you left Secure Boot on BIOS. Or maybe it’s something else entirely.
Check those two things for us first, if for nothing else but to rule them out.
-
@Quazz said in UEFI won boot tools via fog menu.:
tools you’re trying to boot don’t support UEFI mode. Maybe you left Secure Boot on BIOS. Or maybe it’s something else entirely.
Check those two things for us first, if for nothing else but to rule them outI have tried and I get the error “VFS: Unable to mount root?”
I am confused as to why I would experience this error on booting Linux isos when they say uefi is backwards compatible.
Should it not stand to reason that I should not have to change anything as relates to boot codes?
-
@dureal99d It will not automatically recognize the difference. UEFI will not auto boot to another type system. Essentially, as I understand it, all “UEFI is backwards compatible” means is UEFI Motherboards will allow Legacy style systems to work, but it doesn’t necessarily have to do this “on the fly”.
-
@dureal99d To add on further, backwards compatible does not mean, LEGACY, is “forwards compatible”
-
FOG supports both BIOS and UEFI, and the FOG Client installs on all major versions of Windows, OSX, and Linux. What your trying to do isn’t directly supported, but of course you can make it work. Follow Quazz’s suggestion, check secure boot, check the material you’re wanting to boot actually works in the mode you want it to work in. Also read through this, and if you get your particular project working for yourself, you should contribute what you did here in the forums - we are a community of volunteers and you can help too, by contributing what you did - step by step.
Now, what are you trying to boot, exactly?
-
@Wayne-Workman said in UEFI won boot tools via fog menu.:
what are you trying to boot, exactly?
@Wayne-Workman I am trying to boot Linux Ubuntu, mint, fedora, centos and windows tools as I am able to in bios boot mode.
-
@Wayne-Workman @Tom-Elliott it wont even run memtools in uefi mode
-
@Wayne-Workman then link you provided works well in bios boot mode but non of it works in uefi mode. it gives an nfs error but nfs is working fine. oh and cent os and fedora boots just fine though. nothing else
-
@dureal99d What is running DHCP in the environment? Have you seen this article? https://wiki.fogproject.org/wiki/index.php?title=BIOS_and_UEFI_Co-Existence
-
@Wayne-Workman said in UEFI won boot tools via fog menu.:
is running DHCP in the environment? Have you seen this
@Wayne-Workman I am running ddwrt on a router and using it as my dhcp. I seen that article but remain confused as it points out the dns masq part which applies to me, but u really don’t understand this part. # x.x.x.x = TFTP. what does the x.x.x.x represent?
-
@dureal99d I’m not sure how dd-wrt handles vendor classes, but I’m pretty certain it can.
What’s likely happening with your problem is dd-wrt is only setup to serve a bios boot file, which is why most of your uefi ISOs don’t work.
Perhaps one of the @Developers or @Moderators or @Testers have dd-wrt at home and know how, but you need to set it up to hand out
ipxe.efi
for uefi identifying machines andundionly.kkpxe
for BIOS identifying machines (generally).If you read through the article I posted you might better understand what you need to do with your dd-wrt router.
Here’s something I found by searching Google for ‘dd-wrt dhcp vendor class’. The thread is probably so old that it doesn’t even apply to the latest version but it might point you in the right direction:
http://www.dd-wrt.com/phpBB2/viewtopic.php?p=643566Another idea is to turn off dhcp on the router temporarily and then edit the fog servers
/opt/fog/.fogsettings
file and change do dhcp and bldhcp to yes or 1, and rerun the installer and just see if your ISOs work then. Because FOGs dhcp setup already well supports many architecture types, some of that work I contributed to, it’s solid. To undo this, same steps but turn those two settings off, then manually stop and disable dhcp. For Ubuntu it should beservice dhcpd stop;service dhcpd disable
Here is more info on .fogsettings if you get lost or curious:
https://wiki.fogproject.org/wiki/index.php?title=.fogsettings -
@Wayne-Workman said in UEFI won boot tools via fog menu.:
same steps but turn those two settings off
@Wayne-Workman will look into this and report back. promptly!!!
-
@Wayne-Workman yeah after reviewing it all I have been looking for how to add onto “dhcp-boot=undionly.kpxe,fog ip address” and add on the efi boot options. I am stomped on how to do this on dnsmsq of ddwrt.
-
From what I’ve read on the Wiki they need to be added to the additional dnsmasq options manually.
https://wiki.fogproject.org/wiki/index.php/FOG_with_DD-WRT_firmware
-
@Quazz said in UEFI won boot tools via fog menu.:
From what I’ve read on the Wiki they need to be added to the additional dnsmasq options manually.
https://wiki.fogproject.org/wiki/index.php/FOG_with_DD-WRT_firmware
@Quazz I know they need to be added on manually and i have no issue with that.
but what to add in addition to “dhcp-boot=undionly.kpxe,192.xxx.x.xxx” is what stomps me.Ive tried several configs all of which seems to make nothing work.
-
@dureal99d The dnsmasq on ddwrt may not support the options you need, not sure. I know they use a custom lightweight version of it.
-
@Quazz said in UEFI won boot tools via fog menu.:
sq on ddwrt may not support the options you need, not sure. I know they use a custom lightweight
@Quazz I am willing to try that option but i dont understand the x.x.x.x part outside of the obvious ip parts in the begin.
dhcp-match=set:bios,60,PXEClient:Arch:00000 dhcp-boot=tag:bios,undionly.kpxe,x.x.x.x,x.x.x.x <<clearly IP # ?.?.?.? = TFTP/FOG server IP
-
@dureal99d I found this https://davidmnoriega.wordpress.com/2015/07/27/linksys-e4200-and-dd-wrt/
Which seems to indicate you need to replace tag with #
So eg
dhcp-match=set:bios,60,PXEClient:Arch:00000 dhcp-boot=#:bios,undionly.kpxe,x.x.x.x,x.x.x.x
Might not be all you need, though.
-
@dureal99d The x.x.x.x simply refers to where your TFTP resides. The IP address of your FOG server most likely, unless you set it up elsewhere.
-
@Quazz said in UEFI won boot tools via fog menu.:
@dureal99d The x.x.x.x simply refers to where your TFTP resides. The IP address of your FOG server most likely, unless you set it up elsewhere.
@Quazz so does that mean i should put my tftp ip and where it says fog serve ip put the fog ip?