Ubuntu 13.10의 업그레이드 문제를 해결하는 방법은 무엇입니까?

Ubuntu 13.10의 업그레이드 문제를 해결하는 방법은 무엇입니까?

나는 이 문제를 구글링했다. 이 문제에 대해 askubuntu 페이지를 검색했지만 적합한 솔루션을 찾을 수 없습니다.

업데이트를 사용하려고 할 때 다음 문제가 발생했습니다. 협회 그 전에는 업데이트 관리자를 사용해 업데이트도 시도했습니다. 그러나 코드를 입력하라는 제안과 함께 실패합니다. sudo apt-get -f install

그럼 내가 뭘 얻었는지 볼 수 있겠지

habi@habi-MS-7529:~$ sudo apt-get -f install
[sudo] password for habi: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up checkbox (0.15.6) ...
[Errno 5] Input/output error
dpkg: error processing checkbox (--configure):
 subprocess installed post-installation script returned error exit status 1
No apport report written because MaxReports is reached already
                                                              dpkg: dependency problems prevent configuration of checkbox-qt:
 checkbox-qt depends on checkbox (>= 0.15.6); however:
  Package checkbox is not configured yet.

dpkg: error processing checkbox-qt (--configure):
 dependency problems - leaving unconfigured
No apport report written because MaxReports is reached already
                                                              Errors were encountered while processing:
 checkbox
 checkbox-qt
E: Sub-process /usr/bin/dpkg returned an error code (1)
habi@habi-MS-7529:~$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up checkbox (0.15.6) ...
[Errno 5] Input/output error
dpkg: error processing checkbox (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of checkbox-qt:
 checkbox-qt depends on checkbox (>= 0.15.6); however:
  Package checkbox is not configured yet.

dpkg: error processing checkbox-qt (--configure):
 dependency problems - leaving unconfigured
No apport report written because MaxReports is reached already
                                                              No apport report written because MaxReports is reached already
                       Errors were encountered while processing:
 checkbox
 checkbox-qt
E: Sub-process /usr/bin/dpkg returned an error code (1)

*참고: 이는 sudo apt-get -f install을 입력하기 전에 본 것과 동일한 오류입니다.

내 컴퓨터 정보>>>

메모리 486.7MiB 프로세서 Intel Pentium(R) 4 CPU 3.00GHz x 2 그래픽 llvmpipe의 Gallium 0.4(LLVM 3.2, 128비트) 운영 체제 유형 32비트 디스크 18.5GB

답변1

업그레이드하기 전에 먼저 종속성 문제를 해결해야 합니다. 그다지 중요 checkbox하지 않은 패키지는 checkbox-qt삭제할 수 있습니다.

sudo dpkg -r checkbox checkbox-qt
sudo apt-get update
sudo apt-get -f install

이제 시스템을 업그레이드할 수 있습니다.

관련 정보