Difference between revisions of "Oracle Linux"

From Ittichai Chammavanijakul's Wiki
Jump to navigation Jump to search
Line 23: Line 23:
  
 
== Shared folder ==
 
== Shared folder ==
* Reference http://www.oraclenerd.com/2011/03/virtualbox-and-shared-folders.html
+
* Create a shared folder from VBox first, for example, named "downloads".
Create a shared folder first, for example, named "downloads".
 
 
<pre>
 
<pre>
 
# cd /media
 
# cd /media
Line 30: Line 29:
 
# mount -t vboxsf downloads downloads
 
# mount -t vboxsf downloads downloads
 
</pre>
 
</pre>
 +
* Reference http://www.oraclenerd.com/2011/03/virtualbox-and-shared-folders.html

Revision as of 10:04, 28 April 2012

Setup Yum repository

Oracle Linux 6

# cd /etc/yum.repos.d
# wget http://public-yum.oracle.com/public-yum-ol6.repo

  • Install package, for example, gcc.
# yum install gcc

Install Guest Addition

  • Install all dependencies. You can find the dependencies easily by trying to install the Guest Addition.
# yum install kernel-uek-devel-2.6.32-300.3.1.el6uek.x86_64
# cd /media/VBOXADDITIONS_4.1.14_77440
# sh ./VBoxLinuxAdditions.run

Shared folder

  • Create a shared folder from VBox first, for example, named "downloads".
# cd /media
# mkdir downloads
# mount -t vboxsf downloads downloads