Surgiu esta necessidade de adicionar um novo hd no xenserver, tive que apresentar este disco para as VMS.
No xenserver console.
// Listar discos
# fdisk -l
Disk /dev/cciss/c0d1: 1500.2 GB, 1500268355584 bytes
256 heads, 63 sectors/track, 181684 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/cciss/c0d1p1 * 1 181689 1465138583+ ee EFI GPT
Repare que este disco tem 1,5TB, e o pai é /dev/cciss/c0d1 já o filho é /dev/sdb
No xenserver console.
// Listar discos
# fdisk -l
Disk /dev/cciss/c0d1: 1500.2 GB, 1500268355584 bytes
256 heads, 63 sectors/track, 181684 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/cciss/c0d1p1 * 1 181689 1465138583+ ee EFI GPT
Repare que este disco tem 1,5TB, e o pai é /dev/cciss/c0d1 já o filho é /dev/sdb
Temos que criar uma tabela para o mesmo.
# fdisk /dev/cciss/c0d1
// Apagar as partições
Command (m for help): d
Selected partition 1
// Listando como ficou
Command (m for help): p
Disk /dev/cciss/c0d1: 1500.2 GB, 1500268355584 bytes
256 heads, 63 sectors/track, 181684 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
// Criando a tabela ou patição
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-181684, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-181684, default 181684):
Using default value 181684
# fdisk /dev/cciss/c0d1
// Apagar as partições
Command (m for help): d
Selected partition 1
// Listando como ficou
Command (m for help): p
Disk /dev/cciss/c0d1: 1500.2 GB, 1500268355584 bytes
256 heads, 63 sectors/track, 181684 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
// Criando a tabela ou patição
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-181684, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-181684, default 181684):
Using default value 181684
// Listando como ficou
Command (m for help): p
Disk /dev/cciss/c0d1: 1500.2 GB, 1500268355584 bytes
256 heads, 63 sectors/track, 181684 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/cciss/c0d1p1 1 181684 1465099744+ 83 Linux
// Salvando configuração
Command (m for help): w
The partition table has been altered!
// Agora vem a informação principal, criar o "storage", e apresentar para o Xenserver
xe sr-create name-label="NOME_DO_STORAGE" content-type=user type=lvm device-config:device=/dev/cciss/c0d1p1
Por fim é so conferir no xenserver e ta na mão....