Je suis donc chez un ami et j'ai branché mon disque dur externe EXT4 à son routeur. Celui-ci le reconnaît et il peut connecter toute sa famille à ce dernier et tout fonctionne correctement.
Cependant , sur ma machine Ubuntu je peux :
et ça marche bien!
Sudo mount -t smbfs //192.168.1.1/Fab-EXT4 /media/MichelNAS/
mount: unknown filesystem type 'smbfs'
Sudo mount -t cifs //192.168.1.1/Fab-EXT4 /media/MichelNAS/
Password for root@//192.168.1.1/Fab-EXT4:
Sudo mount -t cifs -o guest //192.168.1.1/Fab-EXT4 /media/MichelNAS/
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Sudo mount -t cifs //192.168.1.1/Fab-EXT4 -o user=,password= /media/MichelNAS/
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Sudo mount -t cifs -o rw,noperm,sec=none //192.168.1.1/Fab-EXT4 /media/MichelNAS/
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Cependant:
smbclient --list=192.168.1.1 --no-pass
fonctionne parfaitement et a comme sortie:
WARNING: The "syslog" option is deprecated
Domain=[HOME] OS=[Unix] Server=[Samba 3.0.24]
Sharename Type Comment
--------- ---- -------
IPC$ IPC IPC Service (mymodem Sharing Files)
Fab-EXT4 Disk Share Fab-EXT4 directory
Domain=[HOME] OS=[Unix] Server=[Samba 3.0.24]
Server Comment
--------- -------
MYMODEM mymodem Sharing Files
Workgroup Master
--------- -------
HOME
Donc, évidemment, il me manque quelque chose complètement stupide ici , mais je suis perplexe quant à pourquoi je ne peux pas monter ce partage de la ligne de commande ???
Vous devez ajouter la version aux options en fonction de la version de cifs que vous utilisez. Donc, ce serait pour v1.0:
Sudo mount -t cifs -o rw,guest,vers=1.0 //192.168.1.1/Fab-EXT4 /media/MichelNAS/
Il y a aussi vers=2.0
et vers=3.0