Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
11 views
4 pages
Linux Volume Mount
Uploaded by
mail.vishalkumarcse
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF, TXT or read online on Scribd
Download
Save
Save Linux Volume Mount For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
11 views
4 pages
Linux Volume Mount
Uploaded by
mail.vishalkumarcse
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save Linux Volume Mount For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 4
Search
Fullscreen
Commands for Managing Linux Volumes and AWS EBS
1. Introduction to Linux Volumes and AWS EBS
- List block devices:
lsblk
- Check attached EBS volumes (after attaching via AWS Console):
lsblk
2. Physical vs Logical Volumes in Linux
- List block devices:
lsblk
- Create physical volumes (LVM context):
sudo pvcreate /dev/xvdf /dev/xvdg
- Create a volume group:
sudo vgcreate my_vg /dev/xvdf /dev/xvdg
- Create a logical volume:
sudo lvcreate -L 10G -n my_lv my_vg
- Format the logical volume:
sudo mkfs.ext4 /dev/my_vg/my_lv
- Mount the logical volume:
sudo mkdir /mnt/lvm_volume
sudo mount /dev/my_vg/my_lv /mnt/lvm_volume
3. Mounting Volumes in Linux
- List block devices (to identify the device):
lsblk
- Format the device:
sudo mkfs -t ext4 /dev/xvdf
- Create a mount point:
sudo mkdir /mnt/myvolume
- Mount the volume:
sudo mount /dev/xvdf /mnt/myvolume
- Verify the mount (check filesystem usage):
df -h
- Make mount persistent (edit /etc/fstab):
sudo nano /etc/fstab
- Add the line:
/dev/xvdf /mnt/myvolume ext4 defaults,nofail 0 2
- Unmount the volume:
sudo umount /mnt/myvolume
- Remount the volume:
sudo mount /dev/xvdf /mnt/myvolume
4. Managing AWS EBS on EC2 Instances
- List block devices (to verify EBS attachment):
lsblk
- Format the EBS volume:
sudo mkfs -t ext4 /dev/xvdf
- Create a mount point:
sudo mkdir /mnt/ebs_volume
- Mount the EBS volume:
sudo mount /dev/xvdf /mnt/ebs_volume
- Verify the mount (check filesystem usage):
df -h
- Make the EBS volume mount persistent (edit /etc/fstab):
sudo nano /etc/fstab
- Add the line:
/dev/xvdf /mnt/ebs_volume ext4 defaults,nofail 0 2
- Unmount the EBS volume:
sudo umount /mnt/ebs_volume
5. Introduction to LVM (Logical Volume Manager)
- Install LVM tools (if needed):
sudo apt-get install lvm2
- Initialize physical volumes (create PVs):
sudo pvcreate /dev/xvdf /dev/xvdg
- Create a volume group (VG):
sudo vgcreate my_vg /dev/xvdf /dev/xvdg
- Create a logical volume (LV):
sudo lvcreate -L 10G -n my_lv my_vg
- Format the logical volume:
sudo mkfs.ext4 /dev/my_vg/my_lv
- Mount the logical volume:
sudo mkdir /mnt/lvm_volume
sudo mount /dev/my_vg/my_lv /mnt/lvm_volume
- Extend the logical volume (on the fly):
sudo lvextend -L +5G /dev/my_vg/my_lv
- Resize the filesystem:
sudo resize2fs /dev/my_vg/my_lv
6. Using LVM with EBS for Dynamic Storage Management
- Initialize new EBS volumes as physical volumes:
sudo pvcreate /dev/xvdf /dev/xvdg /dev/xvdh
- Extend the volume group:
sudo vgextend my_vg /dev/xvdg /dev/xvdh
- Extend the logical volume:
sudo lvextend -L +30G /dev/my_vg/my_lv
- Resize the filesystem:
sudo resize2fs /dev/my_vg/my_lv
- Verify the logical volume and filesystem:
sudo lvdisplay
df -h
You might also like
Linux LVM Concept
PDF
No ratings yet
Linux LVM Concept
15 pages
06 - EBS Lab
PDF
No ratings yet
06 - EBS Lab
6 pages
NDG Linux Essentials English 0821
PDF
No ratings yet
NDG Linux Essentials English 0821
8 pages
Red Hat System Administration II
PDF
No ratings yet
Red Hat System Administration II
360 pages
Mastering Proxmox - Second Edition
From Everand
Mastering Proxmox - Second Edition
Wasim Ahmed
No ratings yet
Linux Volume Management Enhanced
PDF
No ratings yet
Linux Volume Management Enhanced
3 pages
Logical Volume Manager
PDF
No ratings yet
Logical Volume Manager
2 pages
Linux LVM - Logical Volume Manager: o o o o o o o o o
PDF
No ratings yet
Linux LVM - Logical Volume Manager: o o o o o o o o o
10 pages
LVM Raid
PDF
No ratings yet
LVM Raid
19 pages
Create LVM in Linux
PDF
No ratings yet
Create LVM in Linux
19 pages
Linux Disk Management & Formatting
PDF
No ratings yet
Linux Disk Management & Formatting
3 pages
Logical Volume Manager Document
PDF
No ratings yet
Logical Volume Manager Document
16 pages
Work With LVM - 1513366044
PDF
No ratings yet
Work With LVM - 1513366044
8 pages
LVM
PDF
No ratings yet
LVM
6 pages
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-En-US
PDF
No ratings yet
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-En-US
118 pages
Red Hat Enterprise Linux 5 Logical Volume Manager Administration
PDF
No ratings yet
Red Hat Enterprise Linux 5 Logical Volume Manager Administration
122 pages
Linux Plus
PDF
No ratings yet
Linux Plus
128 pages
Cluster Logical Volume Manager
PDF
No ratings yet
Cluster Logical Volume Manager
126 pages
LVM Linux
PDF
No ratings yet
LVM Linux
3 pages
How To Create Disk Storage With LVM in Linux - Part 1
PDF
No ratings yet
How To Create Disk Storage With LVM in Linux - Part 1
35 pages
Memory Management Commands For Devops 1736691803
PDF
No ratings yet
Memory Management Commands For Devops 1736691803
5 pages
Storage Administration
PDF
No ratings yet
Storage Administration
12 pages
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-Es-ES
PDF
No ratings yet
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-Es-ES
133 pages
Arch LVM
PDF
No ratings yet
Arch LVM
10 pages
LinuxAcademy HandsOnLab CentOS LVM
PDF
No ratings yet
LinuxAcademy HandsOnLab CentOS LVM
8 pages
Create A Phy-Vol-lvm
PDF
No ratings yet
Create A Phy-Vol-lvm
10 pages
Unit 5 Linux
PDF
No ratings yet
Unit 5 Linux
3 pages
Wa0003.
PDF
No ratings yet
Wa0003.
24 pages
Create Physical Volumes
PDF
No ratings yet
Create Physical Volumes
8 pages
Cluster Logical Volume Manager
PDF
No ratings yet
Cluster Logical Volume Manager
108 pages
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-en-US PDF
PDF
No ratings yet
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-en-US PDF
208 pages
Ebs Notes
PDF
No ratings yet
Ebs Notes
4 pages
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-ru-RU
PDF
No ratings yet
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-ru-RU
202 pages
Disk Management
PDF
No ratings yet
Disk Management
5 pages
How To Manage and Use LVM
PDF
No ratings yet
How To Manage and Use LVM
10 pages
RedHat - LVM Cheatsheet
PDF
No ratings yet
RedHat - LVM Cheatsheet
5 pages
How To Extend and Reduce LVM Logical Volume in Linux
PDF
No ratings yet
How To Extend and Reduce LVM Logical Volume in Linux
15 pages
LVM Lecturs
PDF
No ratings yet
LVM Lecturs
34 pages
CCL - Exp 5 - 122a1108
PDF
No ratings yet
CCL - Exp 5 - 122a1108
9 pages
Logical Volume Manager Logical Volume Manager
PDF
No ratings yet
Logical Volume Manager Logical Volume Manager
15 pages
LVM Cheatsheet v1.4
PDF
No ratings yet
LVM Cheatsheet v1.4
5 pages
Class9 AWS EBS Volumes
PDF
No ratings yet
Class9 AWS EBS Volumes
4 pages
Lab 13
PDF
No ratings yet
Lab 13
9 pages
03 SR Icc 22CS142 Lab Expts 3 Aws
PDF
No ratings yet
03 SR Icc 22CS142 Lab Expts 3 Aws
8 pages
Assignment: Topic:Lvm
PDF
No ratings yet
Assignment: Topic:Lvm
11 pages
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-En-US
PDF
No ratings yet
Red Hat Enterprise Linux-6-Logical Volume Manager Administration-En-US
183 pages
Imp - Notes 018 - Logical Volume Manager (LVM) Versus Standard Partitioning in Linux - Enable
PDF
No ratings yet
Imp - Notes 018 - Logical Volume Manager (LVM) Versus Standard Partitioning in Linux - Enable
7 pages
The Linux Logical Volume Manager (LVM)
PDF
No ratings yet
The Linux Logical Volume Manager (LVM)
26 pages
Red Hat Enterprise Linux-5-Logical Volume Manager Administration-En-US
PDF
No ratings yet
Red Hat Enterprise Linux-5-Logical Volume Manager Administration-En-US
132 pages
Disk Management Updated
PDF
No ratings yet
Disk Management Updated
6 pages
LVM
PDF
No ratings yet
LVM
95 pages
L.V.M (Logical Volume Manager) : Create LVM Enable Partitions
PDF
100% (1)
L.V.M (Logical Volume Manager) : Create LVM Enable Partitions
6 pages
My Server Setup - Requirements: Check LVM Disk Storage in Linux
PDF
No ratings yet
My Server Setup - Requirements: Check LVM Disk Storage in Linux
80 pages
Author Subject Change / Reviewer: Amit Kumar Linux Volume Manager Arun Nayak 1.0
PDF
No ratings yet
Author Subject Change / Reviewer: Amit Kumar Linux Volume Manager Arun Nayak 1.0
3 pages
System Ex200
PDF
No ratings yet
System Ex200
6 pages
Untitled Document-3
PDF
No ratings yet
Untitled Document-3
4 pages
1.4. Document Overview: 1.3. The Clustered Logical Volume Manager (CLVM) Chapter 2. LVM Components
PDF
No ratings yet
1.4. Document Overview: 1.3. The Clustered Logical Volume Manager (CLVM) Chapter 2. LVM Components
1 page
7.cluster Logical Volume Manager
PDF
No ratings yet
7.cluster Logical Volume Manager
128 pages
Ansible by Examples: 200+ Automation Examples For Linux and Windows System Administrators and DevOps
From Everand
Ansible by Examples: 200+ Automation Examples For Linux and Windows System Administrators and DevOps
Luca Berton
No ratings yet
Linux for Beginners: Linux Command Line, Linux Programming and Linux Operating System
From Everand
Linux for Beginners: Linux Command Line, Linux Programming and Linux Operating System
Steve Will
4.5/5 (3)
Linux Commands By Example
From Everand
Linux Commands By Example
Khaled Jamal
4.5/5 (3)
Linux System Administrator Interview Questions You'll Most Likely Be Asked
From Everand
Linux System Administrator Interview Questions You'll Most Likely Be Asked
Vibrant Publishers
No ratings yet
Is It Possible To Mount An ExFAT Filesystem On Red Hat Enterprise Linux - Red Hat Customer Portal
PDF
No ratings yet
Is It Possible To Mount An ExFAT Filesystem On Red Hat Enterprise Linux - Red Hat Customer Portal
10 pages
Manual Linux Mint
PDF
No ratings yet
Manual Linux Mint
32 pages
Modules List
PDF
No ratings yet
Modules List
10 pages
How To Install SQL Server On Linux (Ubuntu and CenOS - RHEL)
PDF
No ratings yet
How To Install SQL Server On Linux (Ubuntu and CenOS - RHEL)
6 pages
Ijser: A Review On Linux Distribution As Future Operating System
PDF
No ratings yet
Ijser: A Review On Linux Distribution As Future Operating System
4 pages
Guia de Desinstalación de ODOO EN UBUNTU
PDF
100% (1)
Guia de Desinstalación de ODOO EN UBUNTU
3 pages
SAP HANA Operating System Upgrade
PDF
No ratings yet
SAP HANA Operating System Upgrade
24 pages
Practical 1 Linux Distributions
PDF
No ratings yet
Practical 1 Linux Distributions
7 pages
Sha 256 Sum
PDF
No ratings yet
Sha 256 Sum
29 pages
User Empire Designs v3.4
PDF
No ratings yet
User Empire Designs v3.4
16 pages
The Performativity of Code: Software and Cultures of Circulation
PDF
No ratings yet
The Performativity of Code: Software and Cultures of Circulation
24 pages
Upgrading From Ubuntu 8.10: Desktop Server
PDF
No ratings yet
Upgrading From Ubuntu 8.10: Desktop Server
8 pages
Buildroot Slides
PDF
No ratings yet
Buildroot Slides
337 pages
Ext2 File System PDF
PDF
No ratings yet
Ext2 File System PDF
2 pages
Diolinux Benchmarks - Darter PRO
PDF
No ratings yet
Diolinux Benchmarks - Darter PRO
60 pages
Mini6410 - Android Build Steps
PDF
No ratings yet
Mini6410 - Android Build Steps
4 pages
RTL8192EU Wireless Adapter On Void Linux - by Leandro Ramos - Medium
PDF
No ratings yet
RTL8192EU Wireless Adapter On Void Linux - by Leandro Ramos - Medium
5 pages
Agar MJM
PDF
No ratings yet
Agar MJM
2 pages
Conpilação de Kernel Com Paulo Kretheu
PDF
No ratings yet
Conpilação de Kernel Com Paulo Kretheu
6 pages
Tran Duc Hung
PDF
No ratings yet
Tran Duc Hung
1 page
GITHUB
PDF
No ratings yet
GITHUB
31 pages
SAP Note 405827 - Linux - Recommended File Systems v25
PDF
No ratings yet
SAP Note 405827 - Linux - Recommended File Systems v25
4 pages
How To Install Software in Ubuntu
PDF
No ratings yet
How To Install Software in Ubuntu
1 page
RUST Procedure PDF
PDF
No ratings yet
RUST Procedure PDF
2 pages
Configuration of Mandriva Linux 2006
PDF
No ratings yet
Configuration of Mandriva Linux 2006
1 page
Arch Learning Roadmap
PDF
No ratings yet
Arch Learning Roadmap
2 pages
Percona Monitoring
PDF
No ratings yet
Percona Monitoring
3 pages
Arch Linux Handbook A Simple Lightweight Linux Handbook: Read/Download
PDF
No ratings yet
Arch Linux Handbook A Simple Lightweight Linux Handbook: Read/Download
3 pages