Installing Oracle Linux 6.7 On Virtualbox: Tutorial Target
Installing Oracle Linux 6.7 On Virtualbox: Tutorial Target
Tutorial Procedure
A. Download Oracle Linux ISO image from Oracle
Download Oracle Linux ISO image from Oracle eDelivery: https://edelivery.oracle.com/
Page: 1
Click Continue
B. Create a new VM Machine, Mount the ISO image in a VM and start the installer
Define in the default location of your new VM machine in the settings:
Page: 2
Make some changes on the settings:
Page: 3
Select the ISO file.
Click Start
Page: 4
C. start the installer and install the OS
Tip: right CTL to release mouse from the VM
Page: 5
Select the region
Page: 6
Click Next
Page: 7
Page: 8
After reboot, Click on Forward
Page: 9
Tip: to turn the auto-scale windows of the VM machine on and off, use the hotkey hostKey+ C.
Page: 10
Set secure Linux to permissive
Disable firewall
service iptables stop
mkdir -p /u01/app/oracle/product
useradd -m -n orauser
passwd orauser
# allow users belongs to “dba” group switching to an oracle account (this will open vi for you):
visudo
# add the following line to make dba group members execute any command by any user:
%dba ALL=(ALL) ALL
To test that:
sudo su – oracle
Guest Additions won’t work if you install it immediately after performing the steps above. It requires “kernel source”.
# the following installed 277MB in my test and took about 15 minutes to finish:
yum update
Page: 11
# this will actually be installed by the “yum update” command. I just run it to confirm it is there:
IF all went good with you, mount the Guest Additions CD image to start installing them, as shown below:
You will notice that the mouse pointer will be captured by the VM machine once you hover the pointer anywhere inside the VM window. You
don’t have click inside it.
Page: 12
Also, these Additions will allow you to share files between your host machine and VM machine.
Page: 13