Linux

Come montare unità NAS in linux

Come montare unità NAS in linux

1) Informazioni che bisogna avere:
==>Nome utente e password dell’unita da condividere
==>Nome condivisione  (Esempio: //server/share) o IP address
==> accesso di root a linux

2) accedere a linux come root

3) Creare un punto di mount:
# mkdir -p /mnt/ntserver

4)usare il seguente comando per montare l’ unita’
# mount -t smbfs -o username=(nomeutente),password=(tua password)//server/share /mnt/ntserver

5)Accedere all’unita’ montata con il seguente comando:
# cd /mnt/ntserver; ls -l