Este documento describe cómo agregar espacio en disco a máquinas virtuales (VM) de Linux.
Linux (y las VM de Linux) se instalan en discos duros, ya sean reales o virtuales. Además de esto, se acumula un Administrador de Volumen seguido de un sistema de archivos que es lo que se usa normalmente.
Para una máquina virtual Linux, estos pasos son necesarios para aumentar el tamaño de un sistema de archivos:
- Para cambiar el tamaño de la partición, ingrese el comando fdisk y use el nombre PV (desde la Sección 1 Paso 2) sin el número al final.
# fdisk
Este ejemplo muestra el resultado del comando fdisk /dev/sda:
[root@sessionmgr02 ~]# fdisk /dev/sda
The number of cylinders for this disk is set to 9137.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command (m for help):
- En el símbolo del sistema, ingrese p y presione Enter para ver la tabla de particiones.
Command (m for help): p
Este ejemplo muestra el resultado que muestra la tabla de particiones después de escribir la letra 'p':
Command (m for help): p
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 9137 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help):
- Registre los valores Start (Inicio) e Id (Id) de la partición que desee cambiar de tamaño. Por ejemplo, desde el ejemplo de salida en el Paso 2, Inicio: 14 Id: 8e .
Inicio:______________________Id:_________________________
- Elimine la entrada Partición del dispositivo que desea cambiar de tamaño. Ingrese d en el símbolo del sistema.
Command (m for help): d
Este ejemplo muestra los resultados después de ingresar d:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 9137 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4):
- En el mensaje Partition number, ingrese el número de partición que desea eliminar y presione Enter. (El número al final del nombre del dispositivo es el número de partición).
Partition number (1-4): <number>
Este ejemplo muestra los resultados después de ingresar el número de partición:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 9137 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help):
- En el símbolo del sistema, ingrese n para crear una nueva partición.
Command (m for help): n
Este ejemplo muestra los resultados después de ingresar n:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
Command (m for help): n
- Ingrese p para una partición primaria.
Command (m for help): p
Este ejemplo muestra el resultado después de ingresar p:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4):
- En el mensaje del número de partición, introduzca el número de partición y pulse Enter (el mismo número de partición que el eliminado). En este ejemplo, el número es 2.
Partition number (1-4): 2
Este ejemplo muestra los resultados después de ingresar el número de partición:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (14-9137, default 14):
- Verifique que el valor predeterminado para el Primer número de cilindro coincida con el valor de Inicio del Paso 3 de esta Sección. Si lo hace, presione Enter para aceptar el valor predeterminado. Si no coincide, asegúrese de que no se superpone con ninguna partición existente, introduzca manualmente el valor y presione Enter.
Este ejemplo muestra los resultados después de aceptar el valor predeterminado y pulsar Intro:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (14-9790, default 14):
Using default value 14
Last cylinder or +size or +sizeM or +sizeK (14-9790, default 9790):
- Para el valor del último cilindro, presione Enter para utilizar el valor predeterminado.
Este ejemplo muestra los resultados después de aceptar el valor predeterminado y pulsar Intro:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (14-9790, default 14):
Using default value 14
Last cylinder or +size or +sizeM or +sizeK (14-9790, default 9790):
Using default value 9790
Command (m for help):
- En el símbolo del sistema, ingrese t y presione Enter.
Command (m for help): t
Este ejemplo muestra los resultados después de ingresar t:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (14-9790, default 14):
Using default value 14
Last cylinder or +size or +sizeM or +sizeK (14-9790, default 9790):
Using default value 9790
Command (m for help): t
Partition number (1-4):
- En el indicador Número de partición, introduzca el número de partición que desea cambiar de tamaño y pulse Intro.
Partition number (1-4): 2
Este ejemplo muestra los resultados después de ingresar el número de partición:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (14-9790, default 14):
Using default value 14
Last cylinder or +size or +sizeM or +sizeK (14-9790, default 9790):
Using default value 9790
Command (m for help): t
Partition number (1-4): 2
Hex code (type L to list codes):
- En el mensaje de código hexadecimal, escriba el código hexadecimal. Este es el valor de Id del Paso 3 en esta Sección. Press Enter.
Hex code (type L to list codes): 8e
Este ejemplo muestra los resultados después de ingresar el código hexadecimal:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (14-9790, default 14):
Using default value 14
Last cylinder or +size or +sizeM or +sizeK (14-9790, default 9790):
Using default value 9790
Command (m for help): t
Partition number (1-4): 2
Hex code (type L to list codes): 8e
Changed system type of partition 2 to 8e (Linux LVM)
Command (m for help):
- En el símbolo del sistema, ingrese w para escribir la partición en el disco.
Command (m for help): w
Este ejemplo muestra los resultados después de ingresar w en el mensaje:
Disk /dev/sda: 75.1 GB, 75161927680 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 9137 73288530 8e Linux LVM
Command (m for help): d
Partition number (1-4): 2
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (14-9790, default 14):
Using default value 14
Last cylinder or +size or +sizeM or +sizeK (14-9790, default 9790):
Using default value 9790
Command (m for help): t
Partition number (1-4): 2
Hex code (type L to list codes): 8e
Changed system type of partition 2 to 8e (Linux LVM)
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table.
The new table will be used at the next reboot.
Syncing disks.
[root@sessionmgr02 ~]#
Esto sale de fdisk y lo lleva al mensaje raíz.
- Reinicie la máquina virtual para asegurarse de que los nuevos parámetros coincidan con el kernel.
# init 6
- Después de que la máquina virtual complete el reinicio (unos 5 minutos), inicie sesión en (ssh) la máquina virtual como root.
- Verifique para asegurarse de que el tamaño del disco sea ahora mayor con el comando fdisk -l <PV Name> para ver el nuevo tamaño de la partición (el nombre de PV es de la Sección 1 Paso 2).
[root@sessionmgr02 ~]# fdisk -l /dev/sda
Disk /dev/sda2: 80.4 GB, 80418562560 bytes
255 heads, 63 sectors/track, 9777 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Este ejemplo de resultado muestra que /dev/sda ahora tiene 80 gigabytes asignados a él.