Test NVMe

This commit is contained in:
Sergey Mazein
2025-11-11 11:40:32 +03:00
parent 0fe993218a
commit aa6cc9e98e
3 changed files with 281 additions and 2 deletions
+3 -2
View File
@@ -12,7 +12,7 @@
```bash
qm list
pct list
systemctl stop pvedaemon pve-cluster pve-storage pveproxy
systemctl stop pvedaemon pve-cluster pveproxy
```
---
@@ -45,13 +45,14 @@ xfs_info /dev/md3 | egrep 'sunit|swidth|sectsz'
mkdir -p /var/lib/vz
UUID=$(blkid -s UUID -o value /dev/md3)
echo "UUID=$UUID /var/lib/vz xfs defaults,noatime,inode64,logbufs=8,logbsize=256k 0 2" >> /etc/fstab
nano /etc/fstab
mount -a
```
### 6. Перезапусти службы Proxmox
```bash
systemctl start pve-cluster pvedaemon pve-storage pveproxy
systemctl start pve-cluster pvedaemon pveproxy
```
---