Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cachewerk/linux-repos
Relay packages and repositories for Debian, Ubuntu and CentOS.
https://github.com/cachewerk/linux-repos
linux-packages redis
Last synced: 4 days ago
JSON representation
Relay packages and repositories for Debian, Ubuntu and CentOS.
- Host: GitHub
- URL: https://github.com/cachewerk/linux-repos
- Owner: cachewerk
- License: mit
- Created: 2021-06-22T22:44:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-11T02:58:14.000Z (28 days ago)
- Last Synced: 2024-12-21T12:36:39.679Z (18 days ago)
- Topics: linux-packages, redis
- Language: Shell
- Homepage: https://relay.so
- Size: 19.8 MB
- Stars: 14
- Watchers: 6
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Relay packages and repositories for Linux
For detailed installations instruction see [relay.so](https://relay.so/docs/installation).
## Using APT (Debian, Ubuntu)
```bash
curl -fsSL "https://repos.r2.relay.so/key.gpg" | sudo apt-key add -
sudo add-apt-repository "deb https://repos.r2.relay.so/deb $(lsb_release -cs) main"sudo apt install php-relay # default php version
sudo apt install php8.1-relay # specific php version
sudo apt install lsphp81-relay # for litespeed setups
```If `apt-key` or `add-apt-repository` are deprecated or not available, use:
```bash
curl -fsSL "https://repos.r2.relay.so/key.gpg" | sudo gpg --dearmor -o "/usr/share/keyrings/cachewerk.gpg"
echo "deb [signed-by=/usr/share/keyrings/cachewerk.gpg] https://repos.r2.relay.so/deb $(lsb_release -sc) main" \
| sudo tee "/etc/apt/sources.list.d/cachewerk.list" > /dev/null
sudo apt-get update
```## Using YUM (CentOS, RHEL, Rocky Linux)
```bash
curl -s -o "/etc/yum.repos.d/cachewerk.repo" "https://repos.r2.relay.so/rpm/el.repo"yum install relay-php # single php version
yum install php81-php-relay # multiple php versions
yum install lsphp81-relay # for litespeed setups
```### Amazon Linux 2
```bash
yum-config-manager --disable cachewerk-el
yum-config-manager --enable cachewerk-el7
```