Proxmox : TRIM sous LXC

De Linux Server Wiki
Aller à la navigation Aller à la recherche


Pour les VMs LXC privileged

TRIM fonctionne depuis la VM.

Pour les VMs LXC unprivileged

#! /bin/bash

sync

# trim lxc
for i in $(pct list | awk '/^[0-9]/ {print $1}'); do
  echo "trimming VM $i"
  fstrim -v /proc/$(lxc-info -n $i -p | awk '{print $2}')/root 2>&1
done | logger -t "fstrim[$$]"

# trim proxmox
(echo "trimming proxmox drive"
fstrim -av 2>&1 )| logger -t "fstrim[$$]"

Puis créez un crontab qui lance ce script toutes les semaines (par exemple)