csdn_spider/blog/ds19991999/原创-- 解决ubuntu系统的terminal无法...

27 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 原创
解决ubuntu系统的terminal无法获得锁
# 解决ubuntu系统的terminal无法获得锁
## 描述
我们在Ubuntu中运行命令有时会遇到卡顿的情况这时候我们不少伙伴等得不耐烦了九直接关掉类终端但是由于卡顿后台还在运行中这就导致我们再次运行命令行时出现以下提示
```
无法获得锁 /var/lib/dpkg/lock - open (11: 资源暂时不可用)
无法锁定管理目录(/var/lib/dpkg/),是否有其他进程正占用它?
```
这是由于我们在未完成下载的情况下将窗口关闭, 但是apt-get进程并没有结束所以它九一直占用dpkg锁之前的任务任务完成不了新任务又不能运行很是难受。
## 解决
输入 `ps aux` 列出正在运行的进程。找到相应的进程如含有apt-get的进程并杀掉再执行
```
sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock
```
如果进程中没有apt-get的进程则可直接执行以上两条语句然后进程锁占用的问题就解决了。