Rsync example

Basic syntax of rsync command # rsync options source destination Some common options used with rsync commands -v : verbose -r : copies data recursively (but don’t preserve timestamps and permission while transferring data -a : archive mode, archive mode allows copying files recursively and it also preserves symbolic links, file permissions, user & group ownerships and timestamps … Read more

Installing Samba on CentOS

Installing Samba on CentOS Samba is available from the standard CentOS repositories. To install it on your CentOS system run the following command: sudo yum install samba samba-client Once the installation is completed, start the Samba services and enable them to start automatically on system boot: sudo systemctl start smb.servicesudo systemctl start nmb.service sudo systemctl … Read more