Baustelle1wlanfr3ak: Unterschied zwischen den Versionen
(Entwurf sehr roh) |
K (roh2) |
||
Zeile 1: | Zeile 1: | ||
Proxmox als Offloader nutzen | Proxmox als Offloader nutzen | ||
− | + | Download des Freifunk Images auf den Proxmox Host (Link muss natürlich die aktuelle Version der Downloadseite sein...) | |
− | wget " | + | <code> |
+ | wget "http://freifunk.in-kiel.de/firmware/stable/sysupgrade/gluon-ffki-2018.2.2-747-x86-generic-sysupgrade.img.gz" | ||
+ | </code> | ||
− | + | Dann das Image entpacken | |
− | + | <code> | |
+ | gzip -d gluon-ffki-2018.2.2-747-x86-generic-sysupgrade.img.gz | ||
+ | </code> | ||
− | + | Das Image wird nun zu einer qcow2 umformatiert: | |
− | + | <code> | |
+ | qemu-img convert -f raw gluon-ffki-2018.2.2-747-x86-generic-sysupgrade.img -O qcow2 gluon-ffki.qcow2 | ||
+ | </code> | ||
− | + | Nun in Proxmox die VM anlegen, hierbei sind einige Einstellungen zu beachten: | |
− | + | Netzwerkkarten = E1000 | |
+ | Festplattentyp = IDE | ||
+ | FestplattenController = Standard | ||
+ | Hier mal ein paar Beispielbilder: | ||
+ | |||
+ | |||
+ | |||
+ | Datei in den richtigen Ordner kopieren (102 = die ID der gewünschten VM, bitte richtig ersetzten) | ||
+ | |||
+ | <code> | ||
+ | cp gluon-ffki.qcow2 /var/lib/vz/images/102/vm-102-disk-1.qcow2 | ||
+ | </code> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <code> | ||
mv gluon-ffki-2018.2.2-747-x86-64-sysupgrade.qcow2 gluonffki.qcow2 | mv gluon-ffki-2018.2.2-747-x86-64-sysupgrade.qcow2 gluonffki.qcow2 | ||
+ | </code> | ||
+ | |||
+ | <code> | ||
+ | mkdir /var/lib/vz/images/102 | ||
+ | </code> | ||
+ | |||
+ | <code> | ||
+ | cp gluon-ffki.qcow2 /var/lib/vz/images/102/gluon-ffki.qcow2 | ||
+ | </code> | ||
+ | |||
+ | <code> | ||
+ | nano /etc/pve/qemu-server/102.conf | ||
+ | </code> | ||
+ | |||
+ | <code> | ||
+ | unused0: local:102/gluon-ffki.qcow2 | ||
+ | </code> | ||
+ | |||
+ | Quellen: | ||
− | + | https://forum.ffrn.de/t/offloader-in-vmware-qemu-virtualbox/1535/11 | |
− | + | https://dae.me/blog/2340/how-to-add-an-existing-virtual-disk-to-proxmox/ | |
− | |||
− |
Version vom 30. Oktober 2019, 09:14 Uhr
Proxmox als Offloader nutzen
Download des Freifunk Images auf den Proxmox Host (Link muss natürlich die aktuelle Version der Downloadseite sein...)
Dann das Image entpacken
gzip -d gluon-ffki-2018.2.2-747-x86-generic-sysupgrade.img.gz
Das Image wird nun zu einer qcow2 umformatiert:
qemu-img convert -f raw gluon-ffki-2018.2.2-747-x86-generic-sysupgrade.img -O qcow2 gluon-ffki.qcow2
Nun in Proxmox die VM anlegen, hierbei sind einige Einstellungen zu beachten:
Netzwerkkarten = E1000 Festplattentyp = IDE FestplattenController = Standard
Hier mal ein paar Beispielbilder:
Datei in den richtigen Ordner kopieren (102 = die ID der gewünschten VM, bitte richtig ersetzten)
cp gluon-ffki.qcow2 /var/lib/vz/images/102/vm-102-disk-1.qcow2
mv gluon-ffki-2018.2.2-747-x86-64-sysupgrade.qcow2 gluonffki.qcow2
mkdir /var/lib/vz/images/102
cp gluon-ffki.qcow2 /var/lib/vz/images/102/gluon-ffki.qcow2
nano /etc/pve/qemu-server/102.conf
unused0: local:102/gluon-ffki.qcow2
Quellen:
https://forum.ffrn.de/t/offloader-in-vmware-qemu-virtualbox/1535/11 https://dae.me/blog/2340/how-to-add-an-existing-virtual-disk-to-proxmox/