VM Ware Playerでの設定

まず最初にVM Wareで色々なことをやろうとする前に、PlayerとTools両方を最新のものにアップグレードする。
これをするだけでずいぶんと時間の節約になる。

以下debian 12(.5.2) がゲスト, windows 8がホストの場合の設定。

コピー・ペーストの設定(.vmxファイルに)
[code]
isolation.tools.copy.disable = "FALSE"
isolation.tools.paste.disable = "FALSE"
[/code]

共有ディレクトリ名を表示
[code]
$ vmware-hgfsclient
<shared dir name>
[/code]

パッケージ
[code]
sudo apt-get install open-vm-tools open-vm-tools-dkms open-vm-tools-desktop
[/code]

マウント
[code]
sudo mount -t fuse.vmhgfs-fuse -o allow_other .host:/<share dir> <mount point>
[/code]

/etc/fstab
[code]
.host:/<share dir> <mount point> fuse.vmhgfs-fuse allow_other 0 0
[/code]