|
|
(No se muestran 3 ediciones intermedias del mismo usuario) |
Línea 19: |
Línea 19: |
|
| |
|
| = Solución a problemas = | | = Solución a problemas = |
| ===== 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 =====
| | *[[Failed to prepare transaction (could not satisfy dependencies)]] |
| <syntaxhighlight lang="bash">
| | *[[Failed to write file]] |
| error: failed to commit transaction (conflicting files)
| | *[[Possibly missing firmware]] |
| python-commonmark: /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE exists in filesystem
| |
| </syntaxhighlight>
| |
| | |
| or
| |
| | |
| <syntaxhighlight lang="bash">
| |
| 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
| |
| </syntaxhighlight>
| |
| | |
| Solución 1:
| |
| | |
| <syntaxhighlight lang="bash">
| |
| sudo pacman -S npm --overwrite '/usr/lib/node_modules/npm/*'
| |
| </syntaxhighlight>
| |
| | |
| Solución 2:
| |
| | |
| <syntaxhighlight lang="bash">
| |
| sudo rm /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE
| |
| </syntaxhighlight>
| |
| | |
| or
| |
| | |
| <syntaxhighlight lang="bash">
| |
| sudo rm /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs
| |
| </syntaxhighlight>
| |
| | |
| ===== Failed to prepare transaction (could not satisfy dependencies) =====
| |
| For example you have this message:
| |
| | |
| <syntaxhighlight lang="bash">
| |
| installing kio5 (5.111.0-1) breaks dependency 'kio' required by kfiredragonhelper
| |
| </syntaxhighlight>
| |
| | |
| You have to:
| |
| | |
| <syntaxhighlight lang="bash">
| |
| sudo pacman -R kfiredragonhelper
| |
| </syntaxhighlight>
| |
| | |
| Then, update your system normally and remove each time required packages if you don´t use them.
| |
| | |
| ===== Failed to write file =====
| |
| <syntaxhighlight lang="bash">
| |
| Failed to write file "/sys/module/pcie_aspm/parameters/policy": Operation not permitted
| |
| error: command failed to execute correctly
| |
| </syntaxhighlight>
| |
| | |
| 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 =====
| |
| | |
| <syntaxhighlight lang="bash">
| |
| WARNING: Possibly missing firmware for module
| |
| </syntaxhighlight>
| |
| | |
| Solución: Pendiente
| |
|
| |
|
| = Comandos = | | = Comandos = |