Guest Additionsインストール方法
Virtual BoxではゲストOSにGuest Additionsをインストールすることで、ゲストOSの操作性が格段にアップします。
よほどの理由が無い限りGuest Additionsをインストールすることをお勧めします。
【インストールの下準備】
VurtualBoxにインストールされたCentOSにGuest Additionsをインストールするためには「gcc」「make」「kernel-devel」というツールが必要です。
もし、まだインストールされていない場合はここで下記のコマンドを実行し、インストールしておきましょう。
[root@localhost ~]# yum install make
[root@localhost ~]# yum install kernel-devel
【インストール】
準備が整ったらGuest Additionsのインストールを行います。
- VirtualBoxでCentOSを立ち上げて、メニューバー>>デバイス(D)>>Guest Additionsのインストール(I)を選択します。
- これでGuest AdditionsがVirtualBoxのCDドライブに挿入されたことになります。
Guest Additionsの挿入されたCDドライブのマウント
まずはマウント先のディレクトリを作成し、そこにCDドライブをマウントします。
[root@localhost ~]# mount -r /dev/cdrom /mnt/cdrom
マウントが完了したらその中身を確認します。
各OSのGuest Additionsインストールファイルがそこにはあるはずです。
[root@localhost ~]# ls -l
total 15910
dr-xr-xr-x 4 root root 2048 Dec 17 19:11 32Bit
dr-xr-xr-x 3 root root 2048 Dec 17 19:11 64Bit
-r–r–r– 1 root root 191 Nov 7 19:23 AUTORUN.INF
-r-xr-xr-x 1 root root 1745185 Dec 17 19:09 VBoxLinuxAdditions-amd64.run
-r-xr-xr-x 1 root root 1600269 Dec 17 19:11 VBoxLinuxAdditions-x86.run
-r–r–r– 1 root root 4228608 Dec 17 19:07 VBoxSolarisAdditions.pkg
-r-xr-xr-x 1 root root 4707320 Dec 17 18:45 VBoxWindowsAdditions-amd64.exe
-r-xr-xr-x 1 root root 477712 Dec 17 18:53 VBoxWindowsAdditions.exe
-r-xr-xr-x 1 root root 3526368 Dec 17 18:54 VBoxWindowsAdditions-x86.exe
Guest Additionsのインストール
今回インストールするのはCentOS5で、32bit版なのでVBoxLinuxAdditions-x86.runを実行します。
もし、お使いのOSが64bit版であればVBoxLinuxAdditions-amd64.runを実行します。
オプションはよく分からないのであれば「all」で問題無いでしょう。
インストールの実行ファイルを実行すると以下のメッセージが表示されて、インストールが完了します
インストール後はCentOSの再起動をしましょう。
Building the VirtualBox Guest Additions kernel module…
Building the shared folder support kernel module…
Installing the VirtualBox Guest Additions…
Successfully installed the VirtualBox Guest Additions.
You must restart your guest system in order to complete the installation.