Storage

安裝 Qnap NAS - Ubutnu

  • March 31, 2017

我想將我的 qnap 安裝到我的 Linux Mint 筆記型電腦上。NAS的IP地址是:192.168.0.25

所以我執行了這個命令:

sudo mount -t nfs -o username=user_name,password=my_password 192.168.0.25:HR /mnt/qnap

我有這個錯誤:

mount.nfs: an incorrect mount option was specified

當我使用 UI 並點擊 Network 然後點擊 MyNas 圖示時,出現此錯誤:

Failed to retrieve share list from server: Connection refused

你有什麼解決辦法嗎?

== 更新 ==

這是 showmount 命令輸出:

showmount -e 192.168.0.25

Export list for 192.168.0.25:
/homes       
/my_home       
/Web         
/Public      
/OceanKTV    
/Multimedia  
/Download    
/Container  

NFS 掛載既沒有username也沒有password選項。一個典型的 NFS 掛載命令如下所示。

sudo mount -t nfs 192.168.0.25:/Multimedia /mnt

有關更多掛載選項,您可以參考 NFS 的聯機幫助頁。

引用自:https://serverfault.com/questions/841788