mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-10 07:17:00 +07:00
67 lines
1.5 KiB
Markdown
67 lines
1.5 KiB
Markdown
# Quick Start Guide
|
|
|
|
## Linux Kernel Requirement
|
|
|
|
### Kernel Version
|
|
|
|
Use `uname -r` to check the kernel version on your machine.
|
|
|
|
> **Notes**
|
|
> If you find your kernel version is `< 5.8`, follow the guide [HERE](./kernel-upgrade.md) to upgrade the kernel to the minimum required version.
|
|
|
|
## Usage
|
|
|
|
### Build
|
|
|
|
**Make Dependencies**
|
|
|
|
```shell
|
|
clang >= 10
|
|
llvm >= 10
|
|
golang >= 1.18
|
|
make
|
|
```
|
|
|
|
**Build**
|
|
|
|
```shell
|
|
git clone https://github.com/v2rayA/dae.git
|
|
cd dae
|
|
git submodule update --init
|
|
# Minimal dependency build:
|
|
make GOFLAGS="-buildvcs=false" CC=clang
|
|
# Or normal build:
|
|
# make
|
|
```
|
|
|
|
### Run
|
|
|
|
**Runtime Dependencies**
|
|
|
|
For traffic splitting, dae relies on the following data sources, [geoip.dat](https://github.com/v2ray/geoip/releases/latest) and [geosite.dat](https://github.com/v2fly/domain-list-community/releases/latest).
|
|
|
|
```shell
|
|
mkdir -p /usr/local/share/dae/
|
|
pushd /usr/local/share/dae/
|
|
curl -L -o geoip.dat https://github.com/v2ray/geoip/releases/latest/download/geoip.dat
|
|
curl -L -o geosite.dat https://github.com/v2ray/domain-list-community/releases/latest/download/dlc.dat
|
|
popd
|
|
|
|
```
|
|
|
|
**Run**
|
|
|
|
Download the example config file:
|
|
```shell
|
|
curl -L -o example.dae https://github.com/v2rayA/dae/raw/main/example.dae
|
|
```
|
|
See [example.dae](https://github.com/v2rayA/dae/blob/main/example.dae).
|
|
|
|
After fine tuning, run dae:
|
|
```shell
|
|
./dae run -c example.dae
|
|
```
|
|
|
|
Alternatively, you may run dae as a daemon(systemd) service. Check out more details [HERE](./run-as-daemon.md).
|
|
|