apt-get 的多个同时实例

apt-get 的多个同时实例
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

这些例外意味着什么?当我尝试同时安装时出现这些错误?有什么办法可以避免它们吗?

答案1

您一次只能安装一个程序。这是因为包管理器会检查依赖关系。确保您也拥有 sudo 权限。但是,您可以在一个安装行上指定多个包。
sudo apt-get install -y emacs git 这将安装 emacs 和 git。一个接着一个,不是同时进行的。

也许有用的链接:https://superuser.com/questions/169759/installing-two-things-at-the-same-time-on-linux

相关内容