以前在BT5里面装了个Openoffice,但是最近发现Libreoffice蛮不错的,就想把Openoffice卸载了,结果用
apt-get autoremove openoffice* 老是出现一个找不到openoffice*软件包的错误,用新立德显示根本没装
openoffice,无奈用rpm -qa发现原来在这里
软件包太多就只好用脚本来卸载
卸载脚本如下:
root@bt~>vi uninstall.sh
for file in `rpm -qa|grep openoffice`
do
rpm -e --nodeps --force-debian $file
done
for file in `rpm -qa|grep ooobasis`
do
rpm -e --nodeps --force-debian $file
done
root@bt~>chmod +x uninstall.sh
root@bt~>./uninstall.sh
阅读(1086) | 评论(0) | 转发(0) |