1- crear disco nuevo en xencenter
2- apagada la maquina virtual agregar el disco desde xencenter3- Iniciar maquina virtual
4- utilizando fdisk -l observa el nombre de la nueva unidad, lo mas probable es que sea /dev/xvdb
5- con fdisk creamos la particion
fdisk /dev/xvdb
Type n to create new partitionSelect p or e: the partition type, say p for primarySelect partition number (1-4), say 1For next two options, accept the default values to create partition of maximum space available.
Type w to exit and save the partition table.
6- crear sistema de archivos
mkfs -t ext3 /dev/xvdb
u otro formato como ext4
7- montar disco duro
# mkdir /disco2
# mount /dev/xvdb /disco2
8- si deseas que se agrege el disco automaticamente al iniciar edita /etc/fstab y agrega
/dev/xvdb /disco2 ext3 defaults 1 2
No hay comentarios:
Publicar un comentario