📅  最后修改于: 2023-12-03 15:05:23.944000             🧑  作者: Mango
在Linux系统中,sudo apt-get --purge remove
是卸载软件包的命令,一般用于彻底卸载软件包及其依赖关系。该命令的使用需要管理员权限(sudo)。
sudo apt-get --purge remove
的使用场景通常是想要完全卸载某个软件,包括其配置文件和依赖项。该命令会清除软件包的相关文件和配置,并且会删除依赖于这个软件包的其他软件包(如果没有其他被依赖)。
该命令的基本语法为:
sudo apt-get --purge remove [软件包名称]
其中,--purge
表示要彻底卸载软件包,包括其配置文件和依赖关系。remove
表示要卸载指定的软件包。
比如我们想要卸载 Bash shell,可以使用以下命令:
sudo apt-get --purge remove bash
执行此命令后,系统将会卸载 Bash shell及其所有依赖的软件包,并删除 Bash shell的配置文件。如果有其他软件依赖于 Bash shell,则这些软件将停止工作。
返回结果为command-line的输出信息。可根据需要自行截取生成markdown代码片段,示例:
$ sudo apt-get --purge remove bash
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libtinfo5
The following packages will be REMOVED:
bash*
0 upgraded, 0 newly installed, 1 to remove and 17 not upgraded.
After this operation, 8,461 kB disk space will be freed.
Do you want to continue [Y/n]? y
(Reading database ... 213853 files and directories currently installed.)
Removing bash ...
Purging configuration files for bash ...
dpkg: warning: while removing bash, directory '/usr/local/bin' not empty so not removed
Processing triggers for man-db ...
Processing triggers for install-info ...
Processing triggers for shared-mime-info ...
Processing triggers for hicolor-icon-theme ...
Cleaning up ...