Darshan Atkariatkaridarshan04.hashnode.dev·Dec 20, 2024Linux Logical Volume ManagementWhat is LVM The Logical Volume Manager (LVM) is a powerful storage management tool in Linux that provides an abstraction layer over physical storage devices. It allows for the dynamic allocation, resizing, and management of disk space without disrupt...Linuxvolume-groups
Muhammad Irfanirfanmustafvi.hashnode.dev·Nov 18, 2024Master the Red Hat Linux Command Line: My Learning ExperienceEmbarking on a Linux learning journey has been nothing short of exhilarating. Over the last six days, I immersed myself in the world of Red Hat Enterprise Linux (RHEL), tackling one complex topic after another. From mastering file systems to explorin...#NTPConfiguration
Shravankumar Sirvishravankumar.hashnode.dev·Nov 16, 2024Linux Volume ManagementWhat is LVM ? Linux Volume Management (LVM) is a flexible way of managing disk storage. LVM allows administrators to pool storage devices, resize volumes, and efficiently manage storage allocation without the need for physical disk partitioning, whic...Linux
TECH-NOTESblog-technotes4you.hashnode.dev·Oct 23, 2024Useful LVM Commands with ExamplesIn this article, we will explore a selection of essential LVM commands commonly encountered by Linux administrators and engineers. These commands play a pivotal role in effectively managing storage resources on Linux systems. What is LVM? Logical Vo...40 readsOthersLinux
Aditya Gadhaveadityag7678.hashnode.dev·Sep 30, 2024How to Use Logical Volume Manager (LVM) in LinuxLVM (Logical Volume Manager) in Linux is a system for managing disk storage LVM provides flexibility and control over how storage is allocated, resized, and used. It allows you to combine multiple physical storage devices into a single logical unit...Linux
Dinesh Kumar Kblog.dineshcloud.in·Sep 17, 2024Linux LVM - Creating, Extending, and Shrinking Logical VolumesLinux LVM (Logical Volume Manager) is a system for managing disk storage, allowing you to create, resize, and delete partitions more flexibly than traditional partitioning schemes. LVM gives you the power to manage multiple hard drives as a single vo...34 readsLinuxLinux
SRINIVAS TIRUNAHARItirucloud.hashnode.dev·Jun 9, 2024Day 6: LVM in actionsudo pvscan Marking the Physical Devices as Physical Volumes: sudo lvmdiskscan Mark them as physical volumes within LVM using the pvcreate command: sudo pvcreate /dev/xvdb /dev/xvdc Output: Physical volume "/dev/xvdb" successfully created. Physica...LVM
Rony Hannadigitaltechlabs.hashnode.dev·Apr 17, 2024Proxmox Virtual Environment Storage-Part 06In this lesson, we will learn and understand Proxmox VE storage, we will use "QuantaStor Software Defined Storage" SAN/NAS (Storage Area Network/Network Attached Storage) as VSA (Virtual Storage Appliance) for the upcoming lessons to demonstrate and ...97 readsProxmox Tutorialsproxmox
SRINIVAS TIRUNAHARItirucloud.hashnode.dev·Apr 8, 2024Day 5 Linux: Introduction to LVMLaunch ec2 instance and add two volumes of 2GB at the time of ec2 creation itself. Login to ec2 instance sudo lvmdiskscan Create Physical Volumes sudo pvcreate /dev/xvdb /dev/xvdc Display Physical Volumes sudo pvs Create Volume Group and Adding...LVM
SRINIVAS TIRUNAHARItirucloud.hashnode.dev·Apr 6, 2024Day 4 Linux: Disk partitionslsblk We have only one physical disk xvda with three partitions of xvdaq1, xvdaq14 and xvdaq15. Attach new disk of your choice. Ex: I am attaching 4GB disk Create new partition of Linux Type sudo fdisk /dev/xvdbb Our main objective here is to cre...Linux