목차

특정 패키지 업데이트 막기

패키지 리스트 조회

 dpkg --get-selections 

업그레이드 hold하기 및 hold해지하기

  1. google-chrome-stable 패키지를 업그레이드를 막고 싶다면
     echo "google-chrome-stable hold" | sudo dpkg --set-selections 
  2. google-chrome-stable 패키지를 업그레이드를 하고 싶다면
     echo "google-chrome-stable install" | sudo dpkg --set-selections 

업그레이드 hold 모두 초기화

 dpkg --clear-selections 

출처

http://askubuntu.com/questions/344604/prevent-packages-from-being-removed-after-doing-dpkg-set-selections