1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-08-22 20:57:45 +02:00

linux/pacman: added exists in filesystem error

This commit is contained in:
tiyn 2025-08-21 05:06:53 +02:00
parent ff693d65e8
commit a3d1515e3f

View File

@ -304,3 +304,18 @@ This is especially the case on [Arch Linux-systems](/wiki/linux/arch-linux.md) b
packages are also installed via [Pacman or Yay](#arch-linux-pacman-and-yay).
In this case the global Version has to be changed to `system` or the package installed to the
non-system Python version.
#### Error `exists in filesystem`
This section is based on a
[reddit post by 194668PT](https://www.reddit.com/r/archlinux/comments/17jempk/pacman_exists_in_filesystem_errors/).
If an error shows up that describes that a file of a package `exists in filesystem` usually a
permission/owner error happened.
This can happen when running `pacman -Syyu`.
To update the package either way the following command can be used.
`<package name>` should be exchanged for the package that throws the error.
```sh
sudo pacman -S --overwrite "*" <package name>
```