can not install software in linux error as dpkg was interrupted

后端 未结 5 806
感情败类
感情败类 2021-02-08 23:06

I was trying to install mono using following commands,

  1. sudo apt-get install mono-*

unfortunately, I closed the terminal while it instal

5条回答
  •  梦如初夏
    2021-02-08 23:52

    After searching a lot I got a satisfactory result:

    I found some places saying to run commands:

    sudo apt-get install -f
    sudo dpkg --configure -a 
    

    But none of those above worked.

    The solution that worked to me:

    sudo dpkg --configure --pending
    

    I hope this helps

提交回复
热议问题