Spanned Volume

Spanned Volume: A spanned volume combines areas of unallocated space from multiple disks into one logical volume, allowing you to more efficiently use all of the space and all the drive letters on a multiple-disk system. Suppose if two new disks are assigned to the server and want to create spanned volume then follow the…

Install Terraform in Ubuntu Linux

Below are the commands to install Terraform in Ubuntu Linux   sudo apt update sudo apt install  software-properties-common gnupg2 curl   curl https://apt.releases.hashicorp.com/gpg | gpg –dearmor > hashicorp.gpg sudo install -o root -g root -m 644 hashicorp.gpg /etc/apt/trusted.gpg.d/   sudo apt-add-repository “deb [arch=$(dpkg –print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main”   sudo apt install terraform