mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-25 15:35:57 +03:00
[GH-ISSUE #548] webvirtcloud cannot install os to instance #327
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#327
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @xiedeacc on GitHub (Oct 9, 2022).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/548
I followed this post to install webvirtcloud https://techviewleo.com/install-webvirtcloud-kvm-web-dashboard-on-ubuntu/, but I cannot see virtual instance by console, I think webvirtcloud didn't boot from cd-rom at all, how to install a os to instance? or what's problem?
my host is ubuntu22.04 server version,
and I want instance install ubuntu22.0 server version
@xiedeacc commented on GitHub (Oct 9, 2022):
it seems webvirtcloud's bug, I manual installed create a os by use virt-install command
virt-install
--name tiger_1
--description "ubuntu 22.04"
--os-type=Linux
--os-variant=ubuntu22.04
--ram=4096
--vcpus=2
--disk path=/data1/virt/image/tiger_1.img,bus=virtio,size=60
--network bridge=br0
--graphics none
--console pty,target_type=serial
--location /data1/virt/iso/ubuntu-22.04.1-live-server-amd64.iso,kernel=casper/vmlinuz,initrd=casper/initrd
--extra-args 'console=ttyS0,115200n8'
@xiedeacc commented on GitHub (Oct 9, 2022):
@catborise can U cc this problem?
@catborise commented on GitHub (Oct 10, 2022):
i tested it again. it is working as expected. you missing some steps.


did you add iso pool?
do you see isos in iso pool:
did you mount iso to instance?

if instance was booted before, you must enable boot and set boot order like;

@xiedeacc commented on GitHub (Oct 10, 2022):
ok, I will check it