não é possível montar a partição lvm

1

Oi eu estou tentando montar um novo volume lógico. Eu estou no servidor Ubuntu 13.04. Eu criei o lv usando o resto do espaço em disco. Estou recebendo este erro:

NTFS signature is missing.
Failed to mount '/dev/mapper/TheServer--vg-lv_media': Invalid argument
The device '/dev/mapper/TheServer--vg-lv_media' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

Não sei por que isso está ocorrendo. aqui está uma lista da minha configuração do LVM:

--- Logical volume ---
  LV Path                /dev/TheServer-vg/root
  LV Name                root
  VG Name                TheServer-vg
  LV UUID                OVIFDE-jtqA-lvlm-3Qu2-mWz9-Ktsw-IjlFdb
  LV Write Access        read/write
  LV Creation host, time TheServer, 2013-05-08 19:26:34 -0600
  LV Status              available
  # open                 1
  LV Size                26.30 GiB
  Current LE             6734
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           252:0

  --- Logical volume ---
  LV Path                /dev/TheServer-vg/swap_1
  LV Name                swap_1
  VG Name                TheServer-vg
  LV UUID                bGmvaC-Q2xf-V814-TG7i-9mDp-XJv3-CI0rVA
  LV Write Access        read/write
  LV Creation host, time TheServer, 2013-05-08 19:26:35 -0600
  LV Status              available
  # open                 2
  LV Size                3.50 GiB
  Current LE             895
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           252:1

  --- Logical volume ---
  LV Path                /dev/TheServer-vg/lv_media
  LV Name                lv_media
  VG Name                TheServer-vg
  LV UUID                OK3auK-I1sL-DiBf-sYxV-gZFs-UfOR-OcNDDA
  LV Write Access        read/write
  LV Creation host, time theserver, 2013-05-20 23:09:29 -0600
  LV Status              available
  # open                 0
  LV Size                901.47 GiB
  Current LE             230776
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           252:2

Estou montando em /media/store

isso pode ser um problema porque o ponto de montagem está em outro LV no mesmo VG?

    
por arrowill12 21.05.2013 / 07:28

1 resposta

1

Criar uma partição sozinha não a torna utilizável, é necessário criar um sistema de arquivos nela. Você precisa fazer da mesma maneira com uma partição LVM, assim como com uma partição simples. A ferramenta a ser usada é o mkfs com os parâmetros apropriados. Especificar o tipo de sistema de arquivos e o nome do dispositivo será suficiente. Se você deseja criar um sistema de arquivos ext4 type, isso funcionará:

sudo mkfs.ext4 /dev/TheServer-vg/lv_media

Da mesma forma, substitua ext4 por outro tipo de sistema de arquivos, se quiser, embora a chave [TAB] ajude como sempre.

    
por grimpitch 24.05.2013 / 06:00