This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c | |
index 8fafcb2cd..2b1c7b378 100644 | |
--- a/arch/x86/kvm/vmx/vmx.c | |
+++ b/arch/x86/kvm/vmx/vmx.c | |
@@ -2363,7 +2363,8 @@ static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf, | |
CPU_BASED_MWAIT_EXITING | | |
CPU_BASED_MONITOR_EXITING | | |
CPU_BASED_INVLPG_EXITING | | |
- CPU_BASED_RDPMC_EXITING; | |
+ CPU_BASED_RDPMC_EXITING | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Thanks to https://gist.github.com/wenzhixin/43cf3ce909c24948c6e7 | |
# Execute this script in your home directory. Lines 17 and 21 will prompt you for a y/n | |
# Install Oracle JDK 8 | |
apt install openjdk-8-jdk | |
# Get SDK tools (link from https://developer.android.com/studio/index.html#downloads) | |
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip |