Mirando el archivo cmdline/apt-get.cc
del archivo tar de origen en http://packages.ubuntu.com/source/maverick/apt , puedo ver que --auto-remove
es un argumento que permite la APT::Get::AutomaticRemove
configuración.
Los comandos autoremove
y remove
ambos llaman a la función DoInstall
.
El comando "autoremove" APT::Get::AutomaticRemove
también se configura y, por lo tanto, hace lo mismo que --auto-remove
.
Mirando en la DoAutomaticRemove
función, es claramente visible que habilitar la APT::Get::AutomaticRemove
configuración ( --auto-remove
y autoremove
hace esto) hace que Apt recorra todos los paquetes instalados y marca los paquetes no utilizados para su eliminación.
De main()
:
CommandLine::Args Args[] = {
// ... stripped to save space
{0,"auto-remove","APT::Get::AutomaticRemove",0},
// ...
}
CommandLine::Dispatch Cmds[] = { // ...
{"remove",&DoInstall},
{"purge",&DoInstall},
{"autoremove",&DoInstall},
// ...
}
// ...
// Parse the command line and initialize the package library
CommandLine CmdL(Args,_config);
De DoInstall()
:
unsigned short fallback = MOD_INSTALL;
if (strcasecmp(CmdL.FileList[0],"remove") == 0)
fallback = MOD_REMOVE;
else if (strcasecmp(CmdL.FileList[0], "purge") == 0)
{
_config->Set("APT::Get::Purge", true);
fallback = MOD_REMOVE;
}
else if (strcasecmp(CmdL.FileList[0], "autoremove") == 0)
{
_config->Set("APT::Get::AutomaticRemove", "true");
fallback = MOD_REMOVE;
}
De la función DoAutomaticRemove
:
bool doAutoRemove = _config->FindB("APT::Get::AutomaticRemove", false);
// ...
// look over the cache to see what can be removed
for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); ! Pkg.end(); ++Pkg) {
if (doAutoRemove) {
if(Pkg.CurrentVer() != 0 &&
Pkg->CurrentState != pkgCache::State::ConfigFiles)
Cache->MarkDelete(Pkg, purgePkgs);
else
Cache->MarkKeep(Pkg, false, false);
}
}
No puedo hablar si está destinado o no, puede llenar un error / hacer una pregunta en launchpad.net .
Por el momento, no es posible excluir paquetes de la eliminación por apt-get autoremove
. Si desea conservar los paquetes, ejecute apt-get -s autoremove
, copie los paquetes de la lista y elimine los paquetes de la lista que desea conservar. Finalmente, elimine esos paquetes: sudo apt-get purge [packages-to-be-removed]
(la purga también elimina los archivos de configuración, si los hay)