0

I have a question related to the configuration of a partition-table in "Foreman". As you can see in the screenshot below, I allocate 200 GB of free space to the /-Directory.

enter image description here

The problem: how can I allocate the rest of free space to this partition? Your answer would really help me out... I'm looking forward!

Thanks and best regards,

jww
  • 97,681
  • 90
  • 411
  • 885
FrankTheTank
  • 62
  • 1
  • 11
  • 1
    Stack Overflow is a site for programming and development questions. This question appears to be off-topic because it is not about programming or development. See [What topics can I ask about here](http://stackoverflow.com/help/on-topic) in the Help Center. Perhaps [Super User](http://superuser.com/) or [Unix & Linux Stack Exchange](http://unix.stackexchange.com/) would be a better place to ask. – jww Jun 22 '17 at 20:24

1 Answers1

1

You can use a combination of --grow and --maxsize

logvol / --size=1 --grow --name=lv_root --vgname=vg00

or --percent

logvol / --percent=100 --name=lv_root --vgname=vg00

Option --percent can not be used together with the --size and --grow options.

zombic
  • 221
  • 1
  • 9