mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-24 13:32:42 +00:00
egrep is obsolescent; using grep -E
This commit is contained in:
parent
1a4b893e85
commit
e4c9f46441
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ To run virtualization on Fedora, you need:
|
|||
KVM requires a CPU with virtualization extensions, found on most consumer CPUs. These extensions are called Intel VT or AMD-V. To check whether you have CPU support, run the following command:
|
||||
|
||||
----
|
||||
$ egrep '^flags.*(vmx|svm)' /proc/cpuinfo
|
||||
$ grep -E '^flags.*(vmx|svm)' /proc/cpuinfo
|
||||
----
|
||||
|
||||
If this command results in nothing printed, your system does not support the relevant virtualization extensions. You can still use QEMU/KVM, but the emulator will fall back to software virtualization, which is much slower.
|
||||
|
|
Loading…
Reference in a new issue