我需要在 KVM 中安装最新的 LTS Ubuntu (22.04)。几年前,我以这种方式安装了 18.04 并且它有效:
sudo virt-install --name new_server --ram=2048 --vcpus=1 --cpu host --hvm --disk path=/var/lib/libvirt/images/new_server,size=20 --location http://gb.archive.ubuntu.com/ubuntu/dists/bionic/main/installer-amd64/ --graphics none --console pty,target_type=serial --extra-args 'console=ttyS0,115200n8 serial' --os-type linux --os-variant ubuntu18.04 --network network:default --hvm --force --debug
但现在我得到了这个错误:
ValueError: Could not find an installable distribution at 'http://gb.archive.ubuntu.com/ubuntu/dists/jammy/main/installer-amd64/'
如何以控制台模式在 KVM 上安装 Ubuntu 22.04?