Dựa trên kết quả của lệnh lsblk
, bạn có hai ổ đĩa chính: sda
và sdb
.
sda1: 1007K
sda2: 1G, được gắn kết tại /boot/efi
sda3: 110.8G, chứa các phân vùng LVM:
pve-swap: 8G, sử dụng làm swap
pve-root: 37.7G, gắn kết tại /
pve-data_tmeta: 1G
pve-data-tpool: 49.3G, chứa các phân vùng:
pve-data: 49.3G
pve-vm--100--disk--0: 32G
pve-vm--101--disk--0: 32G
sdb có dung lượng 931.5G và chỉ có một phân vùng sdb1 với dung lượng tương tự.
To add the sdb1
partition to your Proxmox system, follow these steps:
Initialize the Disk:
Open the Proxmox web interface and select your node.
Go to Disks and ensure
sdb
is listed. If not, you may need to restart your server.
Partition the Disk:
Open the Shell from the Proxmox web interface.
Use the following commands to create a partition table and partition:
bashparted /dev/sdb mklabel gpt parted -a opt /dev/sdb mkpart primary ext4 0% 100%
Format the Partition:
Format the new partition with the ext4 filesystem:
bashmkfs.ext4 -L StorageOne /dev/sdb1
Mount the Partition:
Create a mount point and mount the partition:
bashmkdir -p /mnt/data mount /dev/sdb1 /mnt/data
Configure Automatic Mounting:
Edit the
/etc/fstab
file to ensure the partition mounts automatically on reboot:bashnano /etc/fstab
Add the following line to the file:
bashLABEL=StorageOne /mnt/data ext4 defaults 0 2
Add Storage to Proxmox:
Go to Datacenter -> Storage in the Proxmox web interface.
Click Add and select Directory.
Set the ID (e.g.,
StorageOne
), and specify the path (/mnt/data
).
For more detailed instructions, you can refer to .
I hope this helps! Let me know if you need any further assistance.