<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>how to install virtualbox 6.1 on rhel 8 Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/how-to-install-virtualbox-6-1-on-rhel-8/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 26 Dec 2019 23:43:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How To Install VirtualBox on CentOS 8 / RHEL 8</title>
		<link>https://www.osradar.com/how-to-install-virtualbox-on-centos-8-rhel-8/</link>
					<comments>https://www.osradar.com/how-to-install-virtualbox-on-centos-8-rhel-8/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Sat, 04 Jan 2020 00:19:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how to install virtualbox 6.1 on Centos 8]]></category>
		<category><![CDATA[how to install virtualbox 6.1 on rhel 8]]></category>
		<category><![CDATA[install virtualbox 6.1]]></category>
		<category><![CDATA[Linux virtualbox installation]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16997</guid>

					<description><![CDATA[<p>Introduction: VirtualBox is an open source software that helps in running various Virtual machines on your single operating system. It helps us to test , learn or use the various operating system at a time without installing them on the physical system. Requirements: Make sure your hardware supports Virtualization. Follow the below steps to easily [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-virtualbox-on-centos-8-rhel-8/">How To Install VirtualBox on CentOS 8 / RHEL 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2><strong>Introduction:</strong></h2>



<p>VirtualBox is an open source software that helps in running various Virtual machines on your single operating system.  It helps us to test , learn or use the various operating system at a time without installing them on the physical system.</p>



<h3><strong>Requirements:</strong></h3>



<p>Make sure your hardware supports Virtualization. Follow the below steps to easily install the VirtualBox on your CentOS operating system.</p>



<h3><strong>Step 1: Update your System</strong></h3>



<p>Fire the given command to update your system.</p>



<pre class="wp-block-verse">yum update -y</pre>



<h3><strong>Step 2: Install Development Tools</strong></h3>



<p>Install the required Development Tools by running</p>



<pre class="wp-block-verse">yum install -y kernel-devel kernel-headers gcc make perl elfutils-libelf-devel</pre>



<p></p>



<p>Install wget as it will require to Install files from Terminal.</p>



<pre class="wp-block-verse">yum -y install wget</pre>



<p>Now, reboot your system.</p>



<pre class="wp-block-verse">reboot</pre>



<h3><strong>Step 3: Set up VirtualBox repository</strong></h3>



<p>Type the below command to download the Oracle VirtualBox public key.</p>



<pre class="wp-block-verse">wget https://www.virtualbox.org/download/oracle_vbox.asc</pre>



<p>Now, import the VirtualBox key to the system.</p>



<pre class="wp-block-verse">rpm --import oracle_vbox.asc</pre>



<p>After importing key, download the VirtualBox repository file for CentOS 8 / RHEL 8 from their official site and move it to the <strong>/etc/yum.repos.d/ </strong>directory.</p>



<pre class="wp-block-verse">wget http://download.virtualbox.org/virtualbox/rpm/el/virtualbox.repo -O /etc/yum.repos.d/virtualbox.repo</pre>



<p>To manually add a repository, paste the below data in your Terminal.</p>



<pre class="wp-block-verse">cat &lt;&lt;EOF&gt;&gt; /etc/yum.repos.d/virtualbox.repo<br> [virtualbox]<br> name=Oracle Linux / RHEL / CentOS - 8 x86_64 - VirtualBox<br> baseurl=http://download.virtualbox.org/virtualbox/rpm/rhel/8/x86_64/<br> enabled=1<br> gpgcheck=1<br> repo_gpgcheck=1<br> gpgkey=https://www.virtualbox.org/download/oracle_vbox.asc<br> EOF</pre>



<h4><strong>Install the VirtualBox by using the below command</strong></h4>



<p><strong>Virtual Box 6.1</strong></p>



<pre class="wp-block-verse">yum install -y VirtualBox-6.1</pre>



<p><strong>For Virtual Box 6.0</strong></p>



<pre class="wp-block-verse">yum install -y VirtualBox-6.0</pre>



<p><strong>VirtualBox 5.2 run</strong></p>



<pre class="wp-block-verse">yum install -y VirtualBox-5.2</pre>



<p>You can check the status of the VirtualBox Linux kernel module service by </p>



<pre class="wp-block-verse">systemctl status vboxdrv</pre>



<p>If it is disabled, start and enable it.</p>



<pre class="wp-block-verse">systemctl start vboxdrv</pre>



<pre class="wp-block-verse">[root@localhost sabi]# systemctl status vboxdrv<br> ● vboxdrv.service - VirtualBox Linux kernel module<br>    Loaded: loaded (/usr/lib/virtualbox/vboxdrv.sh; enabled; vendor preset: disa&gt;<br>    Active: <strong>active (exited) </strong>since Tue 2019-12-24 00:03:47 GMT; 2min 44s ago<br>   Process: 11958 ExecStart=/usr/lib/virtualbox/vboxdrv.sh start (code=exited, s&gt;<br> Dec 24 00:03:47 localhost.localdomain systemd[1]: Starting VirtualBox Linux ker&gt;<br> Dec 24 00:03:47 localhost.localdomain vboxdrv.sh[11958]: vboxdrv.sh: Starting V&gt;<br> Dec 24 00:03:47 localhost.localdomain systemd[1]: Started VirtualBox Linux kern&gt;<br> lines 1-8/8 (END)</pre>



<h3><strong>Step 4: Accessing VirtualBox</strong></h3>



<p>Type virtualbox in the terminal </p>



<pre class="wp-block-verse">VirtualBox</pre>



<p>OR</p>



<p>Navigate to <strong>Activaties</strong> and search for <strong>Oracle VirtualBox</strong></p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="798" height="593" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/oracle-vm-box.jpg" alt="" class="wp-image-17030" srcset="https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box.jpg 798w, https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box-300x223.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box-768x571.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box-80x60.jpg 80w, https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box-265x198.jpg 265w, https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box-485x360.jpg 485w, https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box-696x517.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/oracle-vm-box-565x420.jpg 565w" sizes="(max-width: 798px) 100vw, 798px" /></figure></div>



<h3><strong>Step 5: Creating Virtual Machine</strong></h3>



<p>Choose new and set up new virtual machine followed by the Operating System requirements.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="797" height="600" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/image-1.png" alt="" class="wp-image-17031" srcset="https://www.osradar.com/wp-content/uploads/2019/12/image-1.png 797w, https://www.osradar.com/wp-content/uploads/2019/12/image-1-300x226.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/image-1-768x578.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/image-1-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2019/12/image-1-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2019/12/image-1-696x524.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/image-1-558x420.png 558w" sizes="(max-width: 797px) 100vw, 797px" /></figure></div>



<h3><strong>Installing Extension Pack </strong></h3>



<p>Extension pack offers you to add additional functionalities to VirtualBox including virtualBox Remote Desktop Protocol, usb 2.0/3.0 and others.</p>



<p>Note: Install the same version as you have installed the VirtualBox.</p>



<pre class="wp-block-verse">cd /tmp</pre>



<pre class="wp-block-verse">[root@localhost tmp]# wget https://download.virtualbox.org/virtualbox/6.1.0/Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack<br> --2019-12-24 00:12:06--  https://download.virtualbox.org/virtualbox/6.1.0/Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack<br> Resolving download.virtualbox.org (download.virtualbox.org)… 2.21.36.34<br> Connecting to download.virtualbox.org (download.virtualbox.org)|2.21.36.34|:443… connected.<br> HTTP request sent, awaiting response… 200 OK<br> Length: 10923164 (10M) [text/plain]<br> Saving to: ‘Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack’<br> Oracle_VM_VirtualBo 100%[===================&gt;]  10.42M  2.26MB/s    in 5.7s    <br> 2019-12-24 00:12:14 (1.83 MB/s) - ‘Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack’ saved [10923164/10923164]</pre>



<p>Now, Navigate to <strong>VirtualBox&gt;&gt;Preference&gt;&gt;Extensions&gt;&gt;</strong> and click on the <strong>+ icon</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="800" height="597" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack.jpg" alt="" class="wp-image-17032" srcset="https://www.osradar.com/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack.jpg 800w, https://www.osradar.com/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack-300x224.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack-768x573.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack-80x60.jpg 80w, https://www.osradar.com/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack-265x198.jpg 265w, https://www.osradar.com/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack-696x519.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/choose-the-dest-point-to-install-vmbox-extension-pack-563x420.jpg 563w" sizes="(max-width: 800px) 100vw, 800px" /></figure>



<p>Click on the Install button to Install Extension pack and Accept License Agreements.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="800" height="597" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/click-on-install.jpg" alt="" class="wp-image-17033" srcset="https://www.osradar.com/wp-content/uploads/2019/12/click-on-install.jpg 800w, https://www.osradar.com/wp-content/uploads/2019/12/click-on-install-300x224.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/click-on-install-768x573.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/click-on-install-80x60.jpg 80w, https://www.osradar.com/wp-content/uploads/2019/12/click-on-install-265x198.jpg 265w, https://www.osradar.com/wp-content/uploads/2019/12/click-on-install-696x519.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/click-on-install-563x420.jpg 563w" sizes="(max-width: 800px) 100vw, 800px" /></figure></div>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="799" height="598" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/license-agreement-vmbox.jpg" alt="" class="wp-image-17034" srcset="https://www.osradar.com/wp-content/uploads/2019/12/license-agreement-vmbox.jpg 799w, https://www.osradar.com/wp-content/uploads/2019/12/license-agreement-vmbox-300x225.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/license-agreement-vmbox-768x575.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/license-agreement-vmbox-80x60.jpg 80w, https://www.osradar.com/wp-content/uploads/2019/12/license-agreement-vmbox-265x198.jpg 265w, https://www.osradar.com/wp-content/uploads/2019/12/license-agreement-vmbox-696x521.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/license-agreement-vmbox-561x420.jpg 561w" sizes="(max-width: 799px) 100vw, 799px" /></figure></div>



<p>You will be asked to provide pass for authentication</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="792" height="595" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/provide-pass-to-continue.jpg" alt="" class="wp-image-17035" srcset="https://www.osradar.com/wp-content/uploads/2019/12/provide-pass-to-continue.jpg 792w, https://www.osradar.com/wp-content/uploads/2019/12/provide-pass-to-continue-300x225.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/provide-pass-to-continue-768x577.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/provide-pass-to-continue-80x60.jpg 80w, https://www.osradar.com/wp-content/uploads/2019/12/provide-pass-to-continue-265x198.jpg 265w, https://www.osradar.com/wp-content/uploads/2019/12/provide-pass-to-continue-696x523.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/provide-pass-to-continue-559x420.jpg 559w" sizes="(max-width: 792px) 100vw, 792px" /></figure></div>



<p>You will see the screen similar to below upon successful installation.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="603" height="346" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/vmbox-successful-instalation.jpg" alt="" class="wp-image-17036" srcset="https://www.osradar.com/wp-content/uploads/2019/12/vmbox-successful-instalation.jpg 603w, https://www.osradar.com/wp-content/uploads/2019/12/vmbox-successful-instalation-300x172.jpg 300w" sizes="(max-width: 603px) 100vw, 603px" /></figure></div>



<p>This is how You can Install VirtualBox on CentOS 8 / RHEL 8 and enjoy the amazing features.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-virtualbox-on-centos-8-rhel-8/">How To Install VirtualBox on CentOS 8 / RHEL 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-virtualbox-on-centos-8-rhel-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
