Dispositivo / dev / sda4 não encontrado erro visto ao criar volume físico

0

Eu estou tentando expandir meu disco atual, mas quando eu faço pvcreate com a última partição que diz não encontrado abaixo são os detalhes do comando.

Uma coisa que notei é que o tipo de rótulo do disco é alterado para GPT a partir do DOS após a partição. Não sei o que isso significa

login as: root
[email protected]'s password:
Last login: Wed Oct 11 01:03:01 2017 from 10.10.222.122
[root@dpnjsv2-centos7-base ~]# fdisk /dev/sda
Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): n
Partition type:
   p   primary (1 primary, 0 extended, 3 free)
   e   extended
Select (default p): p
Partition number (2-4, default 2): 4
First sector (41943040-73400319, default 41943040):
Using default value 41943040
Last sector, +sectors or +size{K,M,G} (41943040-73400319, default 73400319):
Using default value 73400319
Partition 4 of type Linux and of size 15 GiB is set




Command (m for help): t


Partition number (1,4, default 4): 4


Hex code (type L to list all codes): 8e


Changed type of partition 'Linux' to 'Linux LVM'

Command (m for help): p

Disk /dev/sda: 37.6 GB, 37580963840 bytes, 73400320 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1    41943039    20971519+  ee  GPT
/dev/sda4        41943040    73400319    15728640   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 or after you run partprobe(8) or kpartx(8)
Syncing disks.
You have new mail in /var/spool/mail/root


[root@dpnjsv2-centos7-base ~]# partprobe


[root@dpnjsv2-centos7-base ~]# pvcreate /dev/sda4
  **Device /dev/sda4 not found (or ignored by filtering).**
You have new mail in /var/spool/mail/root
[root@dpnjsv2-centos7-base ~]# fdisk /dev/sda
WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.
Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): p

Disk /dev/sda: 37.6 GB, 37580963840 bytes, 73400320 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: gpt


#         Start          End    Size  Type            Name
 1         2048       411647    200M  EFI System      EFI System Partition
 2       411648      1435647    500M  Microsoft basic
 3      1435648     41940991   19.3G  Linux LVM

Command (m for help): pvcreate 1

Disk /dev/sda: 37.6 GB, 37580963840 bytes, 73400320 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: gpt


#         Start          End    Size  Type            Name
 1         2048       411647    200M  EFI System      EFI System Partition
 2       411648      1435647    500M  Microsoft basic
 3      1435648     41940991   19.3G  Linux LVM
    
por Aditya Naik 11.10.2017 / 14:05

1 resposta

1

A saída, você postou, parece um pouco inconsistente. Primeiro você criou a partição / dev / sda4, porém depois ela não está listada. Realmente existe?

Se sim, o mais provável é que você tenha algum lixo no início da partição / dev / sda4 e o pvcreate não possa aceitá-lo. Tente limpar os primeiros megabytes como:

dd if=/dev/zero of=/dev/sda4 bs=1M count=20

Tivemos a situação semelhante recentemente, apenas tentamos usar o disco / dev / sdb completo para o novo VG.

E você criou o sda4, apesar de ainda não ter o sda2 / 3:

Partition type:
   p   primary (1 primary, 0 extended, 3 free)
   e   extended
Select (default p): p
Partition number (2-4, default 2): 4

Isso realmente parece com dois nós diferentes com o mesmo nome.

    
por 11.10.2017 / 14:48

Tags