Ok, I've got a problem.
I've got 2 raspberry Pi's:
- one running raspbmc with samba shares enabled
- one running raspbian
I want to connect to the 'pi' samba share on the raspbmc pi from the raspbian pi and regardless of what I do, I always get "mount error(112): Host is down", now I can connect to the raspbmc share from a windows pc and I can ping the raspbmc pi from the raspbian pi.
I've tried mounting the pi using the mount command, using various command similar to this:
sudo mount -t cifs -v -o username=pi,password=raspberry //192.168.1.100/pi /home/pi/mount/path
I've also tried modifying /etc/fstab and mounting at boot
All with the same result:
mount error(112): Host is down
When clearly it isn't!
Has anyone got any advice? What am I missing? Can anyone recreate this?
LHIS
- LetHopeItsSnowing
- Posts: 357
- Joined: Sat May 26, 2012 6:40 am
- Location: UK
- Contact: Website
Raspbmc samba share - host is down
"am I getting slower, or is stuff more complicated; either way I now have to write it down - stuffaboutcode.com"
Re: Raspbmc samba share - host is down
Code: Select all
nmap 192.168.1.100/32
SBC with 32GB RAM: https://hardkernel.com
FAQ : https://raspberrypi.stackexchange.com
Unanswered: https://www.raspberrypi.org/forums/search.php?search_id=unanswered
FAQ : https://raspberrypi.stackexchange.com
Unanswered: https://www.raspberrypi.org/forums/search.php?search_id=unanswered
Re: Raspbmc samba share - host is down
I'm having this very same issue. I can even see the share with smbtree and I can mount it to another Linux box. How did you solve this?mount error(112): Host is down
-
- Posts: 22
- Joined: Mon Jun 24, 2013 9:25 am
Re: Raspbmc samba share - host is down
Try adding the vers=X.X cifs option i.e.
You'll need either 'vers=1.0', 'vers=2.0' or even 'vers=3.0' depending on how your samba server is configured.
Code: Select all
mount -t cifs -o vers=1.0 /my_server/share /some/mount_point
Re: Raspbmc samba share - host is down
Thanks kingosticks. That fixed the problem I was having accessing our Seagate media center. The Raspbian File Manager could get in without any problems but mount wasn't working for me until I added vers=1.0.kingosticks wrote: ↑Thu Mar 22, 2018 11:09 pmTry adding the vers=X.X cifs option i.e.You'll need either 'vers=1.0', 'vers=2.0' or even 'vers=3.0' depending on how your samba server is configured.Code: Select all
mount -t cifs -o vers=1.0 /my_server/share /some/mount_point