Geçenlerde ilk bilgisayarımı kurdum ve bugün fark ettim ki, birden fazla sabit disk olmasına rağmen, boş alan kullanmıyorum çünkü bölümleri doğru şekilde ayarlamadım.
LVM grubuma sabit disklerimin ikisini (önyükleme diski değil) eklemeye çalışıyorum.
İlk önce buradaki örneği izleyerek iki sürücümde LVM bölümleri oluşturdum: http://www.server-world.info/tr/note?os=Fedora_18&p=add_hd
Şimdi, fdisk -l
bana çıktısını gösterir:
[root@localhost lvm]# fdisk -l
Disk /dev/sda: 2000.4 GB, 2000398934016 bytes, 3907029168 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 identifier: 0x1d04f8ff
Device Boot Start End Blocks Id System
/dev/sda1 2048 3907029167 1953513560 8e Linux LVM
Disk /dev/sdb: 256.1 GB, 256060514304 bytes, 500118192 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 identifier: 0x000988f9
Device Boot Start End Blocks Id System
/dev/sdb1 * 2048 1026047 512000 83 Linux
/dev/sdb2 1026048 500117503 249545728 8e Linux LVM
Disk /dev/sdc: 500.1 GB, 500107862016 bytes, 976773168 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 identifier: 0x00000081
Device Boot Start End Blocks Id System
/dev/sdc1 * 63 976768064 488384001 83 Linux
Disk /dev/sdd: 2000.4 GB, 2000398934016 bytes, 3907029168 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 identifier: 0xa2da0487
Device Boot Start End Blocks Id System
/dev/sdd1 2048 3907029167 1953513560 8e Linux LVM
Disk /dev/mapper/fedora-swap: 8338 MB, 8338276352 bytes, 16285696 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 /dev/mapper/fedora-root: 53.7 GB, 53687091200 bytes, 104857600 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 /dev/mapper/fedora-home: 193.5 GB, 193508409344 bytes, 377946112 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
Şimdi, yeni oluşturulan bölümleri LVM grubuna eklemek için burada verilen talimatları izliyordum:
http://www.techotopia.com/index.php/Adding_a_New_Disk_to_a_Fedora_Volume_Group_and_Logical_Volume
Bana vermem gereken çalışmam gerekir pvcreate sda
:
[root@localhost namu]# pvcreate /dev/sda
Device /dev/sda not found (or ignored by filtering).
İçinde \etc\lvm\lvm.conf
, filtrenin ayarlanması
filter = [ "a/.*/" ]
/etc/lvm/cache
Sistemimi sildim ve yeniden başlattım ancak pvcreate sda
yine de aynı mesajı döndürdüm.
Bilgisayarımın bu bölümleri düzgün şekilde algılayıp algılamadığını görmek için aşağıdaki komutları çalıştırdım:
[root@localhost namu]# cat /proc/mdstat
Personalities :
unused devices: <none>
[root@localhost namu]# pvscan
PV /dev/sdb2 VG fedora lvm2 [237.98 GiB / 0 free]
Total: 1 [237.98 GiB] / in use: 1 [237.98 GiB] / in no VG: 0 [0 ]
[root@localhost namu]# lvscan
ACTIVE '/dev/fedora/swap' [7.77 GiB] inherit
ACTIVE '/dev/fedora/home' [180.22 GiB] inherit
ACTIVE '/dev/fedora/root' [50.00 GiB] inherit
ve öyle görünmüyor. Birisi lütfen yardım edebilir mi? Teşekkür ederim.