반응형
요즘은 녹을수도 있다는 생각이 들만큼 더워요...
그래도 사무실에 있으면 시원하니 열일하고 있습니당
저희 웹서버에서 PHP를 사용하고 있는데
GD 라이브러리를 설치하기 위해서
1 | apt-get install php-gd | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 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: linux-image-extra-4.4.0-130-generic : Depends: linux-image-4.4.0-130-generic but it is not going to be installed linux-image-generic : Depends: linux-image-4.4.0-130-generic but it is not going to be installed Recommends: thermald but it is not going to be installed php-gd : Depends: php7.2-gd but it is not going to be installed E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution). | cs |
이렇게 했더니 의존성 문제로 이런 에러가 발생했습니다.
그래서 또 구글링을 열심히 열심히 ㅜㅜㅜ
그런데도 진짜 하나도 모르겠어요...
1 2 | apt-get -f install | cs |
이렇게도 해보고..
linux-image-extra 패키지하고 linux-image-generic 패키지를 삭제하려고 했는데 삭제도 안됩니다..
결국은 찾은게 boot 용량이 100% 라서 그런거래요.
1 2 | dpkg --get-selections|grep 'linux-image*'|awk '{print $1}'|egrep -v "linux-image-$(uname -r)|linux-image-generic" |while read n;do dpkg --purge --ignore-depends=$n $n;done | cs |
그래서 지난 패키지를 위 스크립트로 삭제해주었더니 아주 잘됩니다.
이걸로 3일 삽질을 했네요 ...
반응형
'LINUX' 카테고리의 다른 글
Nginx Cors options 처리 (0) | 2022.11.09 |
---|---|
SSH KEY 생성 및 사용법 (0) | 2018.05.13 |
phpstorm svn 설정 및 삽질 리뷰 (0) | 2018.01.05 |
AWS SCP 파일 전송하기 (0) | 2017.06.05 |
아파치 웹 최상위 경로 찾기 (0) | 2016.07.05 |