Remote access
I'm a complete beginner with Pi and Linux. I need to use my Raspberry Pi to run web pages on a monitor that will display from my internal office network. I can connect to my network using an ethernet cable. From my Mac, I pull up finder to look for my Raspberry Pi but it isn't there. I need to be able to connect to the Pi from my Mac because the monitor is mounted on a wall and there isn't a place to mount a keyboard and mouse.
- DougieLawson
- Posts: 40775
- Joined: Sun Jun 16, 2013 11:19 pm
- Location: A small cave in deepest darkest Basingstoke, UK
- Contact: Website Twitter
Re: Remote access
Try running avahi-daemon, your Apple stuff (running Bonjour) should then be able to find your RPi on your network.
Any language using left-hand whitespace for syntax is ridiculous
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
Re: Remote access
Thanks. Very much a beginner here. From reading another post, I typed into Raspberian-
sudo apt-get update
sudo apt-get install libnss-mdns
That post said this would also install avahi.
I rebooted both my Mac and my Pi. Opened finder. Couldn't see the Raspberry Pi in the list of servers.
sudo apt-get update
sudo apt-get install libnss-mdns
That post said this would also install avahi.
I rebooted both my Mac and my Pi. Opened finder. Couldn't see the Raspberry Pi in the list of servers.
Re: Remote access
Additionally, how would I run Avahi-daemon? Would that be by typing a command in the run box on the Pi?
Re: Remote access
I did this:DougieLawson wrote:Try running avahi-daemon, your Apple stuff (running Bonjour) should then be able to find your RPi on your network.
sudo apt-get install avahi-daemon
I go into my mac and cannot see the raspberry pi on my local network. I'm hard wired in to a local netwrok.
Any suggestions? I've been fooling around with this all week. Thanks.
Re: Remote access
Hi,
I not sure, but, I think that mac only see rpi or other if have some service to access.
Service like, a file sharing using samba (nfs, ftp), printer, etc.
You need to access RPi from mac to do what?
To access shell via ssh not need to finder find rpi, only need current rpi ip or name assigned to ip.
Open a shell (Terminal) on mac and try
ping raspberrypi.local
raspberrypi or nome of rpi hostname.
If have a response, try ssh
ssh pi@raspberrypi.local
Assuming that have ssh client on mac.
If need access to desktop, install x11vnc on rpi and a vnc client on mac.
I not sure, but, I think that mac only see rpi or other if have some service to access.
Service like, a file sharing using samba (nfs, ftp), printer, etc.
You need to access RPi from mac to do what?
To access shell via ssh not need to finder find rpi, only need current rpi ip or name assigned to ip.
Open a shell (Terminal) on mac and try
ping raspberrypi.local
raspberrypi or nome of rpi hostname.
If have a response, try ssh
ssh pi@raspberrypi.local
Assuming that have ssh client on mac.
If need access to desktop, install x11vnc on rpi and a vnc client on mac.