Mount Windows share as guest from command line [duplicate]
This question already has an answer here:
16.04 CIFS “Host is down” but they are not
5 answers
So I'm at a friend and hooked up my external EXT4 HDD to his router and it recognises it and he can connect his entire family to it and everything works fine.
However, on my Ubuntu machine I can:
- Go to my File Manager (Nemo)
File Connect to Server
and that works fine!
but I cannot:
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)
However:
smbclient --list=192.168.1.1 --no-pass
works perfectly and has as output:
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
So I'm obviously missing something completely stupid here, but I'm stumped as to why I cannot mount this share fro the command line???
networking mount cifs
marked as duplicate by muru, Community♦ Nov 14 '18 at 0:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
16.04 CIFS “Host is down” but they are not
5 answers
So I'm at a friend and hooked up my external EXT4 HDD to his router and it recognises it and he can connect his entire family to it and everything works fine.
However, on my Ubuntu machine I can:
- Go to my File Manager (Nemo)
File Connect to Server
and that works fine!
but I cannot:
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)
However:
smbclient --list=192.168.1.1 --no-pass
works perfectly and has as output:
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
So I'm obviously missing something completely stupid here, but I'm stumped as to why I cannot mount this share fro the command line???
networking mount cifs
marked as duplicate by muru, Community♦ Nov 14 '18 at 0:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
16.04 CIFS “Host is down” but they are not
5 answers
So I'm at a friend and hooked up my external EXT4 HDD to his router and it recognises it and he can connect his entire family to it and everything works fine.
However, on my Ubuntu machine I can:
- Go to my File Manager (Nemo)
File Connect to Server
and that works fine!
but I cannot:
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)
However:
smbclient --list=192.168.1.1 --no-pass
works perfectly and has as output:
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
So I'm obviously missing something completely stupid here, but I'm stumped as to why I cannot mount this share fro the command line???
networking mount cifs
This question already has an answer here:
16.04 CIFS “Host is down” but they are not
5 answers
So I'm at a friend and hooked up my external EXT4 HDD to his router and it recognises it and he can connect his entire family to it and everything works fine.
However, on my Ubuntu machine I can:
- Go to my File Manager (Nemo)
File Connect to Server
and that works fine!
but I cannot:
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)
However:
smbclient --list=192.168.1.1 --no-pass
works perfectly and has as output:
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
So I'm obviously missing something completely stupid here, but I'm stumped as to why I cannot mount this share fro the command line???
This question already has an answer here:
16.04 CIFS “Host is down” but they are not
5 answers
networking mount cifs
networking mount cifs
asked Nov 12 '18 at 17:23
FabbyFabby
26.5k1360159
26.5k1360159
marked as duplicate by muru, Community♦ Nov 14 '18 at 0:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by muru, Community♦ Nov 14 '18 at 0:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You need to add the version to the options depending on the cifs version you use. So that would be for v1.0:
sudo mount -t cifs -o rw,guest,vers=1.0 //192.168.1.1/Fab-EXT4 /media/MichelNAS/
There is also vers=2.0
and vers=3.0
Seemingly very old Modem firmware!vers=1.0
seemed to do the trick!
– Fabby
Nov 12 '18 at 17:42
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to add the version to the options depending on the cifs version you use. So that would be for v1.0:
sudo mount -t cifs -o rw,guest,vers=1.0 //192.168.1.1/Fab-EXT4 /media/MichelNAS/
There is also vers=2.0
and vers=3.0
Seemingly very old Modem firmware!vers=1.0
seemed to do the trick!
– Fabby
Nov 12 '18 at 17:42
add a comment |
You need to add the version to the options depending on the cifs version you use. So that would be for v1.0:
sudo mount -t cifs -o rw,guest,vers=1.0 //192.168.1.1/Fab-EXT4 /media/MichelNAS/
There is also vers=2.0
and vers=3.0
Seemingly very old Modem firmware!vers=1.0
seemed to do the trick!
– Fabby
Nov 12 '18 at 17:42
add a comment |
You need to add the version to the options depending on the cifs version you use. So that would be for v1.0:
sudo mount -t cifs -o rw,guest,vers=1.0 //192.168.1.1/Fab-EXT4 /media/MichelNAS/
There is also vers=2.0
and vers=3.0
You need to add the version to the options depending on the cifs version you use. So that would be for v1.0:
sudo mount -t cifs -o rw,guest,vers=1.0 //192.168.1.1/Fab-EXT4 /media/MichelNAS/
There is also vers=2.0
and vers=3.0
edited Nov 14 '18 at 0:47
Fabby
26.5k1360159
26.5k1360159
answered Nov 12 '18 at 17:41
RinzwindRinzwind
204k28389524
204k28389524
Seemingly very old Modem firmware!vers=1.0
seemed to do the trick!
– Fabby
Nov 12 '18 at 17:42
add a comment |
Seemingly very old Modem firmware!vers=1.0
seemed to do the trick!
– Fabby
Nov 12 '18 at 17:42
Seemingly very old Modem firmware!
vers=1.0
seemed to do the trick!– Fabby
Nov 12 '18 at 17:42
Seemingly very old Modem firmware!
vers=1.0
seemed to do the trick!– Fabby
Nov 12 '18 at 17:42
add a comment |