File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/guides/configuration-guide/openstack Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,21 +9,21 @@ sidebar_label: Nova
9
9
### AMD
10
10
11
11
```
12
- echo "options kvm-amd nested=1 " | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
12
+ echo "options kvm-amd nested=y " | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
13
13
sudo modprobe -r kvm_amd
14
14
sudo modprobe kvm_amd
15
15
cat /sys/module/kvm_amd/parameters/nested
16
- 1
16
+ Y
17
17
docker restart nova_libvirt
18
18
```
19
19
20
20
### Intel
21
21
22
22
```
23
- echo "options kvm-intel nested=1 " | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
23
+ echo "options kvm-intel nested=y " | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
24
24
sudo modprobe -r kvm_intel
25
25
sudo modprobe kvm_intel
26
26
cat /sys/module/kvm_intel/parameters/nested
27
- 1
27
+ Y
28
28
docker restart nova_libvirt
29
29
```
You can’t perform that action at this time.
0 commit comments