Diferencia entre revisiones de «Garuda Linux»
De TechShareRoom wiki
Línea 60: | Línea 60: | ||
Actualiza el sistema mediante una tarea al iniciar el sistema o manualmente: | Actualiza el sistema mediante una tarea al iniciar el sistema o manualmente: | ||
<syntaxhighlight lang="bash "> | <syntaxhighlight lang="bash"> | ||
sudo update-garuda | sudo update-garuda | ||
</syntaxhighlight> | </syntaxhighlight> | ||
*'''Muy importante''', limpia la cache manualmente o con alguna configuración que te permita generar la mínima posible o que con el tiempo se elimine. [https://ostechnix.com/recommended-way-clean-package-cache-arch-linux/ Tutorial recomendado]/ | *'''Muy importante''', limpia la cache manualmente o con alguna configuración que te permita generar la mínima posible o que con el tiempo se elimine. [https://ostechnix.com/recommended-way-clean-package-cache-arch-linux/ Tutorial recomendado]. Yo me quedaría a hacer lo del último apartado: | ||
'''Automatically clean package cache in Arch Linux''' | |||
Create a file /etc/pacman.d/hooks/clean_package_cache.hook: | |||
<syntaxhighlight lang="bash"> | |||
sudo mkdir /etc/pacman.d/hooks | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="bash"> | |||
sudo nano /etc/pacman.d/hooks/clean_package_cache.hook | |||
</syntaxhighlight> | |||
Add the following lines: | |||
<syntaxhighlight lang="bash"> | |||
[Trigger] | |||
Operation = Upgrade | |||
Operation = Install | |||
Operation = Remove | |||
Type = Package | |||
Target = * | |||
[Action] | |||
Description = Cleaning pacman cache... | |||
When = PostTransaction | |||
Exec = /usr/bin/paccache -r | |||
</syntaxhighlight> | |||
== Solución a problemas == | == Solución a problemas == | ||
Ir a la sección Solución a problemas del artículo [[Arch_Linux#Soluci%C3%B3n_a_problemas]], ya que comparte base. | Ir a la sección Solución a problemas del artículo [[Arch_Linux#Soluci%C3%B3n_a_problemas]], ya que comparte base. |