Last active
December 4, 2023 15:57
-
-
Save vietanhdev/c2cb96eb6cf5b9232a04dfbe8bdaba2f to your computer and use it in GitHub Desktop.
Install RealVNC Ubuntu - Raspberry Pi 4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir realvncserversetup && cd realvncserversetup | |
echo Add armhf arch | |
sudo dpkg --add-architecture armhf && sudo apt update | |
echo Download and install RealVNC server | |
wget -nv https://downloads.realvnc.com/download/file/vnc.files/VNC-Server-6.11.0-Linux-ARM.deb && sudo apt install ./VNC-Server-6.11.0-Linux-ARM.deb | |
echo Download and install dependencies | |
files=( libbcm_host.so libvcos.so libmmal.so libmmal_core.so libmmal_components.so \ | |
libmmal_util.so libmmal_vc_client.so libvchiq_arm.so libvcsm.so libcontainers.so ) | |
for i in "${files[@]}" | |
do | |
wget -nv https://github.com/raspberrypi/firmware/raw/master/opt/vc/lib/$i | |
done | |
sudo mv *.so /usr/lib/ | |
cd .. | |
echo Enable VNC service on boot | |
sudo systemctl enable vncserver-x11-serviced.service | |
echo Start VNC service | |
sudo systemctl start vncserver-x11-serviced.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@gregsonar I updated the version. Thanks.