Last active
May 8, 2021 18:14
-
-
Save pm-hwks/f745238a7c6182814286b21b536c554a to your computer and use it in GitHub Desktop.
[Install Virtualbox] Install virtualbox on centos #centos #virtualbox #setup #install #virtualization
This file contains 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
## Reference : | |
### https://phoenixnap.com/kb/how-to-install-virtualbox-centos-7 | |
sudo yum update -y | |
### Install vboxdrv Kernel Module | |
sudo yum install –y patch gcc kernel-headers kernel-devel make perl wget | |
sudo reboot | |
### Download VirtualBox Repository | |
sudo wget http://download.virtualbox.org/virtualbox/rpm/el/virtualbox.repo -P /etc/yum.repos.d | |
### Install virtualbox | |
sudo yum install VirtualBox-6.0 | |
### Check virtualbox status | |
sudo systemctl status vboxdrv | |
### Openvirtualbox | |
VirtualBox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment