4 069
contributi
Riga 68: | Riga 68: | ||
<pre> | <pre> | ||
mount -t smbfs -o username=username_valida,password=password_valida //SERVER/shared /mnt/punto_di_mount | mount -t smbfs -o username=username_valida,password=password_valida //SERVER/shared /mnt/punto_di_mount | ||
</pre> | |||
Per fare in modo che la nostra Debian monti automaticamente all'avvio la risorsa condivisa Windows, dobbiamo modificare il file /etc/fstab, il file che contiene tutte le informazioni sui filesystem montati: | |||
<pre> | |||
# nano /etc/fstab | |||
</pre> | |||
Alla fine del file aggiungiamo la riga: | |||
<pre> | |||
//SERVER/shared /mnt/punto_di_mount smbfs username=username_valida,password=password_valida 0 0 | |||
</pre> | </pre> | ||