• IP Command Examples and Usages

    The IP command examples help you config you network interfaces settings in Linux easier and faster. It is a Linux net-tool for system and network administrators. The IP command is used to assign an IP address to a network interface or configure network interface parameters on Linux operating systems. This…

  • dmesg Command Examples and Usages

    The dmesg (diagnostic message) is a command on most Unix-like operating systems that prints the message buffer of the kernel. The output of dmesg command typically contains the messages produced by the device drivers. The dmesg command example article let you, deep-dive, into the hidden world of the Linux startup processes. Reviewing…

  • pwd Command Examples and Usage

    pwd command is for printing the current working directory. It will print the full system path of the current working directory to standard output. By default the pwd command ignores symlinks, although the full physical path of a current directory can be shown with an option. The manual and pwd…

  • cp Command Examples and Usages

    The copy or cp is a command in various Unix and Unix-like operating systems for copying files and directories. The command has three principal modes of operation, expressed by the types of arguments presented to the program for copying a file to another file, one or more files to a directory, or for copying entire directories to another directory. You find some…

  • Virt-Install Command Examples and Usages

    The virt-install Command Examples and usage in manual is clear and understandable. But here you see some real project virt-install command examples. NAME virt-install – provision new virtual machines SYNOPSIS DESCRIPTION virt-install is a command line tool for creating new KVM, Xen, or Linux container guests using the “libvirt” hypervisor…

  • Virt-Viewer Command Examples

    The vir-viewer command examples and usages is for system administrators to help them check the virt-viewer command faster. NAME virt-viewer – display the graphical console for a virtual machine. Read more about creating virtual machine with virt-install command. SYNOPSIS DESCRIPTION virt-viewer is a minimal tool for displaying the graphical console…

  • How to Create Virtual Machine using virt-install Command

    The virt-install command is what we are going to use for creating a virtual machine in a KVM environment. This tool can be used in both interactive and non-interactive mode. To create Virtual Machine using virt-install command, the KVM need to be installed on your host machine. Read the article…

  • Default Journal Log Files Locations in Linux

    There are two locations we are most likely to find the ‘systemd’ journal files in Linux Red Hat system. The default journal log files locations are: /var/log/journal Persistent journals are stored in the default location of /var/log/journal, if it exists. /run/log/journal Volatile journals are stored in the default directory of…

  • How to Reset Red Hat Root Password on Boot

    The root password of a system is important and complying well with a secure password standard. If the existing root password is no longer satisfactory or is forgotten, you can change or reset it both as the root user and a non-root user. To reset root password of Red hat system, you…

  • How to Create Multiple Users with Bash Script in Linux

    Writing a simple Linux bash script to create multiple users accounts helps you approach user account creation in Linux a bit faster. But this just a simple bash script to create multiple users. You are free to add more options and features this script. We would appreciate if your share…