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: 9 months 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 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T14:25:41.000Z (9 months ago)
- Last Synced: 2025-04-03T15:30:52.053Z (9 months ago)
- Topics: linux-packages, redis
- Language: Shell
- Homepage: https://relay.so
- Size: 22.4 MB
- Stars: 16
- Watchers: 5
- 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
```