Diferencia entre revisiones de «Garuda Linux»

De TechShareRoom wiki
 
(No se muestran 3 ediciones intermedias del mismo usuario)
Línea 47: Línea 47:
*Configurar Snapper
*Configurar Snapper
A tu gusto, entre 5 y 10 snapshots como mucho son suficientes para un uso normal.
A tu gusto, entre 5 y 10 snapshots como mucho son suficientes para un uso normal.
*Cambiar de wayland a x11 y viceversa
-go to settings
-type in sddm
-choose sddm login screen
-select behaviour (up top in the middle of the window.)
-hoose automatically log in with sesion Plasma (X11)
This will have you boot into X11 every time.


== Seguridad ==
== Seguridad ==
Línea 78: Línea 91:


'''Automatically clean package cache in Arch Linux'''
'''Automatically clean package cache in Arch Linux'''
Create a file /etc/pacman.d/hooks/clean_package_cache.hook:
 
Creating the file
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
sudo mkdir /etc/pacman.d/hooks
echo -e '#!/bin/bash\nsudo rm -rf /var/cache/pacman/pkg/*' | sudo tee /usr/local/bin/eraseCaches.sh && sudo chmod +x /usr/local/bin/eraseCaches.sh
</syntaxhighlight>
</syntaxhighlight>
Not necessary to put password:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
sudo nano /etc/pacman.d/hooks/clean_package_cache.hook
sudo visudo
</syntaxhighlight>
</syntaxhighlight>


Add the following lines to remove all cached versions of uninstalled packages:
Put below:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
[Trigger]
usuario ALL=(ALL) NOPASSWD: /bin/rm -rf /var/cache/pacman/pkg/*
Operation = Upgrade
Operation = Install
Operation = Remove
Type = Package
Target = *
[Action]
Description = Cleaning pacman cache...
When = PostTransaction
Exec = /usr/bin/paccache -ruk0
</syntaxhighlight>
</syntaxhighlight>


'''Manually clean package cache in Arch Linux'''
Ctrl+S, Ctrl+Q
Si quieres eliminar todo manualmente de una:
 
Create autostart file


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
sudo pacman -Scc
mkdir -p ~/.config/autostart && echo -e '[Desktop Entry]\nType=Application\nExec=/usr/local/bin/eraseCaches.sh\nHidden=false\nNoDisplay=false\nX-GNOME-Autostart-enabled=true\nName[en_US]=Erase Caches\nName=Erase Caches\nComment[en_US]=Elimina el contenido de la caché de pacman\nComment=Elimina el contenido de la caché de pacman' > ~/.config/autostart/eraseCaches.desktop
</syntaxhighlight>
</syntaxhighlight>
La pega es que no es un compando programado y te tocará hacerlo de vez en cuando.


== 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.