Skip to content

Commit 8470fd5

Browse files
Reflect network-scripts not installed by default.
Since CentOS 8 Stream and newer no longer include `network.service` provided by the package `network-scripts` by default it must be installed manually, This should be mentioned as it is likely to save people a fair bit of time troubleshooting VMs that deploy successfuly but can't communicate thereafter.
1 parent ad58304 commit 8470fd5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

articles/virtual-machines/linux/create-upload-centos.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,12 @@ Preparing a CentOS 7 virtual machine for Azure is very similar to CentOS 6, howe
227227
* The NetworkManager package no longer conflicts with the Azure Linux agent. This package is installed by default and we recommend that it is not removed.
228228
* GRUB2 is now used as the default bootloader, so the procedure for editing kernel parameters has changed (see below).
229229
* XFS is now the default file system. The ext4 file system can still be used if desired.
230+
* Since CentOS 8 Stream and newer no longer include `network.service` by default, you will need to install it manually:
231+
232+
```console
233+
sudo yum install network-scripts
234+
sudo systemctl enable network.service
235+
```
230236

231237
**Configuration Steps**
232238

0 commit comments

Comments
 (0)