Mount Windows share as guest from command line
up vote
3
down vote
favorite
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
add a comment |
up vote
3
down vote
favorite
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
Possible duplicate of 16.04 CIFS "Host is down" but they are not
– muru
6 hours ago
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
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
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
networking mount cifs
asked 12 hours ago
Fabby
24.9k1354157
24.9k1354157
Possible duplicate of 16.04 CIFS "Host is down" but they are not
– muru
6 hours ago
add a comment |
Possible duplicate of 16.04 CIFS "Host is down" but they are not
– muru
6 hours ago
Possible duplicate of 16.04 CIFS "Host is down" but they are not
– muru
6 hours ago
Possible duplicate of 16.04 CIFS "Host is down" but they are not
– muru
6 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
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 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
12 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
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 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
12 hours ago
add a comment |
up vote
3
down vote
accepted
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 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
12 hours ago
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
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 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 guest,vers=1.0 //192.168.1.1/Fab-EXT4 /media/MichelNAS/
There is also vers=2.0
and vers=3.0
edited 11 hours ago
Fabby
24.9k1354157
24.9k1354157
answered 12 hours ago
Rinzwind
201k26384516
201k26384516
Seemingly very old Modem firmware!vers=1.0
seemed to do the trick!
– Fabby
12 hours ago
add a comment |
Seemingly very old Modem firmware!vers=1.0
seemed to do the trick!
– Fabby
12 hours ago
Seemingly very old Modem firmware!
vers=1.0
seemed to do the trick!– Fabby
12 hours ago
Seemingly very old Modem firmware!
vers=1.0
seemed to do the trick!– Fabby
12 hours ago
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1092278%2fmount-windows-share-as-guest-from-command-line%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Possible duplicate of 16.04 CIFS "Host is down" but they are not
– muru
6 hours ago