Skip to content

Commit

Permalink
chore: Fix broken links (#3572) (#3579)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliiiah authored Aug 13, 2024
1 parent 0ad4455 commit 7276360
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 27 deletions.
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

0 comments on commit 7276360

Please sign in to comment.