Proxmox’a yeni disk eklemek için diski formalayıp LVM olarak göstermek gerekiyor.
Mevcut diskleri Proxmox sunucunda Disks menüsünde görebilirsiniz. Burada “sda” olan disk proxmox’un kurulu olduğu disk. Bu ortamda bulunan 2 diskide önce shell ekranından formatlayıp lvm olarak ekleyeceğiz.
Fdisk komutu ile patition’a başlıyoruz:
root@pve:~# fdisk /dev/sdb
Welcome to fdisk (util-linux 2.38.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help):
n komutu ile yeni partition oluşturuyoruz.
Partition number (5-128, default 5):
First sector (488394752-488397134, default 488394752):
Last sector, +/-sectors or +/-size{K,M,G,T,P} (488394752-488397134, default 488396799):
Created a new partition 5 of type 'Linux filesystem' and of size 1 MiB.
Sektör numaralarını default ayarlarda bırakabilirsiniz.
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
W komutu ile yaptığımız işlemi kaydedebiliriz.
Buraya kadar yapılan işlemler diski partition’larına ayırdı. Şimdi proxmox’un kullanması için bölüm ve bölüm grubu oluşturuyoruz.
root@pve:~# pvcreate /dev/sdb
Cannot use /dev/sdb: device is partitioned
root@pve:~# pvcreate /dev/sdb1
WARNING: vfat signature detected on /dev/sdb1 at offset 82. Wipe it? [y/n]: y
Wiping vfat signature on /dev/sdb1.
WARNING: vfat signature detected on /dev/sdb1 at offset 0. Wipe it? [y/n]: y
Wiping vfat signature on /dev/sdb1.
WARNING: vfat signature detected on /dev/sdb1 at offset 510. Wipe it? [y/n]: y
Wiping vfat signature on /dev/sdb1.
Physical volume "/dev/sdb1" successfully created.
root@pve:~# vgcreate Disk2 /dev/sdb1
Volume group "Disk2" successfully created
root@pve:~#
Sonraki işlemde ise arayüzden diskimi tanıtabiliriz. Bunun için Datacenter > Storage > LVM yolunu takip edebilirsiniz.