search for: kvm68

Displaying 2 results from an estimated 2 matches for "kvm68".

Did you mean: kvm64
2020 Sep 09
0
Re: Isolated bridge does not bridge
...s from the bridge > what connects them to internet, and added them to another isolated > bridge what's not connected to internet. Problem is that I cannot reach > the other host in the isolated network. > > Something like this: > > virsh shutdown kvm66 > virsh shutdown kvm68 > > brctl delif br0 vnet10 vnet6 # the interfaces of kvm66 and kvm68 > brctl addbr br1 > brctl addif br1 vnet10 vnet6 The delif and addif commands won't do anything if the guests are not running (you've done "virsh shutdown", but that will either take some time, o...
2020 Apr 27
2
Re: Migrate to a bigger disk possible?
...n what I did now. > > > - offline: > > 'virt-resize' tool from the libguestfs package can be used to do it > > offline and it should be able to resize your partitions and > > filesystem as well. > > What I did is this: > > virsh shutdown kvm68 > qemu-img resize /data/kvm68.qcow2 +800G > virsh start kvm68 > ssh root@kvm68.vandervlis.nl > lsblk > pvs > apt install cloud-guest-utils > growpart /dev/vda 1 > pvresize /dev/vda1 > lsblk > lvextend -rL +100G /dev/vg0/root > > > 2) QCOW2 is to...