Temp

[Ubuntu 18.04] depends on libc6 (>= 2.34), libssl3 (>= 3.0.0)

ju_young 2022. 9. 13. 15:23
728x90

linux kernel 설치시 다음과 같은 에러가 뜰 수 있다.

dpkg: dependency problems prevent configuration of linux-headers-5.19.0-051900-generic:
 linux-headers-5.19.0-051900-generic depends on libc6 (>= 2.34); however:
  Version of libc6:amd64 on system is 2.27-3ubuntu1.6.
 linux-headers-5.19.0-051900-generic depends on libssl3 (>= 3.0.0); however:
  Package libssl3:amd64 is not installed.

다음 순서로 터미널에 치면 해결할 수 있다.

sudo add-apt-repository "deb http://ca.archive.ubuntu.com/ubuntu jammy main"
sudo apt --fix-broken install
sudo dpkg -i *.deb

 

중간 중간에 나오는 메시지 창은 확인하고 맞게 설정해주면 된다. 만약 경고나 에러가 뜬다면 그냥 넘어가도 된다.

728x90