gokulraj@optimus-prime:~$ sudo apt install default-jdk
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
出現了錯誤。
答案1
有两种可能性;
您可能当前正在运行另一个进程
apt
,如果是这种情况,您可以等待它完成,另一个选择是简单地终止该进程。先前的进程(例如,以前执行 apt 时)没有删除锁定文件,则该文件将存在于 中
/var/lib/dpkg/lock-frontend
,然后如果根本没有进程使用它,则必须使用 手动将其删除sudo rm /var/lib/dpkg/lock-frontend
,然后使用 强制重新配置软件包sudo dpkg --configure -a