apt는 패키지 순서에 관계없이 동일한 방식으로 실행되어야 합니까?

apt는 패키지 순서에 관계없이 동일한 방식으로 실행되어야 합니까?

IMHO, 패키지 순서는 apt와 관련되어서는 안됩니다.
항상 결정적이어야 합니다.

하지만 일반 debian12 도커 이미지에서 세 패키지에 차이점이 있다는 것을 발견했습니다.

docker run --rm -ti debian:12.1
apt update
apt install lxde-core xterm chromium # Fails
apt install lxde-core chromium xterm # works

xterm 및 chromium 패키지의 순서에만 의존하지만 이 세 패키지 중 하나를 제거하면 순서에 관계없이 항상 작동합니다.

실패하면 오류는 다음과 같습니다.

Reading package lists... Done  
Building dependency tree... Done  
Reading state information... Done  
Some packages could not be installed. This may mean that you have  
requested an impossible situation or if you are using the unstable  
distribution that some required packages have not yet been created  
or been moved out of Incoming.  
The following information may help to resolve the situation:  
  
The following packages have unmet dependencies:  
 luit : Breaks: x11-utils (< 7.7+6) but 7.7+5 is to be installed  
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.  

패키지를 설치해도 apt install lxde-core chromium xterm # works전혀 luit설치되지 않습니다 .
dpkg -l luit x11-utils

un  luit           <none>       <none>       (no description available)  
ii  x11-utils      7.7+5        amd64        X11 utilities  

luit는 xterm 패키지에서만 권장됩니다.

이것은 적절한 버그입니까, 아니면 패키지의 종속성 중 하나입니까?
검출되어야 한다결점패키지의 종속성?

관련 정보