Forrest logo
back to context overview

lvcreate

List of commands for lvcreate:

  • lvcreate:tldr:5f493 lvcreate: Create a logical volume called mylv that uses 60% of the total space in volume group vg1.
    $ lvcreate -l ${60%VG} -n ${mylv} ${vg1}
    try on your machine
    explain this command
  • lvcreate:tldr:60c13 lvcreate: Create a logical volume of 10 gigabytes in the volume group vg1.
    $ lvcreate -L ${10G} ${vg1}
    try on your machine
    explain this command
  • lvcreate:tldr:6899d lvcreate: Create a 1500 megabyte linear logical volume named mylv in the volume group vg1.
    $ lvcreate -L ${1500} -n ${mylv} ${vg1}
    try on your machine
    explain this command
back to context overview