我在Archlinux中安装了Pacman的文本直播。我现在想删除所有已安装的软件包,因为我发现它们太大了,而且一个名为“背页”的网站可以满足我的大部分需求。
但是在texlive中包含了太多的包,如下所示。
texinfo texlive-formatsextra texlive-latexextra texlive-publishers
texlive-bibtexextra texlive-games texlive-music texlive-science
texlive-bin texlive-genericextra texlive-pictures
texlive-core texlive-htmlxml texlive-plainextra
texlive-fontsextra texlive-humanities texlive-pstricks我尝试了sudo pacman -R texinfo,并更改了不同的参数,如-Rd、-Rsn。它们在依赖项检查中都失败了。
我尝试过sudo pacman -Rc texinfo,但它告诉我接下来的7个包将被删除,甚至包括gdb!
drkonqi-5.9.5.1-1 gdb-7.12.1-3 gdb-common-7.12.1-3 guile-2.2.1-1
guile2.0-2.0.14-1 make-4.2.1-2 texinfo-6.3-1那么,如何很好地删除文本家庭呢?
发布于 2017-10-08 21:28:58
我建议使用pacman -Rs package,从pacman -R --help输出:
-c, --cascade remove packages and all packages that depend on them
-s, --recursive remove unnecessary dependencies-c选项可能删除其他包所需的包,而-s只在系统上的其他包不依赖它们时才会删除它们。
发布于 2022-09-06 11:26:46
若要删除与相关文件有关的文本,请执行以下操作:
sudo pacman -Rcns texlive-bin
本页更多信息:https://linux-packages.com/manjaro-linux/package/texlive-bin
https://stackoverflow.com/questions/43929637
复制相似问题