How can I install Realvnc Server in the RockPi4B. I had it running in my Raspberry Pi3B with the CLI “sudo apt install realvnc-server”. I try down loading from Realvnc website but all Debx64 & x86 failed to install. pls help. Thanks
How to install RealVNC Server
I am running tightvncserver on my rockpi4b. It starts great just cli the command vncserver
Had to also install xfonts-base. To get to autostart as systemd takes a few steps that I learned by google-ing and creating a vncserver.service
in the /etc/systemd/system
my vncserver.service
[Unit]
Description=Remote desktop tightvncserver
After=sshd.service
[Service]
Type=forking
User=linaro
PAMName=login
PIDFile=/home/%u/.vnc/%H1.pid
ExecStart=/usr/bin/vncserver :1
[Install]
WantedBy=multi-user.target
1 Like