我正在尝试在 Ubuntu 软件中心卸载 libreoffice。但它说它也会删除 Impress。当我确认后,它开始下载大约 27.9 MB 的数据。为什么会这样?
更新:
尝试使用执行此操作apt-get
,我得到以下结果:
me@my-computer:~$ sudo apt-get remove libreoffice-draw
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
libreoffice-base-core libreoffice-calc libreoffice-common libreoffice-core
libreoffice-gnome libreoffice-gtk libreoffice-writer python3-uno
Suggested packages:
libreoffice-base libopencl1 libreoffice-style-crystal
libreoffice-style-hicontrast libreoffice-style-oxygen libreoffice-style-sifr
libreoffice-style-tango libreoffice-evolution libreoffice-gcj
libreoffice-java-common default-jre gcj-jre openjdk-7-jre openjdk-6-jre
sun-java5-jre sun-java6-jre java5-runtime jre
Recommended packages:
libreoffice-math
The following packages will be REMOVED:
libreoffice-draw libreoffice-impress libreoffice-ogltrans
libreoffice-presentation-minimizer
The following packages will be upgraded:
libreoffice-base-core libreoffice-calc libreoffice-common libreoffice-core
libreoffice-gnome libreoffice-gtk libreoffice-writer python3-uno
8 upgraded, 0 newly installed, 4 to remove and 33 not upgraded.
Need to get 27.9 MB/64.3 MB of archives.
After this operation, 15.6 MB disk space will be freed.
答案1
apt-get
想要在删除的同时升级一些软件包libreoffice-draw
。当然这需要下载新的软件包:
8 升级,0 个新安装,4 个要删除,33 个未升级。
需要获取 27.9 MB/64.3 MB 的档案。
同时,该操作总体上释放了一些空间:
这次手术后,将释放 15.6 MB 磁盘空间。
如果您apt-get upgrade
先运行,随后再运行apt-get remove libreoffice-draw
,则不再需要下载任何内容。或者,您可以使用标志--no-upgrade
来抑制与删除一起进行的软件包升级。
答案2
我认为是这样的。
您正在卸载 LibreOffice,并尝试升级完全不相关的软件包。您的命令输出显示要升级 8 个应用程序,所以我很确定 30MB 的下载量就是从那里来的。