日記/2013-02-12

2013-02-13 (水) 12:55:46

upgradeをホールドする

ver4.7.0ではORCA独自に改変されているプログラムがある。
本家のプログラムがupgradeされるとトラブルになる可能性がある。
とりあえずホールドしておこう。

# echo libgtk2.0-0 hold | dpkg --set-selections
# echo libgtk2.0-common hold | dpkg --set-selections
# echo libgtk2.0-bin hold | dpkg --set-selections
# echo libgail-common hold | dpkg --set-selections
# echo libgail18 hold | dpkg --set-selections
# echo ibus hold | dpkg --set-selections
# echo ibus-gtk hold | dpkg --set-selections
# echo libibus-1.0-0 hold | dpkg --set-selections
# echo python-ibus hold | dpkg --set-selections

次のようにするとホールドされたものがわかる。

# dpkg --get-selections | grep hold

ホールドを解除するには

# echo ibus install | dpkg --set-selections

等々。

http://www.unix-power.net/linux/apt.html

日記