Skip to content
Merged
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 distributions, replace `update-initramfs -u` to `dracut --force` to regenerate initramfs file.
If script stops execution with "Couldn't find mdadm.conf file", then you can create mdadm.conf file using the following command:
```
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