Tag Archives: Linux - Page 6

How To Install DNF Package Manager In CentOS/RHEL

Install DNF Package Manager

DNF, or Dandified Yum, which is the next major version of the Yum package manager was introduced with Fedora 18. As of Fedora 22, it has become the default package manager.

As you may know, the Fedora Linux operating system is essentially a bleeding edge testing ground for packages that may be included in RHEL/CentOS based distributions in the future.

It is therefore likely that in some future release, RHEL/CentOS will also make use of DNF rather than Yum to take advantage of the new features, so let’s take a look at what’s involved in installing and using DNF in CentOS Linux so that we can be ready for it when it’s made default.

Read more »

How To Join CentOS Linux To An Active Directory Domain

Join Linux to Windows domain

Here we’ll show you how to add your Linux system to a Microsoft Windows Active Directory (AD) domain through the command line. This will allow us to SSH into the Linux server with user accounts in our AD domain, providing a central source of cross-platform authentication.

Read more »

12 Dig Command Examples To Query DNS In Linux

Dig Command Examples Linux

Dig (domain information groper) is a tool that is used for querying DNS servers for various DNS records, making it very useful for troubleshooting DNS problems.

By the end of this guide you will know how to use dig to perform different types of DNS lookups in Linux.

Read more »

11 ip Command Examples For Linux

IP Command Examples For Linux

The ‘ip’ command is used to print out various network information in Linux. It replaces the deprecated ‘ifconfig’ command, which is not even installed by default in CentOS 7.

The ip command is part of the iproute package, which is installed by default in most modern Linux distributions.

In the examples here you’ll see how to use the ip command to show network configuration such as link information, IP addresses and routing.

Read more »

14 Simple df (Disk Free) Command Examples For Linux

df Command Examples In Linux

The ‘df’ command is used to quickly print an overview of the disk space in use on different partitions and file systems.

df comes from the GNU Coreutils package and should be available by default in Unix/Linux based operating systems.

Read more »

23 tar Command Examples For Linux

Tar Archive Command Examples For Linux

The GNU tape archive command, known as ‘tar’, is used to store many different files together into a single archive file. This makes it easy to perform backups and restores of files and directories in Unix/Linux based operating systems.

The practical examples in this guide will show you how to use the tar command in all sorts of different situations.

Read more »

16 Simple cat Command Examples For Linux

Cat Command Examples For Linux

The ‘cat’ command is used to read and concatenate files, printing them out to standard output.

Cat comes from the GNU Coreutils package and should be available by default in Unix/Linux based operating systems.

Read more »

21 Simple ls Command Examples For Linux

ls Command Examples For Linux

The ‘ls’ command is a standard GNU command used in Unix/Linux based operating systems to list directory contents and display information about the sub directories and files within.

The practical examples in this guide will show you how to use the ls command in all sorts of different situations.

Read more »

20 wget Command Examples For Linux

Wget Command Line Examples For Linux

Wget is a non-interactive network downloader which can be used for downloading files in Unix/Linux. It supports the HTTP, HTTPS and FTP protocols and also has proxy support.

The wget command is quite powerful and has a lot of options available, in this guide we’ll be covering 20 of the most important wget examples that will help you learn how to best use it.

Read more »

Managing Swap Space In Linux

Managing Swap Space In Linux

Swap space is an area of disk that is used to store memory to. Here we’ll take a look at managing swap space in Linux by determining what is actually using the swap space, controlling how frequently swap space is written to, and finally adding additional swap space if required.

Read more »