documentation/docs/void-desktop-setup/post-installation/repositories.md

45 lines
940 B
Markdown
Raw Permalink Normal View History

2023-08-25 17:44:30 +02:00
# Repositories
2023-08-16 22:09:10 +02:00
To install the official Void Linux 32-bit and nonfree repositories simply install their respective packages:
* For glibc
```
# xbps-install -Sy void-repo-multilib void-repo-nonfree void-repo-multilib-nonfree
```
* For musl
```
# xbps-install -Sy void-repo-nonfree
```
And update the repositories:
```
# xbps-install -S
```
2023-08-25 17:44:30 +02:00
## xbps-ample
2023-08-16 22:09:10 +02:00
There is also our unofficial extra repository for some additional packages and some packages which are needed for the graphical installation. To use those add them to `/etc/xbps.d/00-repository-ample.conf`,
* For glibc:
```
repository=https://git.bijl.us/lnco/xbps-ample/raw/branch/main/current
repository=https://git.bijl.us/lnco/xbps-ample/raw/branch/main/current/nonfree
```
* For musl
```
repository=https://git.bijl.us/lnco/xbps-ample/raw/branch/main/current/musl
```
And refresh the repositories:
```
# xbps-install -S
2023-08-16 23:13:16 +02:00
```