How to safely abort apt-get install? 安全終止apt-get!

方案一: java


When I encounter a failure with apt-get, I do the following (as root, i.e.sudobefore all commands): ubuntu

  1. Kill the process named apt-get: oracle

    killall -9 apt-get
  2. Reconfigure dpkg: app

    dpkg --configure -a
  3. Update apt-get: less

    apt-get update
  4. Update packages, including those improperly installed: frontend

    apt-get upgrade

This I learned from somewhere, but unfortunately I cannot remember exactly where. this


方案二:
spa

sudo dpkg -r <package name>

In my case I had problems with Java 8 on Ubuntu 12.04, so... code

sudo dpkg -r oracle-java8-installer


最終經過方案2搞定!


最佳答案(沒什麼做用):
ci

Killing processes

Generally speaking for killing a process, there's no safer way to kill a process than with a regular kill (SIGTERM). In case it's an interactive process it usually allows you to stop it even safer by sending a SIGINT signal, usually sent by pressingCtrl+C. This signal is being trapped by the process itself can listen to it - and usually stop gracefully. (thanks Eliah)

DPKG database

Regarding the package management is a sort of special case. The DPKG database that the APT commands use under water can always detect whether an operation hasn't finished. Every package has an actual state which is marked in as well as a current state, e.g. unpacked, configured, etc. By killing the APT frontend, the database will be in a broken, but in known state. The lock files will only be released once it's all back in a clean state - you should get this fixed until it allows new operations.

The way to fix is just firing a process to get all packages in the configured state. Practically speaking, if you've interrupted anapt-getoperation, you can just finish it later using

sudo dpkg --configure -a

It knows how to recover from the broken state to an all-configured state and in that sense just continue from where it was interrupted. The lock files are left there until you finished that, and that's for a reason - to prevent new operations with the DPKG database in an unclean state.

About SIGKILL (9)

Sending a SIGKILL (decimal representation 9) is very unsafe. This signal is not catched by the process, but the whole process will be cleaned up by the operating system (kernel) whether the process likes it or not. The state of the files on the file system can be left in a corrupt state. Never send these signals unless it's not listening to other more graceful signals anymore.

相關文章
相關標籤/搜索