Haguichi를 제거하려고 하면 다음과 같은 일이 발생합니다.
Removing haguichi (1.3.3~ubuntu16.04.1) ...
/var/lib/dpkg/info/haguichi.postrm: 3: /var/lib/dpkg/info/haguichi.postrm: glib-compile-schemas: not found
dpkg: error processing package haguichi (--remove): subprocess installed post-removal script returned error exit status 127
Errors were encountered while processing:
haguichi
E: Sub-process /usr/bin/dpkg returned an error code (1)
답변1
문제는 명령이 libglib2.0-bin
포함된 구성요소가 누락되었다는 것입니다 glib-compile-schemas
.
Haguichi가 손상되었거나 무언가를 설치하거나 제거하려고 할 때마다 제거하려고 시도하고 Haguichi의 제거 프로그램이 이에 의존하기 때문에 오류 apt-get
가 발생하기 때문입니다.dpkg
libglib2.0-bin
다음 솔루션은 저에게 효과적이었으며 귀하에게도 동일한 솔루션이 제공되기를 바랍니다.
나는 단순히 apt-get
설치 또는 제거 과정에서 haguichi를 무시하라고 말했습니다. 그 후 누락된 구성 요소를 설치한 다음 apt-get
haguichi를 제거하라는 지시를 받았습니다.
다음은 내가 사용한 명령입니다.
sudo -s
echo haguichi hold | dpkg --set-selections
apt-get install libglib2.0-bin
apt-get remove haguichi
exit
메모:명령을 실행하면 apt-get install libglib2.0-bin
끝에 haguichi 오류가 표시되지만 libglib에 관계없이 bin이 성공적으로 설치되었습니다.
나는 내가 찾은 명령을 사용하여 이 작업을 수행했습니다.여기 Unix 및 Linux SE에서.