Cyberithub

10 Best Examples of cp command in Linux

In this article, I will take you through the different usage of cp command in Linux. There can be various operations that can be performed in Linux OS using command line. Copying the contents from one location to another is one such operation. We generally use cp command in Linux to copy the contents from … Read more

30 Most Popular IPTABLES Command in Linux

In this article I will take you through 30 most popular iptables commands in Linux. IPTABLES is a firewall built into Linux that allows a system administrator to define tables containing chains of rules that determine how network packets should be treated. Packets are processed by sequentially traversing rules in chains within the following tables: … Read more

14 Useful APT CACHE Examples on Ubuntu 18.04

In this article, I will take you through 14 Useful apt cache examples on Ubuntu 18.04. APT CACHE allows you to search for packages and dependencies. It perform low-level operations on the APT binary cache, including the ability to perform searches and produce output reports from package metadata. It is very useful for finding out … Read more

20 Useful APT GET Examples on Ubuntu 18.04

In this article, I will take you through 20 Useful APT GET Examples on Ubuntu 18.04. APT utilities download packages and call dpkg utilities to manipulate the packages once they are on the local system. The primary APT command is apt-get, its arguments determine what the command does. To know more about APT CACHE, you … Read more

13 Useful Examples of touch Command in Linux

In this article, I will take you through the usages of touch command in Linux. touch command allows you to update File timestamps. It is very much helpful in creating scripts and creating empty files. You might have seen some instances where you have been told to change the timestamp of a file due to … Read more

40 Best Examples of Find Command in Linux

In this article, I will take you through 40 best examples of find command in Linux. Find is a powerful tool that allow us to quickly and easily scan through our Filesystems to find files and directories based on certain criteria. We can even perform some action on the results we get back. Sometimes you … Read more