Related Articles
How to create Virtual Machine in VMWare
What is Virtualisation Virtualization is technology that lets you create useful IT services using resources that are traditionally bound to hardware. It allows you to use a physical machine’s full capacity by distributing its capabilities among many ...
What is KUBERNETES-K8s
Kubernetes is used to create applications that are easy to manage and deploy anywhere Kubernetes is a portable, extensible, open-source container platform for managing containerized workloads and services. Kubernetes has all the capabilities to ...
How to register Edge Core ecCloud and addAccess point to ecCloud
ecCLOUD Registration and Login: The Edge core ecCLOUD is a cloud-based controller that provides unified visibility and control for Edge Core wired and wireless devices, including AP, PoE switch, and Terragraph products. ecCLOUD simplifies the task of ...
Set up RAID 0 using mdadm
Steps to configure RAID 0 in Centos7. Code lsblk yum install -y mdadm mdadm --create --verbose /dev/md0 --level=0 --raid-devices=2 /dev/sdb /dev/sdc mkfs.ext4 /dev/md0 mkdir /mnt/raid0-drive mount /dev/md0 /mnt/raid0-drive df -h Code Summary LSBLK: - ...
How to Partition, Format, and Mount Secondary Drives in Linux - Manual Drive Configuration (MDC)
Introduction This guide provides detailed instructions on how to manually configure secondary drives in a Linux system, including partitioning, formatting, and mounting the drives. Warning Performing these steps on an existing primary drive or a ...