우분투의 적절한 문제

우분투의 적절한 문제

이 명령을 실행하면 아래 마지막 줄에 표시된 대로 패키지가 설치되지 않습니다.

apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  apache2-mpm-prefork libapache2-mod-php5
Suggested packages:
  php-pear
The following packages will be REMOVED:
  apache2-mpm-worker
The following NEW packages will be installed:
  apache2-mpm-prefork libapache2-mod-php5
0 upgraded, 2 newly installed, 1 to remove and 4 not upgraded.
1 not fully installed or removed.
Need to get 2,836kB/2,839kB of archives. 
After this operation, 7,746kB of additional disk space will be used.
Do you want to continue [Y/n]? Y 
Get:1 http://in.archive.ubuntu.com/ubuntu/ lucid-updates/main libapache2-mod-php5 5.3.2-1ubuntu4.10 [2,836kB]
Fetched 2,836kB in 3s (785kB/s)
Download complete and in download only mode

답변1

한때 다운로드 전용 모드로 뭔가를 다운로드한 적이 있는 것 같군요.

apt-get install packageName –download-only

실패했기 때문에 apt-get -f 설치로 인해 문제가 해결되었습니다. 따라서 일반적인 적절한 사용법을 시도해 보면 문제가 없을 것입니다.

관련 정보