Difference between revisions of "Oracle Linux"

From Ittichai Chammavanijakul's Wiki
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 20: Line 20:
 
<pre>
 
<pre>
 
# yum install gcc
 
# yum install gcc
 +
</pre>
 +
 +
* Yum to download only
 +
<pre>
 +
* Install download-only plugin first. This will give additional options to yum command.
 +
# yum install yum-downloadonly
 +
 +
* Download the package
 +
# yum update gcc -y --downloadonly --downloaddir=/tmp
 +
 
</pre>
 
</pre>
  
Line 25: Line 35:
 
* Install all dependencies. You can find the dependencies easily by trying to install the Guest Addition.
 
* Install all dependencies. You can find the dependencies easily by trying to install the Guest Addition.
 
<pre>
 
<pre>
# yum install kernel-uek-devel-2.6.32-300.3.1.el6uek.x86_64
+
# yum install kernel-uek-devel
 
# cd /media/VBOXADDITIONS_4.1.14_77440
 
# cd /media/VBOXADDITIONS_4.1.14_77440
 
# sh ./VBoxLinuxAdditions.run
 
# sh ./VBoxLinuxAdditions.run
 +
</pre>
 +
 +
* Download directly.
 +
Look for the version you're interested in http://download.virtualbox.org/virtualbox/
 +
<pre>
 +
wget http://download.virtualbox.org/virtualbox/4.2.6/VBoxGuestAdditions_4.2.6.iso
 +
mount VBoxGuestAdditions_4.2.6.iso -o loop /mnt
 +
cd /mnt
 +
./VBoxLinuxAdditions.run
 +
 
</pre>
 
</pre>
  
Line 38: Line 58:
 
or with options
 
or with options
 
# mount -t vboxsf -o umask=0022,gid=500,uid=500 downloads downloads
 
# mount -t vboxsf -o umask=0022,gid=500,uid=500 downloads downloads
 +
or
 +
# mount.vboxsf downloads downloads
 +
 
</pre>
 
</pre>
 
* Reference http://www.oraclenerd.com/2011/03/virtualbox-and-shared-folders.html
 
* Reference http://www.oraclenerd.com/2011/03/virtualbox-and-shared-folders.html
  
 
[[Category: Linux]]
 
[[Category: Linux]]

Latest revision as of 16:05, 21 March 2013

Setup Yum repository

Oracle Linux 6

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

  • Configure to get through proxy
export http_proxy=proxy:portnum

For example, 
export http_proxy=http://wwwproxygate.com:8888
  • Install package, for example, gcc.
# yum install gcc
  • Yum to download only
* Install download-only plugin first. This will give additional options to yum command.
# yum install yum-downloadonly

* Download the package
# yum update gcc -y --downloadonly --downloaddir=/tmp

Install Guest Addition

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

Look for the version you're interested in http://download.virtualbox.org/virtualbox/

wget http://download.virtualbox.org/virtualbox/4.2.6/VBoxGuestAdditions_4.2.6.iso
mount VBoxGuestAdditions_4.2.6.iso -o loop /mnt
cd /mnt
./VBoxLinuxAdditions.run

Shared folder

  • Create a shared folder from VBox first, for example, named "downloads".
# cd /media
# mkdir downloads
# mount -t vboxsf downloads downloads
or with options
# mount -t vboxsf -o umask=0022,gid=500,uid=500 downloads downloads
or
# mount.vboxsf downloads downloads