Error: No such file or directory
Possible sources
This error originated from one of the following locations within the iPXE source code:
General advice
Try using the
latest version of iPXE. Your problem may have already been fixed.
Try building iPXE with the
debug option
DEBUG=script
You can
contact the iPXE developers and other iPXE users.
Refresh this page after 24 hours. This page is actively monitored, and further information may be added soon.
Additional notes
(Please edit this page to include any of your own useful hints and tips for fixing this error.)
This error indicates that your iPXE script has attempted to goto
a non-existent label.
Things to try:
Check the script line that defines the label, such as
:my_label
Check the script line that attempts to
goto
the label, such as
goto my_label
Note that the label name specified in the goto
command must not include the colon (:
) sign:
# This is wrong
goto :my_label
If you are using a dynamically-generated label, such as
goto host_${hostname}
then you should consider using a fallback label in case the dynamically-generated label does not exist. For example:
goto host_${hostname} || goto unknown