Install TigerVNC -
$ sudo apt install tigervnc-standalone-server
Configure VNC Server by running
| #!/bin/bash | |
| : "${TERM:=xterm-256color}" | |
| [[ "$1" == @(-f|--full) ]] && shift && printfull=true | |
| # Define colors | |
| tput0="$(tput sgr0)" | |
| bold="$(tput bold)" |
| #!/bin/bash | |
| # see https://askubuntu.com/questions/1453749/inhibit-esm-messages-at-login | |
| # for more reference | |
| # worked on Ubuntu 22.x | |
| scriptname="$(realpath $0)" | |
| function removeesm(){ | |
| sudo sed -Ezi.orig \ |