PXE (Preboot Execution Environment) is like having a "network installer" that can set
up computers without needing USB drives or DVDs. When you turn on a computer, instead
of booting from its hard drive, it can boot from the network and automatically install
an operating system or run diagnostics.
This is especially useful for setting up multiple computers in your cloud
infrastructure. PXE can automatically install and configure the same operating system
on many machines, making it easy to expand your personal cloud.
PXE Configuration
Manage PXE boot assets and network boot configuration
{error ? (
Error Loading Assets
{(error as Error).message}
) : (
{/* Version Selection */}
{/* Assets List */}
Boot Assets
{isLoading ? (
) : (
{pxeAssets.map((asset) => (
{getAssetIcon(asset.type)}
{asset.type}
{getStatusBadge(asset.downloaded, isAssetDownloading(asset.type as AssetType))}
{schematic?.version &&
Version: {schematic.version}
}
{asset.size &&
Size: {(asset.size / 1024 / 1024).toFixed(2)} MB
}
{asset.path && (
{asset.path}
)}
{getDownloadProgress(asset.type as AssetType)}
{!asset.downloaded && !isAssetDownloading(asset.type as AssetType) && (
)}