how to add Unallocatated disk to lvm2 root in fedora? [closed]
Clash Royale CLAN TAG#URR8PPP
up vote
-4
down vote
favorite
my lvm2 root in fedora already full, and i have 20.30GB unallocated disk, but i cant use Gparted to use it, so is there any method to move that unallocated disk??
fedora root disk
closed as unclear what you're asking by Jeff Schaller, peterh, meuh, Jesse_b, Kiwy Feb 26 at 14:06
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |Â
up vote
-4
down vote
favorite
my lvm2 root in fedora already full, and i have 20.30GB unallocated disk, but i cant use Gparted to use it, so is there any method to move that unallocated disk??
fedora root disk
closed as unclear what you're asking by Jeff Schaller, peterh, meuh, Jesse_b, Kiwy Feb 26 at 14:06
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
please post output oflsblk -f
so we can see what we're working with.
â Mioriin
Feb 26 at 1:33
Are you trying to partition the disk so that you can add it to your LV? If so, you can just use fdisk. What have you tried so far?
â Nasir Riley
Feb 26 at 2:29
add a comment |Â
up vote
-4
down vote
favorite
up vote
-4
down vote
favorite
my lvm2 root in fedora already full, and i have 20.30GB unallocated disk, but i cant use Gparted to use it, so is there any method to move that unallocated disk??
fedora root disk
my lvm2 root in fedora already full, and i have 20.30GB unallocated disk, but i cant use Gparted to use it, so is there any method to move that unallocated disk??
fedora root disk
asked Feb 26 at 1:15
Harmnot
63
63
closed as unclear what you're asking by Jeff Schaller, peterh, meuh, Jesse_b, Kiwy Feb 26 at 14:06
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by Jeff Schaller, peterh, meuh, Jesse_b, Kiwy Feb 26 at 14:06
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
please post output oflsblk -f
so we can see what we're working with.
â Mioriin
Feb 26 at 1:33
Are you trying to partition the disk so that you can add it to your LV? If so, you can just use fdisk. What have you tried so far?
â Nasir Riley
Feb 26 at 2:29
add a comment |Â
1
please post output oflsblk -f
so we can see what we're working with.
â Mioriin
Feb 26 at 1:33
Are you trying to partition the disk so that you can add it to your LV? If so, you can just use fdisk. What have you tried so far?
â Nasir Riley
Feb 26 at 2:29
1
1
please post output of
lsblk -f
so we can see what we're working with.â Mioriin
Feb 26 at 1:33
please post output of
lsblk -f
so we can see what we're working with.â Mioriin
Feb 26 at 1:33
Are you trying to partition the disk so that you can add it to your LV? If so, you can just use fdisk. What have you tried so far?
â Nasir Riley
Feb 26 at 2:29
Are you trying to partition the disk so that you can add it to your LV? If so, you can just use fdisk. What have you tried so far?
â Nasir Riley
Feb 26 at 2:29
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
You use fdisk
to create a new partition (20.30GB unallocated disk), then follow this step to extend your existing LV:
- Initialize the new partition for use by LVM using `pvcreate
/dev/ - Get the current VG using
vgdisplay
- Extend the existing VG, `vgextend
- Increase the LV,
lvextend -L+20G /dev/<VG name>/<LV name>
I broke my filesystem , I think I made something wrong, how I can I rebuild initramfs in rescue mode? When I boot, my fedora in emergency mode , and the logs say , failed to start default.target
â Harmnot
Feb 27 at 1:03
@Harmnot try thisdracut --force --regenerate-all
â Wissam Roujoulah
Feb 27 at 8:15
I already re install my fedora, thx that your kind solutions ;)
â Harmnot
Feb 28 at 8:54
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You use fdisk
to create a new partition (20.30GB unallocated disk), then follow this step to extend your existing LV:
- Initialize the new partition for use by LVM using `pvcreate
/dev/ - Get the current VG using
vgdisplay
- Extend the existing VG, `vgextend
- Increase the LV,
lvextend -L+20G /dev/<VG name>/<LV name>
I broke my filesystem , I think I made something wrong, how I can I rebuild initramfs in rescue mode? When I boot, my fedora in emergency mode , and the logs say , failed to start default.target
â Harmnot
Feb 27 at 1:03
@Harmnot try thisdracut --force --regenerate-all
â Wissam Roujoulah
Feb 27 at 8:15
I already re install my fedora, thx that your kind solutions ;)
â Harmnot
Feb 28 at 8:54
add a comment |Â
up vote
1
down vote
You use fdisk
to create a new partition (20.30GB unallocated disk), then follow this step to extend your existing LV:
- Initialize the new partition for use by LVM using `pvcreate
/dev/ - Get the current VG using
vgdisplay
- Extend the existing VG, `vgextend
- Increase the LV,
lvextend -L+20G /dev/<VG name>/<LV name>
I broke my filesystem , I think I made something wrong, how I can I rebuild initramfs in rescue mode? When I boot, my fedora in emergency mode , and the logs say , failed to start default.target
â Harmnot
Feb 27 at 1:03
@Harmnot try thisdracut --force --regenerate-all
â Wissam Roujoulah
Feb 27 at 8:15
I already re install my fedora, thx that your kind solutions ;)
â Harmnot
Feb 28 at 8:54
add a comment |Â
up vote
1
down vote
up vote
1
down vote
You use fdisk
to create a new partition (20.30GB unallocated disk), then follow this step to extend your existing LV:
- Initialize the new partition for use by LVM using `pvcreate
/dev/ - Get the current VG using
vgdisplay
- Extend the existing VG, `vgextend
- Increase the LV,
lvextend -L+20G /dev/<VG name>/<LV name>
You use fdisk
to create a new partition (20.30GB unallocated disk), then follow this step to extend your existing LV:
- Initialize the new partition for use by LVM using `pvcreate
/dev/ - Get the current VG using
vgdisplay
- Extend the existing VG, `vgextend
- Increase the LV,
lvextend -L+20G /dev/<VG name>/<LV name>
answered Feb 26 at 3:45
Wissam Roujoulah
2,833316
2,833316
I broke my filesystem , I think I made something wrong, how I can I rebuild initramfs in rescue mode? When I boot, my fedora in emergency mode , and the logs say , failed to start default.target
â Harmnot
Feb 27 at 1:03
@Harmnot try thisdracut --force --regenerate-all
â Wissam Roujoulah
Feb 27 at 8:15
I already re install my fedora, thx that your kind solutions ;)
â Harmnot
Feb 28 at 8:54
add a comment |Â
I broke my filesystem , I think I made something wrong, how I can I rebuild initramfs in rescue mode? When I boot, my fedora in emergency mode , and the logs say , failed to start default.target
â Harmnot
Feb 27 at 1:03
@Harmnot try thisdracut --force --regenerate-all
â Wissam Roujoulah
Feb 27 at 8:15
I already re install my fedora, thx that your kind solutions ;)
â Harmnot
Feb 28 at 8:54
I broke my filesystem , I think I made something wrong, how I can I rebuild initramfs in rescue mode? When I boot, my fedora in emergency mode , and the logs say , failed to start default.target
â Harmnot
Feb 27 at 1:03
I broke my filesystem , I think I made something wrong, how I can I rebuild initramfs in rescue mode? When I boot, my fedora in emergency mode , and the logs say , failed to start default.target
â Harmnot
Feb 27 at 1:03
@Harmnot try this
dracut --force --regenerate-all
â Wissam Roujoulah
Feb 27 at 8:15
@Harmnot try this
dracut --force --regenerate-all
â Wissam Roujoulah
Feb 27 at 8:15
I already re install my fedora, thx that your kind solutions ;)
â Harmnot
Feb 28 at 8:54
I already re install my fedora, thx that your kind solutions ;)
â Harmnot
Feb 28 at 8:54
add a comment |Â
1
please post output of
lsblk -f
so we can see what we're working with.â Mioriin
Feb 26 at 1:33
Are you trying to partition the disk so that you can add it to your LV? If so, you can just use fdisk. What have you tried so far?
â Nasir Riley
Feb 26 at 2:29