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.
이 문제는 의존성 문제로 인해 xubuntu-desktop 패키지를 설치하지 못하는 현상입니다. 다음 명령어를 사용하여 xorg와 xubuntu-core 패키지를 동시에 설치해주셔야 문제가 해결됩니다.
[root@localhost]# apt install xubuntu-desktop xorg xubuntu-core
INSTALL_FAILED_INSUFFICIENT_STORAGE 문제 안드로이드 스튜디오에서 에뮬레이터를 실행하고 개발중인 애플리케이션을 실행하려 하면 로그 창에 아래와 같이 표시되면서…
리눅스 명령어 - kill, killall 리눅스 kill 명령어는 특정 프로세스를 종료해주는 명령어입니다. 백그라운드에서 실행되고 있는…
JavaScript는 역사가 긴 스크립트 프로그래밍 언어입니다. 세월이 흐르면서 많은 자바스크립트 표준이 만들어졌고, 현재는 많은 문법적…
NodeJS 테스트 프레임워크인 Mocha는 비동기 테스트를 지원합니다. 간혹 특정 테스트 스크립트를 작성하고 실행하면 아래와 같이…
언제부턴가 윈도우 11을 처음 설치할 때 마이크로소프트(Microsoft) 계정 로그인을 강제로 요구하게 되었습니다. 물론 마이크로소프트 계정이…