As rsync will not accept to be given a custom port on the destination address, a way around it is to initiate an ssh connection that will handle it for you:
The rsync command is a powerful tool for file synchronization and transfer in Linux and Unix-like operating systems. It provides a robust and efficient way to copy, backup, and mirror files and directories both locally and remotely. In this article, we will explore the technical details of the following rsync…
Our Jenkins setup has a lot of cool features and configuration. It has 'project-based security', it has parametrized projects, multiple source code management blocks per project and fairly extensive tests implemented with several build steps. Of course, we do not want to lose them, so we make backups often. The…
Just a bunch of snippets that we used to deploy a local Ray cluster. We couldn't get the second node to connect to the cluster even though no error was given. From https://www.anaconda.com/products/individual-b wget https://repo.anaconda.com/archive/Anaconda3-2021.05-Linux-x86_64.sh bash ./Anaconda3-2021.05-Linux-x86_64.sh source ~/anaconda3/bin/activate conda create --name ray.3.7 python=3.7.10; conda activate ray.3.7; conda install --name…