Identify CPU features that support performance and isolation for full virtualization on an x86_64 host.
Which pair is hardware virtualization assistance?
Intel VT-x and AMD-V provide CPU-level virtualization support for running guest operating systems.
Detailed explanation
Incorrect. SSE and AVX are instruction-set extensions, not the main hardware virtualization features.
Incorrect. SSE and AVX are instruction-set extensions, not the main hardware virtualization features.
Correct. Intel VT-x and AMD-V are CPU virtualization extensions.
Correct. Intel VT-x and AMD-V are CPU virtualization extensions.
Incorrect. ext4 and XFS are filesystems.
Incorrect. ext4 and XFS are filesystems.
Incorrect. SSH and TLS are network-security technologies.
Incorrect. SSH and TLS are network-security technologies.
Try it yourself
An example you can run in a temporary verification environment.
grep -Em1 -o 'vmx|svm' /proc/cpuinfo || trueExpected result
公開されていればIntelはvmx、AMDはsvm。非表示の環境もあるKey points
- VT-x
- AMD-V
- CPU virtualization assistance
Notes
- Environment: x86_64 Linux。nested環境ではflagが隠れる場合あり
- Command output formatting can vary slightly by distribution or tool version.
- Run the example in a temporary directory or process when possible.
Foundation review
Read the scope first
Check whether the command acts on the current shell, a new process, an existing process, or a file.
Verify the observable result
Use the supplied command and compare the output with the expected result.