2015年4月23日木曜日

[CentOS][VirtualBox]共有フォルダー作成

  1. VirtualBox メニューの [デバイス] > [共有フォルダー設定]
  2. Windows (Host OS) に共有フォルダーを作成する (ユーザー\vbox_share)
  3. フォルダ追加アイコンを押す
  4. フォルダーのパス = 2. で作成したフォルダ
    自動マウント = On
    永続化する = On
  5. マウントする
    # mkdir /mnt/vbox_share
    # mount -t vboxsf vbox_share /mnt/vbox_share
    
  6. 動作確認
    1. Windows 側の vbox_share フォルダにファイルを置く
    2. CentOS で /mnt/vbox_share の中身を確認する
      $ ls /mnt/vbox_share
      test.txt
      
  7. 起動時に自動マウントするように /etc/rc.local にマウントコマンドを追記する(★が追記箇所)
    #!/bin/sh
    #
    # This script will be executed *after* all the other init scripts.
    # You can put your own initialization stuff in here if you don't
    # want to do the full Sys V style init stuff.
    
    touch /var/lock/subsys/local
    mount -t vboxsf vbox_share /mnt/vbox_share ★
    

0 件のコメント:

コメントを投稿