我试图安装 Nvidia CUDA,但在此过程中却没有gce-compute-image-packages
成功。我尝试了以下方法:installed
post install configured
sudo dpkg --configure -a # this only get stuck in the processing stage of gce...
sudo apt-get install --fix-broken # tells me to run above.
sudo apt-get -f install # gives above answer.
sudo fuser -vki /var/lib/dpkg/lock # doesn't solve anything above problems reoccur.
删除锁文件只是重新启动上述过程。
编辑/var/lib/dpkg/status
并删除后gce-compute-image-packages
,此部分在我运行后再次出现sudo dpkg --configure -a
sudo dpkg --purge --force-all gce-compute-image-packages
此命令卡在预删除脚本中。
我不知道该怎么办!有人能帮忙吗?
答案1
mv /var/lib/dpkg/info/gce-compute-image-packages.* /tmp/
sudo dpkg --configure -a
sudo apt-get -f install
到目前为止,这看起来很有效。