回答:
smbclientの * nixのマシンにインストールされている、あなたはすべてのWindows共有をマウントする必要はありません。たとえば、C:\ Directory \ file.txtを取得してLinuxコンピューターの/ tmpにコピーするには、次のようにします。
smbclient '//windowsserver/c$' -c 'lcd /tmp; cd Directory; get file.txt' -U administrator%password
詳細については、https://superuser.com/a/562728/48742を参照してください。これはそこで議論されました。
\Servername.com\testfolder
Windowsマシンで表示できる場合は、独自のユーザー名とパスワードを使用できます。
Linuxマシンでは、
sudo mount -t cifs -o username = YourWindowsLogin、password = YourWindowsPassword //Servername.com/testfolder / mnt / testfolder
/mnt/testfolder
事前に存在している必要があります。
次に、からファイルをコピーできます/mnt/testfolder
。
sudo umount /mnt/testfolder
フォルダをアンマウントするために使用します。