[리눅스] The following packages have been kept back 원인과 해결 방법
우분투에서 sudo apt-get upgrade 실행 시 다음과 같은 메시지가 나오면서 업그레이드가 안 되는 경우가 종종 있습니다.
$ sudo apt-get upgrade
The following packages have been kept back:
dkms ubuntu-advantage-tools
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
$
이는 기존에 설치되어 있던 프로그램 중에서 의존성이 변경된 경우가 있어서 업그레이드를 위해서는 기존에 컴퓨터에 설치되어 있지 않던 프로그램을 새로 설치해야 할 경우에 나타나는 경고 메시지입니다. 위 예제의 경우 dkms와 ubuntu-advantage-tools를 업그레이드 하기 위해서는 기존에 없던 프로그램들을 새로 설치해야 하기 때문에 경고만 해 주고 업그레이드를 실행하지 않은 것입니다.
이런 경우 새롭게 필요한 프로그램들을 추가로 설치하면서 apt-get upgrade를 실행하려면 다음과 같이 --with-new-pkgs 옵션을 주면 됩니다. 말 그대로 '새로운 패키지와 함께 (with new packages)' 업그레이드를 진행하라는 옵션입니다. 해당 옵션을 주었더니 새롭게 dctrl-tools와 ubuntu-pro-client-l10n 두 종류의 프로그램을 설치하면서 dkms와 ubuntu-advantage-tools를 업그레이드하는 것을 볼 수 있습니다.
$ sudo apt-get --with-new-pkgs upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following NEW packages will be installed:
dctrl-tools ubuntu-pro-client-l10n
The following packages will be upgraded:
dkms ubuntu-advantage-tools
2 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 349 kB of archives.
After this operation, 590 kB of additional disk space will be used.
Do you want to continue? [Y/n]
$
한편 이렇게까지 해도 안 되는 경우가 있다면 다음과 같이 aptitude를 설치하신 후에 aptitude를 통해 업그레이드를 진행하는 방법도 있습니다. 하지만 대부분 여기까지 오지 않아도 위의 방법으로 해결이 될 것입니다.
$ sudo apt-get install aptitude -y
$ sudo aptitude safe-upgrade
'개발, 전산, AI, IT' 카테고리의 다른 글
[맥] 터미널에서 Home, End 키 기능 수행하기 (0) | 2024.03.18 |
---|---|
f3을 사용하여 SD카드 및 USB 불량 여부 확인하기 (0) | 2024.02.02 |
[이클립스] C/C++ Build Settings에 Tool Settings가 없을 경우 해결법 (0) | 2023.12.14 |
[파이썬] module 'numpy' has no attribute (0) | 2023.11.17 |
[파이썬] super().__init__() 과 super(__class__, self).__init__() 차이 (0) | 2022.08.29 |