Hi,
I have an issue with the following command:
sudo wget https://dl.dropboxusercontent.com/u/141 ... Pi/vncboot --no-check-certificate
It seems that this page no longer exists (error 404). What can I do ?
Best regards
Re: VNC remote desktop via web browser
Hello,
I encountered the same problem, the file vncroot cannot be found on location https://dl.dropboxusercontent.com/u/141 ... Pi/vncboot
Can you indicate where the file can be found?
Many thanks in advance
I encountered the same problem, the file vncroot cannot be found on location https://dl.dropboxusercontent.com/u/141 ... Pi/vncboot
Can you indicate where the file can be found?
Many thanks in advance
Re: VNC remote desktop via web browser
Hi,
I too would like to get my hands on the vncboot and vncproxy script.
Could you please update the link to these files?
Thanks !
I too would like to get my hands on the vncboot and vncproxy script.
Could you please update the link to these files?
Thanks !
Re: VNC remote desktop via web browser
Hi!
If you're using rasbian15 you can use systemd instead of initd.
Save this as /etc/systemd/system/tightvnc@.service:
Code: Select all
[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target
[Service]
Type=forking
User=pi
PAMName=login
PIDFile=/home/pi/.vnc/%H:%i.pid
ExecStartPre=-/usr/bin/vncserver -kill :%i > /dev/null 2>&1
ExecStart=/usr/bin/vncserver -depth 24 -geometry 1280x800 :%i
ExecStop=/usr/bin/vncserver -kill :%i
[Install]
WantedBy=multi-user.target
And this as /etc/systemd/system/novnc@.service
Code: Select all
[Unit]
Description=noVNC Service
After=x11vnc.service
[Service]
User=pi
PAMName=login
ExecStart=/usr/local/share/noVNC/utils/launch.sh --vnc localhost:590%i
[Install]
WantedBy=multi-user.target
Code: Select all
sudo systemctl daemon-reload
sudo systemctl start tightvnc@1.service
sudo systemctl start novnc@1.service
However, if anyone like me rather was looking for a mirror of the current X display rather than a new one for the VNC, use x11vnc instead of tightvnc.
Code: Select all
sudo apt install x11vnc
Then save this as /etc/systemd/system/x11vnc@.service
Code: Select all
[Unit]
Description=Remote desktop service (x11VNC)
Requires=display-manager.service
After=display-manager.service
[Service]
User=pi
GuessMainPID=true
PAMName=login
ExecStart=/usr/bin/x11vnc -forever -shared -display :%i
ExecStop=/usr/bin/x11vnc -R stop -display :%i
[Install]
WantedBy=multi-user.target
Code: Select all
sudo systemctl daemon-reload
sudo systemctl start x11vnc@0.service
sudo systemctl start novnc@0.service
Re: VNC remote desktop via web browser
I have a mini pocket hotspot, which I use as a wifi for my Pi, smartphone and laptop, will the noVNC work with it?
- Davespice
- Forum Moderator
- Posts: 1665
- Joined: Fri Oct 14, 2011 8:06 pm
- Location: The Netherlands
- Contact: Twitter
Re: VNC remote desktop via web browser
Dear all
How's about this for some necromancy?
I've just written a script to install this on Raspbian Stretch;
https://gist.github.com/davidhoness/b5c ... c655ce783e
This is designed for when you have a classroom full of laptops and Pis, and where each Pi is connected directly to a laptop via a single patch cable.
A DHCP service running on the Pi is used to give the laptop an address to talk back to it on.
Real VNC server runs on the Pi and NoVNC + Websockify converts this into a HTML5 stream that any browser can display.
Many thanks
Dave
How's about this for some necromancy?
I've just written a script to install this on Raspbian Stretch;
https://gist.github.com/davidhoness/b5c ... c655ce783e
This is designed for when you have a classroom full of laptops and Pis, and where each Pi is connected directly to a laptop via a single patch cable.
A DHCP service running on the Pi is used to give the laptop an address to talk back to it on.
Real VNC server runs on the Pi and NoVNC + Websockify converts this into a HTML5 stream that any browser can display.
Many thanks
Dave
-
- Posts: 77
- Joined: Wed Aug 12, 2020 4:39 pm
Re: VNC remote desktop via web browser
I know this post is very old, but I tried to do it, and when I entered the command to download the file from the dropbox server, it gave me a 404 error. If someone could please give me a more up-to-date link, or restore the old one, that'd be great.
You can always learn and share what you know. Otherwise, we wouldn't be on this forum.