github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/docs/installation/from-source.zh.md (about)

     1  # 从源代码安装
     2  
     3  sing-box 需要 Golang **1.18.5** 或更高版本。
     4  
     5  ```bash
     6  go install -v github.com/inazumav/sing-box/cmd/sing-box@latest
     7  ```
     8  
     9  自定义安装:
    10  
    11  ```bash
    12  go install -v -tags with_clash_api github.com/inazumav/sing-box/cmd/sing-box@latest
    13  ```
    14  
    15  | 构建标志                         | 描述                                                                                                                                                                                                                                                                      |
    16  |------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
    17  | `with_quic`                  | 启用 QUIC 支持,参阅 [QUIC 和 HTTP3 DNS 传输层](/configuration/dns/server),[Naive 入站](/configuration/inbound/naive),[Hysteria 入站](/configuration/inbound/hysteria),[Hysteria 出站](/configuration/outbound/hysteria) 和 [V2Ray 传输层#QUIC](/configuration/shared/v2ray-transport#quic)。 |
    18  | `with_grpc`                  | 启用标准 gRPC 支持,参阅 [V2Ray 传输层#gRPC](/configuration/shared/v2ray-transport#grpc)。                                                                                                                                                                                           |
    19  | `with_dhcp`                  | 启用 DHCP 支持,参阅 [DHCP DNS 传输层](/configuration/dns/server)。                                                                                                                                                                                                                |
    20  | `with_wireguard`             | 启用 WireGuard 支持,参阅 [WireGuard 出站](/configuration/outbound/wireguard)。                                                                                                                                                                                                   |
    21  | `with_shadowsocksr`          | 启用 ShadowsocksR 支持,参阅 [ShadowsocksR 出站](/configuration/outbound/shadowsocksr)。                                                                                                                                                                                          |
    22  | `with_ech`                   | 启用 TLS ECH 扩展支持,参阅 [TLS](/configuration/shared/tls#ech)。                                                                                                                                                                                                                |
    23  | `with_utls`                  | 启用 [uTLS](https://github.com/refraction-networking/utls) 支持,参阅 [TLS](/configuration/shared/tls#utls)。                                                                                                                                                                   |
    24  | `with_reality_server`        | 启用 reality TLS 服务器支持,参阅 [TLS](/configuration/shared/tls)。                                                                                                                                                                                                               |
    25  | `with_acme`                  | 启用 ACME TLS 证书签发支持,参阅 [TLS](/configuration/shared/tls)。                                                                                                                                                                                                                 |
    26  | `with_clash_api`             | 启用 Clash API 支持,参阅 [实验性](/configuration/experimental#clash-api-fields)。                                                                                                                                                                                                 |
    27  | `with_v2ray_api`             | 启用 V2Ray API 支持,参阅 [实验性](/configuration/experimental#v2ray-api-fields)。                                                                                                                                                                                                 |
    28  | `with_gvisor`                | 启用 gVisor 支持,参阅 [Tun 入站](/configuration/inbound/tun#stack) 和 [WireGuard 出站](/configuration/outbound/wireguard#system_interface)。                                                                                                                                        |
    29  | `with_embedded_tor` (需要 CGO) | 启用 嵌入式 Tor 支持,参阅 [Tor 出站](/configuration/outbound/tor)。                                                                                                                                                                                                                 |
    30  | `with_lwip` (需要 CGO)         | 启用 LWIP Tun 栈支持,参阅 [Tun 入站](/configuration/inbound/tun#stack)。                                                                                                                                                                                                          |
    31  
    32  二进制文件将被构建在 `$GOPATH/bin` 下。
    33  
    34  ```bash
    35  sing-box version
    36  ```
    37  
    38  同时推荐使用 systemd 来管理 sing-box 服务器实例。
    39  参阅 [Linux 服务器安装示例](/examples/linux-server-installation)。