28 lines
385 B
Markdown
28 lines
385 B
Markdown
# Archlinux
|
|
|
|
## pacman
|
|
|
|
### Remove package with dependencies
|
|
|
|
```
|
|
pacman -Rcns <package>
|
|
```
|
|
|
|
### See which package provides which file
|
|
|
|
Search for a full filename
|
|
```
|
|
pacman -F $filename
|
|
```
|
|
|
|
Search for a regex
|
|
|
|
```
|
|
pacman -Fx $expr
|
|
```
|
|
|
|
### Statically linked pacman executable
|
|
|
|
* [Original repo](https://pkgbuild.com/~eschwartz/repo/x86_64-extracted/)
|
|
* [My backup](./pacman-static)
|