Cáu hình thêm ổ cứng cho hệ thống Promox


Dựa trên kết quả của lệnh lsblk, bạn có hai ổ đĩa chính: sdasdb.

sda có dung lượng 111.8G và được chia thành ba phân vùng:
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ự.


Làm thế nào để thêm ổ cứng mới cắm vào Server

To add the sdb1 partition to your Proxmox system, follow these steps:

  1. 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.

  2. Partition the Disk:

    • Open the Shell from the Proxmox web interface.

    • Use the following commands to create a partition table and partition:

      bash
      parted /dev/sdb mklabel gpt
      parted -a opt /dev/sdb mkpart primary ext4 0% 100%
      
  3. Format the Partition:

    • Format the new partition with the ext4 filesystem:

      bash
      mkfs.ext4 -L StorageOne /dev/sdb1
      
  4. Mount the Partition:

    • Create a mount point and mount the partition:

      bash
      mkdir -p /mnt/data
      mount /dev/sdb1 /mnt/data
      
  5. Configure Automatic Mounting:

    • Edit the /etc/fstab file to ensure the partition mounts automatically on reboot:

      bash
      nano /etc/fstab
      
    • Add the following line to the file:

      bash
      LABEL=StorageOne /mnt/data ext4 defaults 0 2
      
  6. 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.

Mới hơn Cũ hơn