Wie greife ich auf die Volgroup-Festplatte unter Fedora 13 zu oder formatiere sie, wenn ich einen Vorgang darauf ausführe?

Wie greife ich auf die Volgroup-Festplatte unter Fedora 13 zu oder formatiere sie, wenn ich einen Vorgang darauf ausführe?

Ich hatte nur Fedora 13 auf meinem Dell Inspiron 1545. Ich habe festgestellt, dass sich in meinem Computer eine Festplatte mit dem Namen „Volgroup“ und eine weitere Festplatte befindet, auf der Linux installiert ist.

Das Problem ist, dass ich nicht auf diesen Bereich meiner Festplatte zugreifen kann. Er kann nicht gemountet werden. Bitte helfen Sie mir also, darauf zuzugreifen oder ihn zu formatieren, da hier keine Optionen funktionieren.

Antwort1

Du benutztLVM

Sie mounten eine Partition vom Typ „Linux LVM“ nicht auf die gleiche Weise wie eine Partition mit einem Standard-Linux-Dateisystem (z. B. ext2, ext3).
Lassen Sie uns zunächst die Volume-Gruppe bestimmen, die das physische Volume enthält.

# pvs
PV         VG         Fmt  Attr PSize   PFree 
/dev/hda2  VolGroup01 lvm2 a-   148.94G 32.00M
/dev/hdb2  VolGroup00 lvm2 a-   114.94G 96.00M

Als Nächstes listen wir die logischen Datenträger in VolGroup01 auf.

# lvdisplay /dev/VolGroup01
--- Logical volume ---
  LV Name                /dev/VolGroup01/LogVol00
  VG Name                VolGroup01
  LV UUID                zOQogm-G8I7-a4WC-T7KI-AhWe-Ex3Y-JVzFcR
  LV Write Access        read/write
  LV Status              available
  # open                 0
  LV Size                146.97 GB
  Current LE             4703
  Segments               1
  Allocation             inherit
  Read ahead sectors     0
  Block device           253:2

  --- Logical volume ---
  LV Name                /dev/VolGroup01/LogVol01
  VG Name                VolGroup01
  LV UUID                araUBI-4eer-uh5L-Dvnr-3bI6-4gYg-APgYy2
  LV Write Access        read/write
  LV Status              available
  # open                 0
  LV Size                1.94 GB
  Current LE             62
  Segments               1
  Allocation             inherit
  Read ahead sectors     0
  Block device           253:3

Das logische Volume, das ich „mounten“ möchte (rein im rechnerbezogenen Sinne), ist /dev/VolGroup01/LogVol00. Das andere logische Volume ist eine Swap-Partition.

# mount /dev/VolGroup01/LogVol00 /tmp/mnt

verwandte Informationen