Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[Software] half-configured and half-installed

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
StevenFriedrich
Posts: 44
Joined: 2023-09-20 02:57
Has thanked: 5 times
Been thanked: 3 times

[Software] half-configured and half-installed

#1 Post by StevenFriedrich »

I noticed many messages in /var/log/dpkg.log stating "half-configured" and "half-installed" for many components.
This is a fresh install of: debian-live-12.5.0-amd64-kde.iso

User avatar
fabien
Forum Helper
Forum Helper
Posts: 737
Joined: 2019-12-03 12:51
Location: Anarres (Toulouse, France actually)
Has thanked: 67 times
Been thanked: 173 times

Re: [Software] half-configured and half-installed

#2 Post by fabien »

These are normal logs, the progress of dpkg action:

Code: Select all

2024-04-08 20:51:14 startup archives unpack
2024-04-08 20:51:16 upgrade bsdutils:amd64 1:2.38.1-5+b1 1:2.38.1-5+deb12u1
2024-04-08 20:51:16 status half-configured bsdutils:amd64 1:2.38.1-5+b1
2024-04-08 20:51:17 status unpacked bsdutils:amd64 1:2.38.1-5+b1
2024-04-08 20:51:17 status half-installed bsdutils:amd64 1:2.38.1-5+b1
2024-04-08 20:51:17 status triggers-pending man-db:amd64 2.11.2-2
2024-04-08 20:51:17 status unpacked bsdutils:amd64 1:2.38.1-5+deb12u1
2024-04-08 20:51:17 startup packages configure
2024-04-08 20:51:17 configure bsdutils:amd64 1:2.38.1-5+deb12u1 <none>
2024-04-08 20:51:17 status unpacked bsdutils:amd64 1:2.38.1-5+deb12u1
2024-04-08 20:51:17 status half-configured bsdutils:amd64 1:2.38.1-5+deb12u1
2024-04-08 20:51:17 status installed bsdutils:amd64 1:2.38.1-5+deb12u1                 ### <-- Status: install ok installed
If the process ends with "status installed", it's all good. Only if it ends at a previous step is there a problem. These steps are described in the dpkg manual:
man 1 dpkg wrote: half-installed
The installation of the package has been started, but not completed for some reason.

unpacked
The package is unpacked, but not configured.

half-configured
The package is unpacked and configuration has been started, but not yet completed for some reason.

triggers-awaited
The package awaits trigger processing by another package.

triggers-pending
The package has been triggered.

installed
The package is correctly unpacked and configured.
You can verify that all packages are installed correctly in at least two ways:

Code: Select all

#> dpkg --audit
man 1 dpkg wrote: -C, --audit [package-name...]
Performs database sanity and consistency checks for package-name or all packages if omitted (per package checks since dpkg 1.17.10). For example, searches for packages that have been
installed only partially on your system or that have missing, wrong or obsolete control data or files. dpkg will suggest what to do with them to get them fixed.

Code: Select all

$> dpkg -l | grep -v "^ii "
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                                 Version                              Architecture Description
+++-====================================-====================================-============-================================================================================
In my case everything is fine.
ImageShare your Debian SCRIPTS
There will be neither barrier nor walls, neither official nor guard, there will be no more desert and the entire world will become a garden. — Anacharsis Cloots

Post Reply