Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[version-4-0] chore: Fix broken links (#3572) #3580

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ the edge location.
:::info

You can use several software tools to create a bootable USB drive, such as [balenaEtcher](https://www.balena.io/etcher).
For a PXE server, there are open-source projects such as [Fog](https://fogproject.org/download) or
For a PXE server, there are open-source projects such as [Fog](https://fogproject.org/download.php) or
[Windows Deployment Services](https://learn.microsoft.com/en-us/windows/deployment/wds-boot-support) for Windows.

:::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,56 +26,46 @@ to a bootable device, such as a USB stick.

1. Create a file called **user-data** that contains the additional configurations you want to override or inject.

<br />

```shell
touch user-data
```
```shell
touch user-data
```

2. Create an empty **meta-data** file:

<br />

```shell
touch meta-data
```
```shell
touch meta-data
```

3. Create an ISO using the following command.

MacOS/Linux:

```shell
mkisofs -output site-user-data.iso -volid cidata -joliet -rock user-data meta-data
```
MacOS/Linux:

Windows:
```shell
mkisofs -output site-user-data.iso -volid cidata -joliet -rock user-data meta-data
```

```shell
genisoimage -output site-user-data.iso -volid cidata -joliet -rock user-data meta-data
```
Windows:

This generates an ISO file called site-user-data.iso in the current directory.
```shell
genisoimage -output site-user-data.iso -volid cidata -joliet -rock user-data meta-data
```

<br />
This generates an ISO file called site-user-data.iso in the current directory.

4. Copy the ISO to a bootable device such as a USB drive.

<br />

:::info

You can use several software tools to create a bootable USB drive, such as
[balenaEtcher](https://www.balena.io/etcher). For a PXE server, there are open-source projects such as
[Fog](https://fogproject.org/download) or
[Fog](https://fogproject.org/download.php) or
[Windows Deployment Services](https://learn.microsoft.com/en-us/windows/deployment/wds-boot-support) for Windows.

:::

5. Once the Edge host arrives at the physical site. Load the USB drive to the Edge host before powering it on. The Edge
Installer will apply the new user data during the installation process.

<br />

## Validate

You can validate that the ISO image is not corrupted by attempting to flash a bootable device. Most software that
Expand Down