I am attempting to install the noVNC packages on a custom Raspberry Pi (Broadcom BCM2837 SoC, a 64-Bit quad-core ARM Cortex-A53) but having trouble doing so. Currently have a VNC-server setup on a PC and I would like to access that PC using a different PC through the noVNC on this Raspberry Pi.
What I’ve done so far:
sudo apt-get update
sudo apt-get upgrade
sudo apt install snapd
sudo snap install noVNC
This would result to this error message: ‘error: cannot install “novnc”: snap not found’.
I am forced to hold some packages for this Raspberry Pi because it will stop itself from booting and if the packages get upgraded. I initially had to enter these commands:
sudo apt-mark hold raspberrypi-bootloader
sudo apt-mark hold raspberrypi-kernel
sudo apt-mark hold raspberrypi-sys-mods
As a result, when I entered sudo apt-get upgrade it would state that these packages are being held back: libraspberrypi-bin, libraspberrypi-dev, libraspberrypi-doc, libraspberrypi0, raspberrypi-bootloader, raspberrypi-kernel, raspberrypi-sys-mods
Not sure if this is causing the noVNC snap package to not install. Do these packages need to be upgraded as well?
Thanks in advance.