Faça um serviço de limpeza para limpar o espaço em disco na sua partição raiz. 50G geralmente é o suficiente - não é necessário redimensionar partições.
Tente limpar o cache dos seus gerenciadores de pacotes. Basta fazer um dnf clean all
:
dnf clean dbcache
Removes cache files generated from the repository metadata. This forces DNF to regenerate the cache files the next time it is run.
dnf clean expire-cache
Removes local cookie files saying when the metadata and mirrorlists were downloaded for each repo. DNF will re-validate the cache for each repo the next time it is used.
dnf clean metadata
Removes repository metadata. Those are the files which DNF uses to determine the remote availability of packages. Using this option will make DNF download all the metadata the next time it is
run.
dnf clean packages
Removes any cached packages from the system.
dnf clean plugins
Tells all enabled plugins to eliminate their cached data.
dnf clean all
Does all of the above.
Desinstale os pacotes não utilizados. Mostra o que está instalado: dnf list installed
.
Outros lugares para procurar é /root
/opt
/srv
às vezes, há arquivos baixados ou instalações personalizadas.
O seguinte comando lhe dará informações sobre quanto espaço é usado em cada diretório.
sudo du -sh /root /opt /srv
O próximo comando mostra os dez maiores arquivos do seu sistema (pode demorar um pouco):
sudo du -hsx /* | sort -rh | head -10