How to configure rsync server on Raspebery over Debian First of all, you have to install rsync package: apt-get install rsync Create and edit RSync configuration file: sudo vi /etc/rsyncd.conf Here is my configuration file: uid=nobodygid=nogroupmax connections=50socket […]
Tag: System Administration
Understanding Systemd Units and Unit Files
Introduction Increasingly, Linux distributions are adopting or planning to adopt the systemd init system. This powerful suite of software can manage many aspects of your server, from services to mounted devices and system states. In systemd, a unit refers to […]
How to execute bash script from an URL
source <(curl -s http://mywebsite.com/myscript.txt) ought to do it. Alternately, leave off the initial redirection on yours, which is redirecting standard input; bash takes a filename to execute just fine without redirection, and <(command) syntax provides a path. bash <(curl -s […]