• 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…

  • 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…

  • How to write Linux Bash ping Script to ping multiple Servers

    Linux Bash scripting is easy and awesome to learn for automation. To write a Linux bash ping script to ping multiple servers or IP addresses, we need some Linux command line such as ping command, echo command, for loop, and sed command or awk command, for organising a clear output…

  • Fixed: no acceptable C compiler found in $PATH

    The configure error: no acceptable C compiler found in $PATH is occurring when we running code that needs a compiler to compile it. The solution of no acceptable C compiler found in $PATH is installing the gcc compiler or “Developer Tools” on your machine. For RedHat and CentOS: For Debian…

  • Ultimate Bash Keyboard Shortcuts

    This guide provides you with an ultimate list of bash keyboard shortcuts that can help you use your shell more efficiently. If you cannot use a mouse or pointing device at all, see Keyboard navigation for more information on navigating user interfaces with only the keyboard. Bash Keyboard Shortcuts These…

  • How to Manage Swap Space on RHEL/CentOS 8.x

    The Swap space partition or file in Linux is used when the amount of physical memory (RAM) is full. If the system needs more memory resources and the RAM is full, inactive pages in memory are moved to the swap space. While swap space can help machines with a small…