Filter posts by category

Linux

Rsync (Remote Sync): 10 Practical Examples of Rsync Command in Linux

Rsync (Remote Sync) is a most commonly used command for copying and synchronizing files and directories remotely as well as locally in Linux/Unix systems. With the help of rsync command you can copy and synchronize your data remotely and locally across directories, across disks and networks, perform data backups and mirroring between two Linux machines. This article explains 10 basic and advanced usage of the rsync command to transfer your files remotely […]

Rsync (Remote Sync): 10 Practical Examples of Rsync Command in Linux Read More

How To Find a File In Linux From the Command Line

Locate Linux Files by Their Name or Extension Type find into the command line to track down a particular file by its name or extension. If you want to look for *.err files in the /home/username/ directory and all sub-directories, try this: find /home/username/ -name \”*.err\” Typical Linux Find Commands and Syntax find command expressions look like this: find command options starting/path expression The

How To Find a File In Linux From the Command Line Read More

Scroll to Top