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''' | ||
Creating the file | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
sudo | 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 | sudo visudo | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Put below: | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
usuario ALL=(ALL) NOPASSWD: /bin/rm -rf /var/cache/pacman/pkg/* | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Ctrl+S, Ctrl+Q | |||
Create autostart file | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
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> | ||
== 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. |