1. Install rsync on both machines The first thing to do is install rsync, which can be achieved with the following command: sudo apt-get install rsync -y
Category Archives: Knowledge
I‘m a new Unix system user. How do I use sudo command without a password on a Linux or Unix-like systems? I log in as tom@my-cloud-server-ip and disabled root login for ssh. After login, I need to run some commands as root user. I am the only sysadmin using my server. How do I run […]
how to enable https on asp.net core app? To enable HTTPS on an ASP.NET Core application, you need to perform the following steps: javascript And in the Configure method, add the following code to redirect all HTTP traffic to HTTPS: scss json python Note that these steps are just an example, and you may need […]
X11 forwarding refers to executing such a program remotely through an SSH (Secure Shell) connection. It’s mean the executable file itself is hosted on a different machine than where the graphical interface is being displayed. The graphical windows are forwarded to your local machine through the SSH connection. Step 1: Install Required Packages First install […]
Step by step on how to program a ATtiny85 microcontroller with Arduino Uno development board. I am working on a project which requires reading multiple sensor data on different locations. These require only few PWM pins so using multiple Arduino Uno would be expensive and unnecessary. So I decided to use ATtiny85 microcontroller in place […]