উদাহরণস্বরূপ আইবুস-সানপাইনিন নিন, যা স্কিচ রিলিজে বিদ্যমান নেই। আমি পুরো সিস্টেমটি সিড শাখায় স্যুইচ করতে যাচ্ছি না, সুতরাং, আমি সিড সংগ্রহস্থল থেকে একক প্যাকেজটি ডাউনলোড করে এটি ইনস্টল করতে চাই:
# 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
পার্শ্ব নির্ভরতার কারণে ব্যর্থ হয়েছি ।