Skip to content
Open
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
7 changes: 6 additions & 1 deletion articles/virtual-machines/enable-nvme-temp-faqs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ sections:
elif [ -e "/etc/mdadm.conf" ]; then
mdadm_conf_path="/etc/mdadm.conf"
else
print "Couldn't find mdadm.conf file"
printf "Couldn't find mdadm.conf file"
exit 1
fi

Expand Down Expand Up @@ -323,6 +323,11 @@ sections:

exit 0
```
For RHEL/CentOS based distributives, replace `update-initramfs -u` to `dracut --force` to regenerate initramfs file.
Copy link

Copilot AI Nov 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The word 'distributives' should be 'distributions'.

Suggested change
For RHEL/CentOS based distributives, replace `update-initramfs -u` to `dracut --force` to regenerate initramfs file.
For RHEL/CentOS based distributions, replace `update-initramfs -u` to `dracut --force` to regenerate initramfs file.

Copilot uses AI. Check for mistakes.
If script stops execution with "Couldn't find mdadm.conf file", then you can create mdadm.conf file using commands:
Copy link

Copilot AI Nov 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The phrase 'using commands' is followed by a single command, not multiple commands. Consider changing to 'using command:' or 'using the following command:' for clarity.

Suggested change
If script stops execution with "Couldn't find mdadm.conf file", then you can create mdadm.conf file using commands:
If script stops execution with "Couldn't find mdadm.conf file", then you can create mdadm.conf file using the following command:

Copilot uses AI. Check for mistakes.
```
sudo touch /etc/mdadm/mdadm.conf
```
- question: |
How can I move the Windows pagefile from an OS disk to a temp NVMe disk?
answer: |
Expand Down