Error – /bin/rm: Argument list too long : Linux Error

We in real life, generally use the rm command to remove the files and folders. Have you ever got this Error – /bin/rm: Argument list too long ! rm command to delete files in linux Today, We will see the alternate method to delete such a large number of files. Learn More What are the … Read more

What are the Basic Linux Commands and How to use

Today, We will learn what are the basic Linux command and how to use this. Read: nmcli – Linux command 1. pwd — pwd command is used to show the current working directory of the user. To know which directory you are in, you can use the “pwd” command. It gives us the absolute path, which means the … Read more

What is more command in Linux and how to use

Today, We will learn the basic understanding of the “more” command in Linux. We will also see the usages of the “more” command and their example. Read: pipe (|) operator in Linux command What is the “more” command in Linux? Sometimes, while working on the command line, We will see outputs produced by commands in … Read more

How to Add or remove the Default Gateway in Linux

Today, We will learn how to add or remove the default gateway in Linux. Read: ifconfig Sometimes you may need to change the default route of your system. This is especially true if you have multiple network adapters or routers on the network. How to check the default route or gateway in Linux? We can … Read more

Man Pages Command

we     need     to     talk     about     are     “man”     pages.     Man     pages     stand     for  manual    pages.    What    you    have    to    remember    with    man    pages    is    that    if    you    do    not   understand     how     a     command     is     supposed     to     work     … Read more

File compress and uncompress in linux

file compression and uncompression in linux

File compress and uncompress in linux gzip command compresses files. Each single file is compressed into a single file. The compressed file consists of a GNU zip header and deflated data. If given a file as an argument, gzip compresses the file, adds a “.gz” suffix, and deletes the original file.   gzip file Compress file to create file.gz. … Read more

rm command to delete files in linux

Linux yum

rm command to delete files in linux   The rm command (short for remove) is a Unix / Linux command which is used to delete files from a file system. Here is few example of rm command 1) To remove a file named test.txt, use the following command. $ rm test.txt Here rm test would … Read more

PWD – Linux command to check current working directory

PWD – Linux command to check current working directory   When you first open the terminal, you are in the home directory of your user. To know which directory you are in, you can use the “pwd” command. It gives us the absolute path, which means the path that starts from the root. The root is the … Read more