문제해결

[Ubuntu] apt xubuntu-desktop 설치 시 의존성 문제 해결 방법

xubuntu-desktop을 설치하기 위해 apt 또는 apt-get 명령어를 사용하여 다음과 같이 명령을 입력했습니다.

[root@localhost]# apt install xubuntu-desktop

그런데 아래 에러 메시지가 나타나면서 설치가 진행되지 않는 문제가 생깁니다.

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:
 xubuntu-desktop : Depends: xorg but it is not going to be installed
                   Depends: xubuntu-core but it is not going to be installed
                   Recommends: xserver-xorg-input-synaptics
E: Unable to correct problems, you have held broken packages.

 

apt xubuntu-desktop 의존성 문제 해결하기

이 문제는 의존성 문제로 인해 xubuntu-desktop 패키지를 설치하지 못하는 현상입니다. 다음 명령어를 사용하여 xorgxubuntu-core 패키지를 동시에 설치해주셔야 문제가 해결됩니다.

[root@localhost]# apt install xubuntu-desktop xorg xubuntu-core

 

JooTC

안녕하세요. 테크놀로지에 관심이 많은 블로거입니다.

Recent Posts

Zalgo 텍스트와 이를 방지하는 방법

인터넷 커뮤니티 사이트에서 게시글이나 댓글에 간혹 장난을 목적으로 작성된 특이한 글자를 볼 수 있습니다. 위…

4주 ago

리눅스 kill, killall 명령어 – 특정 프로세스 종료하기

리눅스 명령어 - kill, killall 리눅스 kill 명령어는 특정 프로세스를 종료해주는 명령어입니다. 백그라운드에서 실행되고 있는…

1개월 ago

JavaScript typeof null이 ‘object’인 이유

JavaScript는 역사가 긴 스크립트 프로그래밍 언어입니다. 세월이 흐르면서 많은 자바스크립트 표준이 만들어졌고, 현재는 많은 문법적…

1개월 ago

Mocha Error: Resolution method is overspecified. 해결 방법

NodeJS 테스트 프레임워크인 Mocha는 비동기 테스트를 지원합니다. 간혹 특정 테스트 스크립트를 작성하고 실행하면 아래와 같이…

1개월 ago

윈도우 11 설치 시 Microsoft 계정 로그인 없이 로컬 계정 만들기

언제부턴가 윈도우 11을 처음 설치할 때 마이크로소프트(Microsoft) 계정 로그인을 강제로 요구하게 되었습니다. 물론 마이크로소프트 계정이…

6개월 ago

에어팟 프로 2 케이스 스피커 소리를 완전히 끄는 방법

애플 에어팟 프로 2 (AirPods Pro 2) 케이스에는 스피커가 내장되어 있습니다. 그런데 간혹 아무 것도…

9개월 ago