Lvm

loisl

Registered User
Hi,
bin gerade an LVM und irgenwie habe ich noch was vergessen???

Folgendes habe ich ausgeführt:
# pvcreate /dev/sda3
# pvdisplay
AUSGABE:
--- Physical volume ---
PV Name /dev/sda3
VG Name xenvg
PV Size 1,32 TB / not usable 2,23 MB
Allocatable yes
PE Size (KByte) 4096
Total PE 347207
Free PE 1176
Allocated PE 346031
PV UUID efa3hB-mOaM-E6bq-fvjm-tofZ-Zkji-Wj6bhv

# vgcreate xenvg /dev/sda3
# lvcreate --name xen --size 1,32T xenvg
# lvdisplay
AUSGABE:
--- Logical volume ---
LV Name /dev/xenvg/xen
VG Name xenvg
LV UUID WdtOHm-6csh-YaMt-Wmfa-kcwd-SnoI-RIjxMx
LV Write Access read/write
LV Status available
# open 0
LV Size 1,32 TB
Current LE 346031
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:0

# lvscan
AUSGABE:
ACTIVE '/dev/xenvg/xen' [1,32 TB] inherit

# mkdir /home/xen
# mount /dev/xenvg/xen /home/xen
!!!FEHLER!!!
mount: you must specify the filesystem type

mit # mount -text3 /dev/xenvg/xen /home/xen
!!!FEHLER!!!
mount: wrong fs type, bad option, bad superblock on /dev/mapper/xenvg-xen,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so

Danke schon mal und
liebe Grüsse
loisl
 
ähm, du hast es nun hier so gepostet:

mount -text3 /dev/xenvg/xen /home/xen

da ist kein Leerzeichen zwischen t und e

richtig wäre:
mount -t ext3 /dev/xenvg/xen /home/xen
 
Das sollte egal sein. Bei mir geht mount -text3 auch. Ist wie beim Mysql Befehl da kannste auch -u root oder -uroot schreiben.
 
Das sollte egal sein. Bei mir geht mount -text3 auch. Ist wie beim Mysql Befehl da kannste auch -u root oder -uroot schreiben.

Ah danke, probiert hatte ich es ehrlich gesagt nicht, fiel mir nur so ins Auge. Man sollte jeden Tag etwas lernen :rolleyes:
 
Back
Top