This repo contains dae, v2rayA, v2ray, xray and juicity programs.
Sometimes you need to install curl and gpg at first:
sudo apt update
sudo apt install curl gpg
Add the repository to your sources config:
cat <<- EOL | sudo tee /etc/apt/sources.list.d/daeuniverse.sources
Types: deb
URIs: https://daeuniverse.pages.dev
Suites: goose
Components: honk
Signed-By: /usr/share/keyrings/daeuniverse-archive-goose.gpg
EOL
Add the repository to your sources list:
cat <<- EOL | sudo tee /etc/apt/sources.list.d/daeuniverse.list
deb [signed-by=/usr/share/keyrings/daeuniverse-archive-goose.gpg] https://daeuniverse.pages.dev goose honk
EOL
curl -fsSL https://daeuniverse.pages.dev/public-key.asc | sudo gpg --dearmor -o /usr/share/keyrings/daeuniverse-archive-goose.gpg
Update the package list:
sudo apt update
Install the desired package, for example, v2rayA:
sudo apt install v2raya
see: https://github.com/daeuniverse/debian-repo/tree/main/nfpm
If you want to edit the systemd service file, you can just run(for example, for daed service):
sudo systemctl edit --full daed.service
New file will be placed in /etc/systemd/system/daed.service, instead of in /lib/systemd/system/daed.service, and new file will not be overwritten when package is updated.
Defaultly v2rayA uses xray as its core. To let v2rayA use v2ray as its core, edit the v2raya service file:
sudo systemctl edit --full v2raya.service
then add environment variable V2RAYA_V2RAY_PATH in the [Service] section:
[Service]
Environment="V2RAYA_V2RAY_PATH=/usr/bin/v2ray"
Don't remove other existing lines and make sure you have v2ray installed in your system, then restart v2rayA:
sudo systemctl restart v2raya.service