Virt-manager: Difference between revisions
From DWIKI
No edit summary |
m (→FAQ) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 9: | Line 9: | ||
#/bin/sh | #/bin/sh | ||
exec virt-manager | exec virt-manager | ||
remember to make it executable: | |||
chmod +x ~/.vnc/xstartup | |||
then start vncserver on a higher port, to avoid conflicts with possible VMs serving vnc: | then start vncserver on a higher port, to avoid conflicts with possible VMs serving vnc: | ||
Line 20: | Line 23: | ||
Then from your desktop connect to it: | Then from your desktop connect to it: | ||
vncviewer yourhost 5960 & | vncviewer yourhost 5960 & | ||
=FAQ= | =FAQ= | ||
==Unable to complete install: POST operation failed== | ==Unable to complete install: POST operation failed== | ||
you're using debian and it's trying to use wrong path again | |||
==grow disk== | |||
*https://computingforgeeks.com/how-to-extend-increase-kvm-virtual-machine-disk-size/ |
Latest revision as of 12:00, 9 April 2020
Links
On a headless system
As root, create a the file ~/.vnc/xstartup containing:
#/bin/sh exec virt-manager
remember to make it executable:
chmod +x ~/.vnc/xstartup
then start vncserver on a higher port, to avoid conflicts with possible VMs serving vnc:
vncserver :60 &
Make sure /etc/xen/xend-config.sxp has line:
(xend-unix-server yes)
or add this and restart xend
Then from your desktop connect to it:
vncviewer yourhost 5960 &
FAQ
Unable to complete install: POST operation failed
you're using debian and it's trying to use wrong path again