Please Enable JavaScript!
Gon[ Enable JavaScript ]

우분투에서 JDK 설치 과정중 unmet dependencies 에러

리눅스(Linux)
반응형

우분투에서 JDK 설치 과정중 unmet dependencies 에러

 

개발환경 : JDK 1.5, VMware 6.5.3, 우분투 9.10, window XP

 

(1) 에러

 

mainia@ubuntu:~$ sudo apt-get install alien

Reading package lists... Done

Building dependency tree      

Reading state information... Done

You might want to run `apt-get -f install' to correct these:

The following packages have unmet dependencies:

  alien: Depends: rpm (>= 2.4.4-2) but it is not going to be installed

  libc6-dev: Depends: libc6 (= 2.10.1-0ubuntu15) but 2.10.1-0ubuntu16 is to be installed

libc6-i686: PreDepends: libc6 (= 2.10.1-0ubuntu15) but 2.10.1-0ubuntu16 is to be installed

 

(2) /etc/apt/sources.list 저장소에 있는 파일을 다시 설치한다.

 

아래와 같이 sudo apt-get -f install 해준다.

mainia@ubuntu:~$ sudo apt-get -f install

ldconfig deferred processing now taking place

Errors were encountered while processing:

 sun-j2sdk1.5

 

(3) 설치하는 과정에서 sun-j2sdk1.5 에러나서 삭제해 준다.

 

mainia@ubuntu:~$ sudo apt-get purge sun-j2sdk1.5 삭제해 주었다.

 

0 upgraded, 0 newly installed, 1 to remove and 237 not upgraded.

1 not fully installed or removed.

After this operation, 146MB disk space will be freed.

Do you want to continue [Y/n]? y

(Reading database ... 121387 files and directories currently installed.)

Removing sun-j2sdk1.5 ...

 

(4) 저장소 파일을 업데이트 한다

 

mainia@ubuntu:~$ sudo apt-get update

 

(5) alien 다시 설치명령을 내리니 정상적으로 실행되었다

 

mainia@ubuntu:~$ sudo apt-get install alien

Reading package lists... Done

Building dependency tree

...

 

apt-get 명령어팁

 

sudo apt-get update : 패키지 Update

sudo apt-get upgrade : 패키지 Upgrade.

sudo apt-get dist-upgrade : 의존성검사하며 설치하기

sudo apt-get install 패키지이름 : 패키지 설치

sudo apt-get --reinstall install 패키지이름 : 패키지 재설치

sudo apt-get remove : 설정파일은 지우지 않음

sudo apt-get --purge remove 패키지이름 :설정파일까지 모두 지움

sudo apt-get source 패키지이름 : 패키지 소스코드 다운로드

sudo apt-get build-dep 패키지이름 : 위에서 받은 소스코드를 의존성있게 빌드

sudo apt-cache search 패키지이름 : 패키지 검색

sudo apt-cache show 패키지이름 : 패키지 정보 보기


반응형
Posted by 녹두장군1
,