How to Install Docker on Ubuntu 20.04 LTS
Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and deploy it as one package. We can Create or build Images & push to …
How cp and mv utilities work in Linux
“cp stands for copy. This command line utility is used to copy files or group of files or directory. It creates an exact image of a file on a disk with different file name. cp command require at least two filenames in its arguments.“ cp: we will login as normal user “ntitin” & create certain …
How to use cat utilty in Linux
cat is a standard Unix utility that reads files sequentially, writing them to standard output. cat (short for “concatenate“) command is one of the most frequently used command in Linux/Unix like operating systems. It allow us to create single or multiple files view contain in file.. Uses of cat command Task: user “nitin” have created 1 new file “file1” in …
What is curl utility and how its work in Linux
curl is a command line utility for transferring data from to a server designed to work without user interaction. With the use of curl, you can download or upload data using one of the support protocols including HTTP, HTTPS, SCP, FTP. curl provides a number of options which allows you to resume transfer, proxy support, user …
wget utility in Linux
Introductions: It is the utility which is no-interactive network downloader. It is used to download the files from the server even when the user is not logged on the system. It can work in the background without hinder the current process. It is a free utility which is non-interactive download of files through the web …