12
14

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.

Virtualbox の 共有フォルダ を マウント/アンマウント したい

Posted at

:arrow_up: マウントする

# マウント
sudo mount -t vboxsf <共有フォルダ名> <マウント先ディレクトリ>

ディレクトリやファイルの権限、パーミッションを設定するときは下記のように -o で追加オプションを指定する。
uidgid についてはユーザー名は指定できない。

sudo mount -t vboxsf <共有フォルダ名> <マウント先ディレクトリ> -o uid=$UID,gid=$GID,fmode=644,dmode=755

:arrow_down: アンマウントする

umount するときは -t vboxsf に加えて -i を指定し、umount.<TYPE> のヘルパーを使いに行かないようする。
-i がないと umount.vboxsf が存在しないので NFSとして扱おうとしてアンマウントできずにコケる。

# アンマウント
sudo umount -t vboxsf -i <マウント先ディレクトリ>

  • 検証環境は Virtualbox 5.0、ゲストは Fedora 22
12
14
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
12
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?