CentOS 7
Sponsored Link

VirtualBox : GuestAdditions インストール2016/01/23

 
VirtualBox の仮想マシンに GuestAdditions をインストールして、仮想マシンのパフォーマンスを改善します。
例として、CentOS_7 という名称の仮想マシンに GuestAdditions をインストールします。
[1] ホスト側から対象の仮想マシンドライブに GuestAdditions ディスクをアタッチしておきます。
[root@dlp ~]#
VBoxManage storageattach CentOS_7 \
--storagectl CentOS_7_SATA \
--port 0 \
--type dvddrive \
--medium /usr/share/virtualbox/VBoxGuestAdditions.iso
[2] 仮想マシン側で GuestAdditions をインストールします。
# 事前に必要なものをインストール

[root@guest ~]#
yum -y update kernel

[root@guest ~]#
[root@guest ~]#
yum -y install gcc make bzip2 kernel-devel
[root@guest ~]#
mount /dev/cdrom /mnt

[root@guest ~]#
cd /mnt

[root@guest mnt]#
./VBoxLinuxAdditions.run

[root@guest mnt]#
[3] GuestAdditions をインストールすると、パフォーマンスも改善され、マウスのずれ等も統合されます。
関連コンテンツ