我在 HP probook 上使用 UBUNTU 16.04 LTS。我最近安装了 QEMU,现在想卸载它。但是当我使用以下命令时
sudo apt-get purge --auto-remove qemu-system-x86_64
我得到以下结果
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package qemu-system-x86_64
另外,当我运行命令时
qemu-system-x86_64
QEMU 终端打开并开始寻找启动设备。
是什么原因造成的?我怎样才能彻底删除 QEMU?
编辑
当我运行命令时
dpkg -l | grep qemu
我收到以下回复
ii ipxe-qemu 1.0.0+git-20150424.a25a16d-1ubuntu1.2 all PXE boot firmware - ROM images for qemu
ii qemu-block-extra:amd64 1:2.5+dfsg-5ubuntu10.16 amd64 extra block backend modules for qemu-system and qemu-utils
ii qemu-system-common 1:2.5+dfsg-5ubuntu10.16 amd64 QEMU full system emulation binaries (common files)
ii qemu-system-x86 1:2.5+dfsg-5ubuntu10.16 amd64 QEMU full system emulation binaries (x86)
ii qemu-utils 1:2.5+dfsg-5ubuntu10.16 amd64 QEMU utilities
答案1
这个问题已经解决了,首先使用以下命令检查包的确切名称
dpkg -l | grep qemu
然后运行
sudo apt-get purge --auto-remove qemu-system-x86
感谢评论