posso remover o debian apt cache dir

2

Eu estou tentando liberar algum espaço no meu servidor, e notei que

/var/cache/apt has 322M

assumindo que é apenas um cache, em minha mente, deve ser ok para apagar esses arquivos e se precisar novamente, então ele irá apenas baixar os arquivos novamente

essa é a suposição correta a ser feita?

serve: debian 4

    
por bumperbox 05.09.2009 / 23:30

2 respostas

9

O Apt pode fazer isso com as opções clean e autoclean.

   clean
       clean clears out the local repository of retrieved package 
       files. It removes everything but the lock file from 
       /var/cache/apt/archives/ and /var/cache/apt/archives/partial/ ....

   autoclean
       Like clean, autoclean clears out the local repository of retrieved 
       package files. The difference is that it only removes package files 
       that can no longer be downloaded, and are largely useless....
    
por 05.09.2009 / 23:33
2

Você pode excluir qualquer arquivo que quiser dentro de /var/cache . Para citar o Filesystem Hierarchy Standard v 2.3, que pacotes Debian são obrigados a seguir: 1

Files located under /var/cache may be expired in an application specific manner, by the system administrator, or both. The application must always be able to recover from manual deletion of these files (generally because of a disk space shortage).2 (emphasis added)

Assim, qualquer software no Debian deve ser capaz de se recuperar, possivelmente ao custo de algum tempo de CPU, largura de banda, etc., de find /var/cache -type f -print0 | xargs -0 rm -f

    
por 06.09.2009 / 07:56

Tags