Diferencia entre revisiones de «Arch Linux»
De TechShareRoom wiki
Más acciones
Sin resumen de edición |
Sin resumen de edición |
||
(No se muestra una edición intermedia del mismo usuario) | |||
Línea 5: | Línea 5: | ||
| [[Archivo:kdeneon.png|link=KDE]] | | [[Archivo:kdeneon.png|link=KDE]] | ||
|} | |} | ||
= Tutoriales = | |||
= Recursos = | |||
*[https://github.com/yorkox0/autoAwesome autoAwesome] | *[https://github.com/yorkox0/autoAwesome autoAwesome] | ||
**[https://www.youtube.com/watch?v=fshLf6u8B-w ASÍ es el ENTORNO de un HACKER - s4vitar] | **[https://www.youtube.com/watch?v=fshLf6u8B-w ASÍ es el ENTORNO de un HACKER - s4vitar] | ||
== Repositorios recomendados == | ===== Repositorios recomendados ===== | ||
*[https://github.com/adgellida/ArchMatic ArchMatic] | *[https://github.com/adgellida/ArchMatic ArchMatic] | ||
= Mantenimiento = | |||
*[[Mantenimiento Arch Linux básico]] | *[[Mantenimiento Arch Linux básico]] | ||
*[[Mantenimiento Arch Linux avanzado]] | *[[Mantenimiento Arch Linux avanzado]] | ||
= Solución a problemas = | |||
===== Downgrade a package ===== | |||
=== Downgrade a package === | |||
*[https://ostechnix.com/downgrade-package-arch-linux/ How To Downgrade A Package] | *[https://ostechnix.com/downgrade-package-arch-linux/ How To Downgrade A Package] | ||
*[https://www.makeuseof.com/prevent-packages-from-getting-updated-arch-linux/ How to Prevent Packages From Getting Updated in Arch Linux] | *[https://www.makeuseof.com/prevent-packages-from-getting-updated-arch-linux/ How to Prevent Packages From Getting Updated in Arch Linux] | ||
=== Failed to commit transaction === | ===== Failed to commit transaction ===== | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
error: failed to commit transaction (conflicting files) | error: failed to commit transaction (conflicting files) | ||
Línea 54: | Línea 54: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== Failed to prepare transaction (could not satisfy dependencies) === | ===== Failed to prepare transaction (could not satisfy dependencies) ===== | ||
For example you have this message: | For example you have this message: | ||
Línea 69: | Línea 69: | ||
Then, update your system normally and remove each time required packages if you don´t use them. | Then, update your system normally and remove each time required packages if you don´t use them. | ||
=== Failed to write file === | ===== Failed to write file ===== | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Failed to write file "/sys/module/pcie_aspm/parameters/policy": Operation not permitted | Failed to write file "/sys/module/pcie_aspm/parameters/policy": Operation not permitted | ||
Línea 79: | Línea 79: | ||
You have to use pcie_aspm=force as boot parameter if support, or use pcie_aspm=off if not support. | You have to use pcie_aspm=force as boot parameter if support, or use pcie_aspm=off if not support. | ||
=== Possibly missing firmware === | ===== Possibly missing firmware ===== | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Línea 87: | Línea 87: | ||
Solución: Pendiente | Solución: Pendiente | ||
= Comandos = | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
#Install a package | #Install a package | ||
pacman -S packagename | pacman -S packagename | ||
</syntaxhighlight> | </syntaxhighlight> |
Revisión actual - 23:15 21 ago 2025
KDE |
---|
![]() |
Tutoriales
Recursos
Repositorios recomendados
Mantenimiento
Solución a problemas
Downgrade a package
Failed to commit transaction
error: failed to commit transaction (conflicting files)
python-commonmark: /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE exists in filesystem
or
error: failed to commit transaction (conflicting files)
node-gyp: /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs exists in filesystem
Solución 1:
sudo pacman -S npm --overwrite '/usr/lib/node_modules/npm/*'
Solución 2:
sudo rm /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE
or
sudo rm /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs
Failed to prepare transaction (could not satisfy dependencies)
For example you have this message:
installing kio5 (5.111.0-1) breaks dependency 'kio' required by kfiredragonhelper
You have to:
sudo pacman -R kfiredragonhelper
Then, update your system normally and remove each time required packages if you don´t use them.
Failed to write file
Failed to write file "/sys/module/pcie_aspm/parameters/policy": Operation not permitted
error: command failed to execute correctly
Solución:
You have to use pcie_aspm=force as boot parameter if support, or use pcie_aspm=off if not support.
Possibly missing firmware
WARNING: Possibly missing firmware for module
Solución: Pendiente
Comandos
#Install a package
pacman -S packagename