Linux(ゲスト)から、リモート側(LANの別のPC)のWindows共有ファイルへのアクセス
マウントポイントディレクトリを作成
# mkdir /mnt/pcshare
Windows(ホスト)で共有設定
Linuxからマウント
# mount -t cifs //192.168.56.1/tmp /mnt/pcshare -o username=your_windows_account,password=xxx
以上でおk
# ls /mnt/pcshare
...