3
1

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 3 years have passed since last update.

VirtualBox上のUbuntu Server 20.04とWindows10間でフォルダ共有する

Last updated at Posted at 2021-03-27

環境

  • Windows 10 Pro / 20H2 build 19042.804
  • virtualbox 6.1.18
  • Ubuntu Server 20.04.2 LTS

Virtual Box で共有フォルダーの設定を行う

  1. Virtual Box上で、仮想マシンを選択し右クリックから設定を選択
  2. 左側のメニューから共有フォルダーを選択
  3. ウィンドウの右側にある追加フォルダを選択
  4. 共有フォルダーの追加ウィンドウが表示されるので以下の項目を入力
  • フォルダーのパス : windows側のフォルダ名
  • フォルダー名 : 仮想マシン側で見えるファイルシステム名
  • 自動マウント : チェックを入れる
  • マウントポイント : 仮想マシン側で見えるフォルダパス

vbox共有ファイル設定.jpg

Ubuntuにvirtualbox Guest Additionsをインストールする

Ubuntuを起動したら仮想マシンウィンドウのメニューからデバイスGuest Additions CD イメージの挿入を選択。
Guest Additions CD イメージの挿入.jpg

次に、ログインして以下のコマンドを入力してツールをインストールする。

$ sudo apt install virtualbox-guest-utils

インストールが終わったら仮想マシンを起動しなおす。
再度ログインしたらdfコマンドで、共有フォルダが追加されているか確認する。
共有フォルダの確認.jpg

ユーザーをvboxfsグループに追加する

追加された共有フォルダのグループを確認する。

$ cd /media
$ ls -l

共有フォルダのグループ確認.jpg

ユーザーをvboxfsグループに追加。
以下のコマンドを入力。

$ sudo gpasswd -a ユーザ名 vboxsf

グループに追加後、ログインし直す。

共有フォルダにアクセステスト

共有ファイルにアクセスできるかテストファイルを作成してみる

$ touch /media/vpc_share/test

windouws上で共有フォルダを確認して、作ったテストファイルがあれが成功です。

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?