From 4386c047cc8fc6ae1b13cce37d3dca3934f05226 Mon Sep 17 00:00:00 2001 From: ralfk Date: Tue, 22 Oct 2024 09:56:26 +0200 Subject: [PATCH] Bauer: 2024-10-22 09:56:26 --- Technik/Linux-Volume-Manager.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Technik/Linux-Volume-Manager.md diff --git a/Technik/Linux-Volume-Manager.md b/Technik/Linux-Volume-Manager.md new file mode 100644 index 0000000..1a7b92d --- /dev/null +++ b/Technik/Linux-Volume-Manager.md @@ -0,0 +1,20 @@ +# LVM + +Add 10GB to "root" volume: +```bash +lvresize -L +10G /dev/VolGroup00/root + +``` +danach noch +Resize the filesystem that resides on that volume_: +```bash +resize2fs /dev/VolGroup00/root +``` +Note: resize2fs_Â_ may take a while to expand the file system on a large volume, so you may want to open a second terminal and monitor the progress with the following command: + +```bash +watch df -h +``` + + +