Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédente | |||
| software:applications:inventree:installation-debian12 [2026/03/11 13:47] – yoann | software:applications:inventree:installation-debian12 [2026/03/11 14:47] (Version actuelle) – yoann | ||
|---|---|---|---|
| Ligne 29: | Ligne 29: | ||
| chmod g+rw *.qcow2 | chmod g+rw *.qcow2 | ||
| </ | </ | ||
| + | |||
| + | Création de la VM via virt-install : | ||
| + | |||
| + | <code bash> | ||
| + | virt-install \ | ||
| + | --name inventree \ | ||
| + | --description "VM Debian 12 (Bookworm) minimaliste. Système minimal sans support vidéo et son." \ | ||
| + | --osinfo debian12 \ | ||
| + | --memory 1024 \ | ||
| + | --vcpus 2 \ | ||
| + | --boot uefi \ | ||
| + | --controller type=scsi, | ||
| + | --controller type=virtio-serial, | ||
| + | --rng / | ||
| + | --disk / | ||
| + | --disk / | ||
| + | --graphics none \ | ||
| + | --sound none \ | ||
| + | --controller type=usb, | ||
| + | --cdrom / | ||
| + | --network network=default, | ||
| + | </ | ||
| + | |||
| + | Installation classique minimaliste outils système et SSH uniquement. | ||
| + | |||
| + | |||
| + | |||