Quick Installation
Run this command to automatically add the repository to your system:
curl -fsSL https://repo.raweb.al/install.sh | sudo bash
Manual Installation
1. Add the GPG key:
curl -fsSL https://repo.raweb.al/raweb-repo.gpg -o /tmp/raweb-repo.gpg
gpg --dearmor < /tmp/raweb-repo.gpg | sudo tee /usr/share/keyrings/raweb-repo.gpg >/dev/null
rm /tmp/raweb-repo.gpg
2. Add the repository:
For Ubuntu 24.04+ (DEB822 format):
sudo tee /etc/apt/sources.list.d/raweb.sources << EOF
Types: deb
URIs: https://repo.raweb.al
Suites: noble
Components: main
Architectures: amd64
Signed-By: /usr/share/keyrings/raweb-repo.gpg
EOF
For older systems (traditional format):
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/raweb-repo.gpg] https://repo.raweb.al DISTRO main" | sudo tee /etc/apt/sources.list.d/raweb.list
Replace DISTRO with: noble, jammy, bookworm, or bullseye
3. Update package list:
sudo apt update
Package Installation
After adding the repository, you can install packages:
sudo apt install raweb-webserver raweb-mariadb raweb-php84