Resize an existing LVM partition and add the space to another LVM partition
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I'd like to resize an existing LVM partition and add the space to another LVM partition.
[root@dckapstaging ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_dckapstaging-lv_root 50G 50G 0 100% /
tmpfs 3.9G 0 3.9G 0% /dev/shm
/dev/sda1 485M 91M 369M 20% /boot
/dev/mapper/vg_dckapstaging-lv_home 215G 93G 111G 46% /home
I want /dev/mapper/vg_dckapstaging-lv_root
to be extended to another 15 GB from /dev/mapper/vg_dckapstaging-lv_home
; how can I do it?
partition lvm
add a comment |Â
up vote
1
down vote
favorite
I'd like to resize an existing LVM partition and add the space to another LVM partition.
[root@dckapstaging ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_dckapstaging-lv_root 50G 50G 0 100% /
tmpfs 3.9G 0 3.9G 0% /dev/shm
/dev/sda1 485M 91M 369M 20% /boot
/dev/mapper/vg_dckapstaging-lv_home 215G 93G 111G 46% /home
I want /dev/mapper/vg_dckapstaging-lv_root
to be extended to another 15 GB from /dev/mapper/vg_dckapstaging-lv_home
; how can I do it?
partition lvm
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'd like to resize an existing LVM partition and add the space to another LVM partition.
[root@dckapstaging ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_dckapstaging-lv_root 50G 50G 0 100% /
tmpfs 3.9G 0 3.9G 0% /dev/shm
/dev/sda1 485M 91M 369M 20% /boot
/dev/mapper/vg_dckapstaging-lv_home 215G 93G 111G 46% /home
I want /dev/mapper/vg_dckapstaging-lv_root
to be extended to another 15 GB from /dev/mapper/vg_dckapstaging-lv_home
; how can I do it?
partition lvm
I'd like to resize an existing LVM partition and add the space to another LVM partition.
[root@dckapstaging ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_dckapstaging-lv_root 50G 50G 0 100% /
tmpfs 3.9G 0 3.9G 0% /dev/shm
/dev/sda1 485M 91M 369M 20% /boot
/dev/mapper/vg_dckapstaging-lv_home 215G 93G 111G 46% /home
I want /dev/mapper/vg_dckapstaging-lv_root
to be extended to another 15 GB from /dev/mapper/vg_dckapstaging-lv_home
; how can I do it?
partition lvm
edited Jul 13 '15 at 9:12
dr01
15.1k114666
15.1k114666
asked Jul 13 '15 at 8:42
Danny
1411315
1411315
add a comment |Â
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
4
down vote
Assuming your volume group is already full, and you cannot extend it further, you will need to:
- Shrink the filesystem in
lv_home
using the specific tools for your filesystem, e.g.resize2fs
if you use ext3/4. - Resize
lv_home
accordingly withlvreduce
. - Increase
lv_root
withlvresize
. - Increase the filesystem in
lv_root
so that it uses all the additional space in the LV.
As always, back up your data first, resizing filesystems is always a risky business.
If you happen to use XFS in lv_home
you'll need to use a different approach, because XFS does not support shrinking. In this case:
- backup the data in
lv_home
- reduce
lv_home
withlvreduce
(FS is destroyed at this point!) - recreate the filesystem in
lv_home
with smaller size - restore the data
- increase
lv_root
as per steps 3 & 4 above.
2
For ext2/ext3/ext4,lv_home
needs to be unmounted before shrinking. Enlarging the volume can be done while it's mounted.
â Gilles
Jul 13 '15 at 23:00
add a comment |Â
up vote
2
down vote
First off, you want to unmount the partitions in question. Boot an usb stick or similar. Backing up important data is always recommended before fiddling with filesystems.
Reduce the filesystem first in /dev/mapper/vg_dckapstaging-lv_home
. Otherwise, resizing the lv will drop the data. The way to do it depends naturally from filesystem. resize2fs
works for ext2/3/4 filesystems. resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G
After you've shrunken the filesystem, run lvresize -L -15G /dev/mapper/vg_dckapstaging-lv_home
to free up the 15GBs and lvresize -L +15G /dev/mapper/vg_dckapstaging-lv_root
to enlargen the lv_root
Finalize with your fs resize tool. For ext that'd be resize2fs /dev/mapper/vg_dckapstaging-lv_root
to enlarge it to maximum available space.
EDIT:corrected a typo: partition -> filesystem
resize2fs before lvresize ? (just a question, I never did it). BTW there is a typo 200G instead of 20G.
â Archemar
Jul 13 '15 at 9:41
@Archemarresize2fs
first because lvresize doesn't check whether reduced part contains data i.e. it's filesystem agnostic.resize2fs
(or filesystem equivalent) does. 200G isn't a typo,resize2fs
takes new size instead of relative size. Or my version does, at any rate. 215G - 15G = 200G
â WhimsicalWombat
Jul 13 '15 at 9:46
@WhimsicalWombat resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G doesnt work after unmount gives resize2fs invalid new size
â Danny
Jul 13 '15 at 13:36
@Danny That's weird. You're using ext2/3/4 filesystem, right? Check yourresize2fs
manpage to be certain that your version accepts the G-suffix. If that's not it then... I don't know. Sounds like a syntax error but the command you wrote seems to be ok. Double check for typos I guess.
â WhimsicalWombat
Jul 13 '15 at 14:46
When shrinking, you need to shrink the filesystem before the volume. But when enlarging, you need to enlarge the volume before the filesystem.
â Gilles
Jul 13 '15 at 23:01
 |Â
show 2 more comments
up vote
0
down vote
This is a risky operation
you should try to clean
/
(have a look at/var/log
/var/spool
and delete old and big file)theorical way to proceed include
fsck -F /dev/mapper/vg_dckapstaging-lv_home
lvresize --size -15G /dev/mapper/vg_dckapstaging-lv_home
resize2fs /home
lvresize --size +15G /dev/mapper/vg_dckapstaging-lv_root
resize2fs /Disclaimer
3.1. be sure to have a valid backup !!
3.2. If this is a production system, please do try to test it before.
There's a big problem with your commands: withlv_home
, you're shrinking the container before shrinking the content! That will break the content. Also the argument toresize2fs
must be the volume names, not directories (and you need to unmount before shrinking).
â Gilles
Jul 13 '15 at 22:59
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Assuming your volume group is already full, and you cannot extend it further, you will need to:
- Shrink the filesystem in
lv_home
using the specific tools for your filesystem, e.g.resize2fs
if you use ext3/4. - Resize
lv_home
accordingly withlvreduce
. - Increase
lv_root
withlvresize
. - Increase the filesystem in
lv_root
so that it uses all the additional space in the LV.
As always, back up your data first, resizing filesystems is always a risky business.
If you happen to use XFS in lv_home
you'll need to use a different approach, because XFS does not support shrinking. In this case:
- backup the data in
lv_home
- reduce
lv_home
withlvreduce
(FS is destroyed at this point!) - recreate the filesystem in
lv_home
with smaller size - restore the data
- increase
lv_root
as per steps 3 & 4 above.
2
For ext2/ext3/ext4,lv_home
needs to be unmounted before shrinking. Enlarging the volume can be done while it's mounted.
â Gilles
Jul 13 '15 at 23:00
add a comment |Â
up vote
4
down vote
Assuming your volume group is already full, and you cannot extend it further, you will need to:
- Shrink the filesystem in
lv_home
using the specific tools for your filesystem, e.g.resize2fs
if you use ext3/4. - Resize
lv_home
accordingly withlvreduce
. - Increase
lv_root
withlvresize
. - Increase the filesystem in
lv_root
so that it uses all the additional space in the LV.
As always, back up your data first, resizing filesystems is always a risky business.
If you happen to use XFS in lv_home
you'll need to use a different approach, because XFS does not support shrinking. In this case:
- backup the data in
lv_home
- reduce
lv_home
withlvreduce
(FS is destroyed at this point!) - recreate the filesystem in
lv_home
with smaller size - restore the data
- increase
lv_root
as per steps 3 & 4 above.
2
For ext2/ext3/ext4,lv_home
needs to be unmounted before shrinking. Enlarging the volume can be done while it's mounted.
â Gilles
Jul 13 '15 at 23:00
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Assuming your volume group is already full, and you cannot extend it further, you will need to:
- Shrink the filesystem in
lv_home
using the specific tools for your filesystem, e.g.resize2fs
if you use ext3/4. - Resize
lv_home
accordingly withlvreduce
. - Increase
lv_root
withlvresize
. - Increase the filesystem in
lv_root
so that it uses all the additional space in the LV.
As always, back up your data first, resizing filesystems is always a risky business.
If you happen to use XFS in lv_home
you'll need to use a different approach, because XFS does not support shrinking. In this case:
- backup the data in
lv_home
- reduce
lv_home
withlvreduce
(FS is destroyed at this point!) - recreate the filesystem in
lv_home
with smaller size - restore the data
- increase
lv_root
as per steps 3 & 4 above.
Assuming your volume group is already full, and you cannot extend it further, you will need to:
- Shrink the filesystem in
lv_home
using the specific tools for your filesystem, e.g.resize2fs
if you use ext3/4. - Resize
lv_home
accordingly withlvreduce
. - Increase
lv_root
withlvresize
. - Increase the filesystem in
lv_root
so that it uses all the additional space in the LV.
As always, back up your data first, resizing filesystems is always a risky business.
If you happen to use XFS in lv_home
you'll need to use a different approach, because XFS does not support shrinking. In this case:
- backup the data in
lv_home
- reduce
lv_home
withlvreduce
(FS is destroyed at this point!) - recreate the filesystem in
lv_home
with smaller size - restore the data
- increase
lv_root
as per steps 3 & 4 above.
edited Jul 14 '15 at 7:15
answered Jul 13 '15 at 9:31
katti
52939
52939
2
For ext2/ext3/ext4,lv_home
needs to be unmounted before shrinking. Enlarging the volume can be done while it's mounted.
â Gilles
Jul 13 '15 at 23:00
add a comment |Â
2
For ext2/ext3/ext4,lv_home
needs to be unmounted before shrinking. Enlarging the volume can be done while it's mounted.
â Gilles
Jul 13 '15 at 23:00
2
2
For ext2/ext3/ext4,
lv_home
needs to be unmounted before shrinking. Enlarging the volume can be done while it's mounted.â Gilles
Jul 13 '15 at 23:00
For ext2/ext3/ext4,
lv_home
needs to be unmounted before shrinking. Enlarging the volume can be done while it's mounted.â Gilles
Jul 13 '15 at 23:00
add a comment |Â
up vote
2
down vote
First off, you want to unmount the partitions in question. Boot an usb stick or similar. Backing up important data is always recommended before fiddling with filesystems.
Reduce the filesystem first in /dev/mapper/vg_dckapstaging-lv_home
. Otherwise, resizing the lv will drop the data. The way to do it depends naturally from filesystem. resize2fs
works for ext2/3/4 filesystems. resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G
After you've shrunken the filesystem, run lvresize -L -15G /dev/mapper/vg_dckapstaging-lv_home
to free up the 15GBs and lvresize -L +15G /dev/mapper/vg_dckapstaging-lv_root
to enlargen the lv_root
Finalize with your fs resize tool. For ext that'd be resize2fs /dev/mapper/vg_dckapstaging-lv_root
to enlarge it to maximum available space.
EDIT:corrected a typo: partition -> filesystem
resize2fs before lvresize ? (just a question, I never did it). BTW there is a typo 200G instead of 20G.
â Archemar
Jul 13 '15 at 9:41
@Archemarresize2fs
first because lvresize doesn't check whether reduced part contains data i.e. it's filesystem agnostic.resize2fs
(or filesystem equivalent) does. 200G isn't a typo,resize2fs
takes new size instead of relative size. Or my version does, at any rate. 215G - 15G = 200G
â WhimsicalWombat
Jul 13 '15 at 9:46
@WhimsicalWombat resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G doesnt work after unmount gives resize2fs invalid new size
â Danny
Jul 13 '15 at 13:36
@Danny That's weird. You're using ext2/3/4 filesystem, right? Check yourresize2fs
manpage to be certain that your version accepts the G-suffix. If that's not it then... I don't know. Sounds like a syntax error but the command you wrote seems to be ok. Double check for typos I guess.
â WhimsicalWombat
Jul 13 '15 at 14:46
When shrinking, you need to shrink the filesystem before the volume. But when enlarging, you need to enlarge the volume before the filesystem.
â Gilles
Jul 13 '15 at 23:01
 |Â
show 2 more comments
up vote
2
down vote
First off, you want to unmount the partitions in question. Boot an usb stick or similar. Backing up important data is always recommended before fiddling with filesystems.
Reduce the filesystem first in /dev/mapper/vg_dckapstaging-lv_home
. Otherwise, resizing the lv will drop the data. The way to do it depends naturally from filesystem. resize2fs
works for ext2/3/4 filesystems. resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G
After you've shrunken the filesystem, run lvresize -L -15G /dev/mapper/vg_dckapstaging-lv_home
to free up the 15GBs and lvresize -L +15G /dev/mapper/vg_dckapstaging-lv_root
to enlargen the lv_root
Finalize with your fs resize tool. For ext that'd be resize2fs /dev/mapper/vg_dckapstaging-lv_root
to enlarge it to maximum available space.
EDIT:corrected a typo: partition -> filesystem
resize2fs before lvresize ? (just a question, I never did it). BTW there is a typo 200G instead of 20G.
â Archemar
Jul 13 '15 at 9:41
@Archemarresize2fs
first because lvresize doesn't check whether reduced part contains data i.e. it's filesystem agnostic.resize2fs
(or filesystem equivalent) does. 200G isn't a typo,resize2fs
takes new size instead of relative size. Or my version does, at any rate. 215G - 15G = 200G
â WhimsicalWombat
Jul 13 '15 at 9:46
@WhimsicalWombat resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G doesnt work after unmount gives resize2fs invalid new size
â Danny
Jul 13 '15 at 13:36
@Danny That's weird. You're using ext2/3/4 filesystem, right? Check yourresize2fs
manpage to be certain that your version accepts the G-suffix. If that's not it then... I don't know. Sounds like a syntax error but the command you wrote seems to be ok. Double check for typos I guess.
â WhimsicalWombat
Jul 13 '15 at 14:46
When shrinking, you need to shrink the filesystem before the volume. But when enlarging, you need to enlarge the volume before the filesystem.
â Gilles
Jul 13 '15 at 23:01
 |Â
show 2 more comments
up vote
2
down vote
up vote
2
down vote
First off, you want to unmount the partitions in question. Boot an usb stick or similar. Backing up important data is always recommended before fiddling with filesystems.
Reduce the filesystem first in /dev/mapper/vg_dckapstaging-lv_home
. Otherwise, resizing the lv will drop the data. The way to do it depends naturally from filesystem. resize2fs
works for ext2/3/4 filesystems. resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G
After you've shrunken the filesystem, run lvresize -L -15G /dev/mapper/vg_dckapstaging-lv_home
to free up the 15GBs and lvresize -L +15G /dev/mapper/vg_dckapstaging-lv_root
to enlargen the lv_root
Finalize with your fs resize tool. For ext that'd be resize2fs /dev/mapper/vg_dckapstaging-lv_root
to enlarge it to maximum available space.
EDIT:corrected a typo: partition -> filesystem
First off, you want to unmount the partitions in question. Boot an usb stick or similar. Backing up important data is always recommended before fiddling with filesystems.
Reduce the filesystem first in /dev/mapper/vg_dckapstaging-lv_home
. Otherwise, resizing the lv will drop the data. The way to do it depends naturally from filesystem. resize2fs
works for ext2/3/4 filesystems. resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G
After you've shrunken the filesystem, run lvresize -L -15G /dev/mapper/vg_dckapstaging-lv_home
to free up the 15GBs and lvresize -L +15G /dev/mapper/vg_dckapstaging-lv_root
to enlargen the lv_root
Finalize with your fs resize tool. For ext that'd be resize2fs /dev/mapper/vg_dckapstaging-lv_root
to enlarge it to maximum available space.
EDIT:corrected a typo: partition -> filesystem
edited Jul 13 '15 at 9:36
answered Jul 13 '15 at 9:30
WhimsicalWombat
57328
57328
resize2fs before lvresize ? (just a question, I never did it). BTW there is a typo 200G instead of 20G.
â Archemar
Jul 13 '15 at 9:41
@Archemarresize2fs
first because lvresize doesn't check whether reduced part contains data i.e. it's filesystem agnostic.resize2fs
(or filesystem equivalent) does. 200G isn't a typo,resize2fs
takes new size instead of relative size. Or my version does, at any rate. 215G - 15G = 200G
â WhimsicalWombat
Jul 13 '15 at 9:46
@WhimsicalWombat resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G doesnt work after unmount gives resize2fs invalid new size
â Danny
Jul 13 '15 at 13:36
@Danny That's weird. You're using ext2/3/4 filesystem, right? Check yourresize2fs
manpage to be certain that your version accepts the G-suffix. If that's not it then... I don't know. Sounds like a syntax error but the command you wrote seems to be ok. Double check for typos I guess.
â WhimsicalWombat
Jul 13 '15 at 14:46
When shrinking, you need to shrink the filesystem before the volume. But when enlarging, you need to enlarge the volume before the filesystem.
â Gilles
Jul 13 '15 at 23:01
 |Â
show 2 more comments
resize2fs before lvresize ? (just a question, I never did it). BTW there is a typo 200G instead of 20G.
â Archemar
Jul 13 '15 at 9:41
@Archemarresize2fs
first because lvresize doesn't check whether reduced part contains data i.e. it's filesystem agnostic.resize2fs
(or filesystem equivalent) does. 200G isn't a typo,resize2fs
takes new size instead of relative size. Or my version does, at any rate. 215G - 15G = 200G
â WhimsicalWombat
Jul 13 '15 at 9:46
@WhimsicalWombat resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G doesnt work after unmount gives resize2fs invalid new size
â Danny
Jul 13 '15 at 13:36
@Danny That's weird. You're using ext2/3/4 filesystem, right? Check yourresize2fs
manpage to be certain that your version accepts the G-suffix. If that's not it then... I don't know. Sounds like a syntax error but the command you wrote seems to be ok. Double check for typos I guess.
â WhimsicalWombat
Jul 13 '15 at 14:46
When shrinking, you need to shrink the filesystem before the volume. But when enlarging, you need to enlarge the volume before the filesystem.
â Gilles
Jul 13 '15 at 23:01
resize2fs before lvresize ? (just a question, I never did it). BTW there is a typo 200G instead of 20G.
â Archemar
Jul 13 '15 at 9:41
resize2fs before lvresize ? (just a question, I never did it). BTW there is a typo 200G instead of 20G.
â Archemar
Jul 13 '15 at 9:41
@Archemar
resize2fs
first because lvresize doesn't check whether reduced part contains data i.e. it's filesystem agnostic. resize2fs
(or filesystem equivalent) does. 200G isn't a typo, resize2fs
takes new size instead of relative size. Or my version does, at any rate. 215G - 15G = 200Gâ WhimsicalWombat
Jul 13 '15 at 9:46
@Archemar
resize2fs
first because lvresize doesn't check whether reduced part contains data i.e. it's filesystem agnostic. resize2fs
(or filesystem equivalent) does. 200G isn't a typo, resize2fs
takes new size instead of relative size. Or my version does, at any rate. 215G - 15G = 200Gâ WhimsicalWombat
Jul 13 '15 at 9:46
@WhimsicalWombat resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G doesnt work after unmount gives resize2fs invalid new size
â Danny
Jul 13 '15 at 13:36
@WhimsicalWombat resize2fs /dev/mapper/vg_dckapstaging-lv_home 200G doesnt work after unmount gives resize2fs invalid new size
â Danny
Jul 13 '15 at 13:36
@Danny That's weird. You're using ext2/3/4 filesystem, right? Check your
resize2fs
manpage to be certain that your version accepts the G-suffix. If that's not it then... I don't know. Sounds like a syntax error but the command you wrote seems to be ok. Double check for typos I guess.â WhimsicalWombat
Jul 13 '15 at 14:46
@Danny That's weird. You're using ext2/3/4 filesystem, right? Check your
resize2fs
manpage to be certain that your version accepts the G-suffix. If that's not it then... I don't know. Sounds like a syntax error but the command you wrote seems to be ok. Double check for typos I guess.â WhimsicalWombat
Jul 13 '15 at 14:46
When shrinking, you need to shrink the filesystem before the volume. But when enlarging, you need to enlarge the volume before the filesystem.
â Gilles
Jul 13 '15 at 23:01
When shrinking, you need to shrink the filesystem before the volume. But when enlarging, you need to enlarge the volume before the filesystem.
â Gilles
Jul 13 '15 at 23:01
 |Â
show 2 more comments
up vote
0
down vote
This is a risky operation
you should try to clean
/
(have a look at/var/log
/var/spool
and delete old and big file)theorical way to proceed include
fsck -F /dev/mapper/vg_dckapstaging-lv_home
lvresize --size -15G /dev/mapper/vg_dckapstaging-lv_home
resize2fs /home
lvresize --size +15G /dev/mapper/vg_dckapstaging-lv_root
resize2fs /Disclaimer
3.1. be sure to have a valid backup !!
3.2. If this is a production system, please do try to test it before.
There's a big problem with your commands: withlv_home
, you're shrinking the container before shrinking the content! That will break the content. Also the argument toresize2fs
must be the volume names, not directories (and you need to unmount before shrinking).
â Gilles
Jul 13 '15 at 22:59
add a comment |Â
up vote
0
down vote
This is a risky operation
you should try to clean
/
(have a look at/var/log
/var/spool
and delete old and big file)theorical way to proceed include
fsck -F /dev/mapper/vg_dckapstaging-lv_home
lvresize --size -15G /dev/mapper/vg_dckapstaging-lv_home
resize2fs /home
lvresize --size +15G /dev/mapper/vg_dckapstaging-lv_root
resize2fs /Disclaimer
3.1. be sure to have a valid backup !!
3.2. If this is a production system, please do try to test it before.
There's a big problem with your commands: withlv_home
, you're shrinking the container before shrinking the content! That will break the content. Also the argument toresize2fs
must be the volume names, not directories (and you need to unmount before shrinking).
â Gilles
Jul 13 '15 at 22:59
add a comment |Â
up vote
0
down vote
up vote
0
down vote
This is a risky operation
you should try to clean
/
(have a look at/var/log
/var/spool
and delete old and big file)theorical way to proceed include
fsck -F /dev/mapper/vg_dckapstaging-lv_home
lvresize --size -15G /dev/mapper/vg_dckapstaging-lv_home
resize2fs /home
lvresize --size +15G /dev/mapper/vg_dckapstaging-lv_root
resize2fs /Disclaimer
3.1. be sure to have a valid backup !!
3.2. If this is a production system, please do try to test it before.
This is a risky operation
you should try to clean
/
(have a look at/var/log
/var/spool
and delete old and big file)theorical way to proceed include
fsck -F /dev/mapper/vg_dckapstaging-lv_home
lvresize --size -15G /dev/mapper/vg_dckapstaging-lv_home
resize2fs /home
lvresize --size +15G /dev/mapper/vg_dckapstaging-lv_root
resize2fs /Disclaimer
3.1. be sure to have a valid backup !!
3.2. If this is a production system, please do try to test it before.
answered Jul 13 '15 at 9:28
Archemar
18.9k93365
18.9k93365
There's a big problem with your commands: withlv_home
, you're shrinking the container before shrinking the content! That will break the content. Also the argument toresize2fs
must be the volume names, not directories (and you need to unmount before shrinking).
â Gilles
Jul 13 '15 at 22:59
add a comment |Â
There's a big problem with your commands: withlv_home
, you're shrinking the container before shrinking the content! That will break the content. Also the argument toresize2fs
must be the volume names, not directories (and you need to unmount before shrinking).
â Gilles
Jul 13 '15 at 22:59
There's a big problem with your commands: with
lv_home
, you're shrinking the container before shrinking the content! That will break the content. Also the argument to resize2fs
must be the volume names, not directories (and you need to unmount before shrinking).â Gilles
Jul 13 '15 at 22:59
There's a big problem with your commands: with
lv_home
, you're shrinking the container before shrinking the content! That will break the content. Also the argument to resize2fs
must be the volume names, not directories (and you need to unmount before shrinking).â Gilles
Jul 13 '15 at 22:59
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f215629%2fresize-an-existing-lvm-partition-and-add-the-space-to-another-lvm-partition%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password