짜기 릴리스에는 존재하지 않는 ibus-sunpinyin을 예로 들어 보겠습니다. 전체 시스템을 sid 브랜치로 전환하지 않을 것이므로 sid 저장소에서 단일 패키지를 다운로드하여 다음과 같이 설치하고 싶습니다.
# Add the sid repository
sudo mv /tmp/sid.list /etc/apt/sources.list.d/
# Error: can't install because version conflicts of libc6:
# sudo apt-get install ibus-sunpinyin
# This is ok but it will upgrade a lot of mess from sid branch:
# sudo apt-get upgrade ibus-sunpinyin
# So, instead of apt-get install/upgrade, let me download & install the single package.
# However, this errored again because of version conflicts of libc6:
# apt-get install --download-only ibus-sunpinyin
## THEN, WHAT CAN I DO? ##
# Remove the sid repository.
sudo mv /etc/apt/sources.list.d/sid.list /tmp
# Install the single package.
sudo dpkg -i ./ibus-sunpinyin-x.x.x.deb
apt-get download ...
apt-get 0.8.11+의 경우 또는aptitude download ...
. 그러나sudo dpkg -i ibus-sunpinyin-x.x.x.deb
sid 의존성으로 인해 실패했습니다 .