How to Set a Virtual Machine in Windows OS
Overview
Installing a virtual machine on a Windows operating system seems to be the easiest and most basic process that almost every computer software or data scientist should master. However, in reality, this process sometimes can be tedious and time-consuming because (1) not knowing which software to use (2) configuring the virtual machine to my expectations is sometimes confusing (3) the most difficult (from my point of view) but very basic process, “enabling the internet to the VM”
I made this guide so developers can easily follow and install a VM without any struggle in their Windows machine. In this guide, I will be configuring a CentOS 7 VM that will be further used to build the HBase project to tune the database for faster query operations.
Guide Main Contents:
Install Hyper-V
Step 1
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
Step 2
DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V
CentOS Download & Configuration
Step 1
Step 2 [Set Up the VM]
领英推荐
Step 3 [Configure The Network]
If all these settings are followed correctly, you should be able to use virtual machines within your Windows machine.
Issues
Set-VMVideo -VMName "VM Name" -HorizontalResolution 1920 -VerticalResolution 1080 -ResolutionType Single
References
Thanks for sharing, Humberto! Setting up a virtual machine can indeed be a game-changer for development, and your guide simplifies the process perfectly. Excited to save some valuable 'gold' time with this efficient approach!