Ubuntu

如何在 UBUNTU 中從 NAS 驅動器掛載文件夾

  • September 20, 2020

我有一個 NAS 驅動器(ZYXel 320),我按照此說明安裝名為 Files 的文件夾。

當我執行以下命令時,我可以檢查:

smbclient -L //192.168.12.237

我可以看到要安裝的磁碟:

Sharename       Type      Comment
   ---------       ----      -------
   public          Disk      
   video           Disk      
   photo           Disk      
   music           Disk      
   admin           Disk      
   Files           Disk      
   Volume1         Disk      
   IPC$            IPC       IPC Service (NSA320S)
Reconnecting with SMB1 for workgroup listing.

   Server               Comment
   ---------            -------

   Workgroup            Master
   ---------            -------
   WORKGROUP            NSA320S

然後我嘗試使用以下命令安裝它:

sudo mount -t cifs -O username"??????",password="*******" //192.168.12.237/Files /mnt/nas/files

但隨後它要求我輸入 NAS 上的 root 密碼:

Password for root@//192.168.12.237/Files:  ***********

當我提供我擁有的密碼時,它給了我一個錯誤:

mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

錯誤是什麼?我需要擁有 NAS 驅動器的管理員密碼嗎?

經過一些工作,事實證明我的 NAS 支持 SAMBA v1 和 ubuntu 試圖用 V2 掛載它。要解決此問題,請使用 ver=1.0 強制安裝它

https://askubuntu.com/questions/915856/mounting-windows-share-using-smb-2-1-or-greater

https://bugzilla.redhat.com/show_bug.cgi?id=1474539

如何在 Linux 下掛載 windows/samba windows 共享?

嘗試這個:

sudo mount -t cifs -o user=_USERNAME_,uid=1000,gid=1001 //192.168.12.237/Files  /mnt/nas/files

引用自:https://unix.stackexchange.com/questions/608044