how to check if virtualization is enabled in bios in manjaro
sudo modprobe msr sudo rdmsr 0x3A
Here is what the above code is Doing:
1. Load the msr kernel module
2. Read the MSR register 0x3A
The output of the above code should be something like this:
0x0
This means that the MSR register 0x3A is set to 0.
Now, let’s set the MSR register 0x3A to 0x1.
sudo modprobe msr
sudo wrmsr 0x3A 0x1