透過 debian 作業系統存取網路共享

透過 debian 作業系統存取網路共享

我正在嘗試透過 Putty 將 SVN 備份檔案從本機目錄移至 NAS 設備,並使用以下語法,但是我收到以下錯誤訊息 -

debian@debianvm:~/svn-backups$ smbclient //IP/Volume_1/NAS/SVN_backups/ -U 'username' 'password'
Domain=[DLINK-88F0C6] OS=[Unix] Server=[Samba 3.2.8]
tree connect failed: NT_STATUS_BAD_NETWORK_NAME

您能否讓我知道根本原因是什麼?

答案1

您必須向 smbclient 提供共享名稱;不支援子目錄。

smbclient //IP/Volume_1 -U username password

您應該能夠透過在某處安裝共用來驗證這一點:

mount -t cifs //IP/volume_1 /mnt/tmp -o user=username,pass=password

相關內容