Skip to content

Commit 555a8b2

Browse files
committed
typo fixes
1 parent 27e9830 commit 555a8b2

4 files changed

+6
-6
lines changed

_posts/2024-12-02-Cobbler-v3.3.7-Debian-Deployment-Guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Configure the Cobbler Profile to use the new autoinstall (preseed) template and
144144
cobbler profile edit --name Debian12.8-x86_64 --autoinstall 'bookworm-workaround.seed' --repos "bookworm-latest bookworm-security bookworm-updates"
145145
```
146146

147-
Finally, create a new Cobbler System to PXE boot and automatically install Debian 12 Bookworm, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, being sure not to use a duplicate MAC or IP addresse of any other Cobbler System, then sync up Cobbler.
147+
Finally, create a new Cobbler System to PXE boot and automatically install Debian 12 Bookworm, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, being sure not to use a duplicate MAC or IP address of any other Cobbler System, then sync up Cobbler.
148148

149149
```shell
150150
cobbler system add --name "Debian12.8" --profile Debian12.8-x86_64 --hostname "debian12-8" --mac-address "aa:bb:cc:dd:ee:ff" --netboot-enabled true --ip-address "10.0.0.12" --netmask "255.255.255.0" --gateway "10.0.0.1" --name-servers "10.0.0.1 1.1.1.1 8.8.8.8"

_posts/2024-12-11-Cobbler-v3.3.7-OpenSUSE-Deployment-Guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Configure the Cobbler Profile to use the new autoinstall (`autoyast.xml`) templa
102102
cobbler profile edit --name SUSE-15.6-x86_64 --autoinstall suse-15.6-autoyast.xml
103103
```
104104

105-
Finally, create a new Cobbler System to automatically boot and install openSUSE Leap 15.6, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, being sure not to use a duplicate MAC or IP addresse of any other Cobbler System, and then sync up Cobbler:
105+
Finally, create a new Cobbler System to automatically boot and install openSUSE Leap 15.6, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, being sure not to use a duplicate MAC or IP address of any other Cobbler System, and then sync up Cobbler:
106106

107107
```shell
108108
cobbler system add --name SUSE-15.6 --profile SUSE-15.6-x86_64 --netboot-enabled true --hostname SUSE-15-6 --interface eth0 --static true --mac-address "aa:bb:cc:dd:ee:ff" --ip-address 10.0.0.15 --gateway 10.0.0.1 --netmask 255.255.255.0 --name-servers "10.0.0.1 1.1.1.1 10.0.0.10"

_posts/2024-12-11-Cobbler-v3.3.7-Ubuntu-Deployment-Guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Then configure it as the autoinstallation template for the Ubuntu 20.04 Cobbler
136136
cobbler profile edit --name Ubuntu20-casper-x86_64 --autoinstall Ubuntu20_cloud-init_user-data
137137
```
138138

139-
Create a new Cobbler System to install Ubuntu 20.04 automatically based on the system's (PXE client's) MAC address, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, and being sure not to use a duplicate MAC or IP addresse of any other Cobbler System:
139+
Create a new Cobbler System to install Ubuntu 20.04 automatically based on the system's (PXE client's) MAC address, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, and being sure not to use a duplicate MAC or IP address of any other Cobbler System:
140140

141141
```shell
142142
NAME="Ubuntu20-auto" && cobbler system add --name $NAME --profile Ubuntu20-casper-x86_64 --kernel-options "root=/dev/ram0 ramdisk_size=1500000 ip=dhcp url=http://10.0.0.10/cblr/pub/cloud-init/Ubuntu20/ubuntu-20.04.6-live-server-amd64.iso autoinstall cloud-config-url=http://10.0.0.10/cblr/svc/op/autoinstall/system/$NAME" --mac-address "aa:bb:cc:dd:ee:ff" --static true --ip-address "10.0.0.20" --netmask "255.255.255.0" --gateway "10.0.0.1" --name-servers "10.0.0.1 1.1.1.1 10.0.0.10" --hostname "Ubuntu20" --netboot-enabled true && unset NAME

_posts/2025-04-14-Cobbler-v3.3.7-Windows-Deployment-Guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,15 @@ mount -o ro,loop ~/Downloads/Win10_22H2_English_x64.iso /mnt/Windows10
135135
cobbler import --name Win10 --path /mnt/Windows10
136136
```
137137

138-
**Optional:** *If* the PXE client will use legacy-BIOS firmware instead of UEFI, toggle `uefi` to `false` in the Cobbler Profile autoinstallation metadata:
138+
***Optional:*** If the PXE client will use legacy-BIOS firmware instead of UEFI, toggle `uefi` to `false` in the Cobbler Profile autoinstallation metadata:
139139

140140
```shell
141141
cobbler profile edit --name Win10-x86_64 --autoinstall-meta 'uefi'='false' --in-place
142142
```
143143

144144
> More info in Cobbler's [official docs](https://cobbler.readthedocs.io/en/v3.3.7/user-guide/wingen.html).
145145
146-
Finally, create a new Cobbler System to PXE boot and automatically install Windows 10 Pro, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, being sure not to use a duplicate MAC addresse of any other Cobbler System, then sync up Cobbler.
146+
Finally, create a new Cobbler System to PXE boot and automatically install Windows 10 Pro, replacing the *"aa:bb:cc:dd:ee:ff"* with the MAC address of your PXE client, being sure not to use a duplicate MAC address of any other Cobbler System, then sync up Cobbler.
147147

148148
```shell
149149
cobbler system add --name Win10 --profile Win10-x86_64 --mac-address "aa:bb:cc:dd:ee:ff" --netboot-enabled true --enable-ipxe true
@@ -156,7 +156,7 @@ The **PXE Client** VM can now be powered on, and should automatically boot to PX
156156

157157
## Windows 11 PXE Deployment
158158

159-
**Optional:** *If* installing Windows 11 on unsupported hardware, use the following commands to edit the `startnet.template` file in order to bypass hardware requirements for the PXE client.
159+
***Optional:*** If installing Windows 11 on unsupported hardware, use the following commands to edit the `startnet.template` file in order to bypass hardware requirements for the PXE client.
160160

161161
```shell
162162
CMD1=$(echo 'reg add HKLM\\SYSTEM\\Setup\\LabConfig /v BypassSecureBootCheck /t REG_DWORD /d 1 /f' | unix2dos)

0 commit comments

Comments
 (0)