Rsync is a very flexible network-enabled syncing tool. It can also refer to the network protocol developed to utilize this tool. Rsync stands for Remote Sync. Normally rsync is used to transfer file from one server (source) to another server (destination). Basic Syntax 1) Create some test files with the following commands: cd ~ mkdir […]
See MoreTag: commands
Enabling PPP on OpenVZ VPS
To enable PPP on your OpenVZ VPS: 1) Log into SolusVM and Enable PPP. 2) Reboot your VPS. 3) Log into SSH. 4) Run the commands.
See MoreExclude a directory or multiple directories using find command
How to exclude a directory or multiple directories using find command? Quick view on >> Find command and switches << Method 1 : Using the option “-prune -o” We can exclude directories by using the help of “path“, “prune“, “o” and “print” switches with find command. See the example: # find ./ -path ./bit/* -prune -o […]
See More