
Setting up Nomachine
What is No Machine? Simple script that helps you setup remote desktop access on any device. No machine supports drag and drop, sound pass through. mDNS based discovery of devices in local network and many more ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 #!/bin/bash # Determine the architecture of the host HOST_ARCH=$(uname -m) # Set the download URL based on the host architecture if [[ "$HOST_ARCH" == "armv7l" ]]; then DOWNLOAD_URL="https://download....
