Debian 10にqemuをインストールできませんか?

Debian 10にqemuをインストールできませんか?

次のコマンドを使用しました。

sudo apt install libexpect-perl qemu-system-x86 qemu-utils

ただし、次のエラーが発生します。

Err:1 http://deb.debian.org/debian buster/main amd64 ovmf all 0~20181115.85588389-3+deb10u2
  404  Not Found [IP: 151.101.210.132 80]
E: Failed to fetch http://deb.debian.org/debian/pool/main/e/edk2/ovmf_0~20181115.85588389-3+deb10u2_all.deb  404  Not Found [IP: 151.101.210.132 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

実行しようとしましたが、apt-get update次のエラーが発生します。

E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission denied)
E: Unable to lock directory /var/lib/apt/lists/
W: Problem unlinking the file /var/cache/apt/pkgcache.bin - RemoveCaches (13: Permission denied)
W: Problem unlinking the file /var/cache/apt/srcpkgcache.bin - RemoveCaches (13: Permission denied)

ベストアンサー1

次のコマンドを使用します。

sudo rm /var/lib/apt/lists/lock
sudo rm -rf /var/lib/apt/lists/*
sudo apt update
sudo apt upgrade
sudo apt install qemu qemu-utils qemu-kvm virt-manager \
libvirt-daemon-system libvirt-clients bridge-utils

おすすめ記事