### 在 Ubuntu/Debian 上安装 DEB 包 Source: https://clashparty.cc/guides/linux-setup 使用 apt 命令在 Ubuntu 或 Debian 系统上安装 Clash Party 的 DEB 安装包。 ```bash sudo apt install ./clashparty_*.deb ``` -------------------------------- ### 赋予 AppImage 执行权限 Source: https://clashparty.cc/guides/linux-setup 在 Linux 上使用 AppImage 文件前,需要先赋予其执行权限。此命令用于更改文件模式。 ```bash chmod +x ClashParty-*.AppImage ``` -------------------------------- ### 在 Fedora/RHEL/openSUSE 上安装 RPM 包 Source: https://clashparty.cc/guides/linux-setup 使用 dnf 或 zypper 命令在 Fedora、RHEL 或 openSUSE 系统上安装 Clash Party 的 RPM 安装包。 ```bash sudo dnf install clashparty-*.rpm ``` ```bash sudo zypper install clashparty-*.rpm ``` -------------------------------- ### 运行 AppImage 程序 Source: https://clashparty.cc/guides/linux-setup 在 Linux 上直接运行 AppImage 文件以启动 Clash Party。确保文件已赋予执行权限。 ```bash ./ClashParty-*.AppImage ``` -------------------------------- ### 配置命令行代理 Source: https://clashparty.cc/guides/linux-setup 在 `~/.bashrc` 或 `~/.zshrc` 文件中添加这些导出命令,以在命令行环境中设置 HTTP、HTTPS 和 SOCKS5 代理。 ```bash export http_proxy="http://127.0.0.1:8080" export https_proxy="http://127.0.0.1:8080" export all_proxy="socks5://127.0.0.1:1080" export no_proxy="localhost,127.0.0.1,::1" ``` -------------------------------- ### Add Custom Rules with Configuration Overrides Source: https://clashparty.cc/guides/routing-rules Use the 'Configuration Overrides' feature to inject custom traffic splitting rules without modifying the subscription file. This is useful for adding specific domain or IP rules. ```yaml - DOMAIN-SUFFIX,google.com,Proxy - DOMAIN-KEYWORD,baidu,Direct ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.