0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Mac の Virtual Box で Guest からホストフォルダを共有する方法

Last updated at Posted at 2018-02-26

Mac の Virtual Box で Guest の CentOS7 と Windows 10 とホストのフォルダを共有する方法をメモする。
(他の投稿では抜けている箇所が幾つかあったので…)

Guest の CentOS に Virtual Box の拡張機能を追加

CentOS7 で Virtual Box の共有フォルダマウント機能を利用するには、vboxadd service が必要。以下手順。

事前準備

# yum update -y
# reboot

1.共有フォルダマウント用ソフトの準備
ホストで対象仮想マシンを選択して、Virtual Box のメニュー [Device] => [Insert Guest Additions CD images] を選択して Guest の CentOS にイメージをマウント

2.Guest の CentOS で CD イメージをマウント

# mount /dev/cdrom /mnt

3.vboxadd のビルドに必要なパッケージをインストール(この2つが必要なはず)

# yum -y install gcc kernel-devel 

4.vboxadd のインストール

# cd /mnt
# ./VBoxLinuxAdditions.run

5.終了

# shutdown -h now

6.共有フォルダの設定
Virtual Box の [設定] => [共有フォルダ] で [+] をクリックしてマウント先のフォルダを選択。
永続化と自動マウントにチェックを入れる。

7.共有フォルダの確認

# ls /media/sr_<shared_folder_name>

でマウント先のファイルやフォルダが表示されれば OK!

Guest の Windowns に Virtual Box の拡張機能を追加

  1. CentOS7 の 1. と一緒
  2. CD/DVD から VboxWindowsAdditions を起動
  3. インストールウィザードに沿ってインストール
  4. 再起動
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?