Getting Started ⏱️ Estimated reading time:3 mins read

Linux Setup Guide

Published:2025-08-13 Difficulty:Easy Last updated:2025-09-25

This tutorial will guide you through installing and configuring Clash Party on Linux systems, supporting various distributions through DEB and RPM packages.

📋 System Requirements

  • Operating System: Modern Linux distribution (Ubuntu 18.04+, Debian 10+, CentOS 7+, etc.)
  • Architecture: x64 (64-bit) or ARM64
  • Memory: At least 2GB RAM
  • Storage: At least 200MB available space
  • Desktop Environment: GNOME, KDE, XFCE, or similar

🔽 Step 1: Download Clash Party

  1. Visit our Download Center page
  2. Choose the appropriate package for your distribution:
    • DEB Package: For Debian, Ubuntu, and derivatives
    • RPM Package: For Red Hat, CentOS, Fedora, and derivatives
  3. Select the correct architecture (x64 or ARM64)

⚙️ Step 2: Installation

For DEB-based Systems (Ubuntu, Debian)

1
2
3
4
5
6
7
8
# Download the DEB package
wget [DEB_DOWNLOAD_URL]

# Install the package
sudo dpkg -i mihomo-party-linux-*.deb

# Install dependencies if needed
sudo apt-get install -f

For RPM-based Systems (CentOS, Fedora)

1
2
3
4
5
6
7
8
# Download the RPM package
wget [RPM_DOWNLOAD_URL]

# Install the package
sudo rpm -i mihomo-party-linux-*.rpm

# Or use dnf/yum
sudo dnf install mihomo-party-linux-*.rpm

🚀 Step 3: First Launch

  1. Launch from application menu or run in terminal:
    1
    
    clash-party
    
  2. Grant necessary permissions if prompted
  3. The application will appear in your system tray

🔗 Step 4: Import Subscription

  1. Click the system tray icon to open Clash Party
  2. Navigate to “Profiles” tab
  3. Click “New Profile”
  4. Select “Import from URL”
  5. Enter your subscription URL
  6. Name your profile and save
  7. Click “Update” to fetch configuration

🌐 Step 5: Configure System Proxy

Automatic Configuration

  1. In Clash Party, go to “Settings”
  2. Enable “System Proxy”
  3. The application will automatically configure your system

Manual Configuration (if needed)

  1. Open system network settings
  2. Configure HTTP/HTTPS proxy:
    • Host: 127.0.0.1
    • Port: 7890 (default)
  3. Configure SOCKS proxy:
    • Host: 127.0.0.1
    • Port: 7891 (default)

✅ Step 6: Verify Connection

  1. Open your web browser
  2. Visit a test website
  3. Check connection status in Clash Party
  4. Verify your IP address has changed

🔧 Common Issues

Issue 1: Permission Denied

1
2
# Fix permissions
sudo chmod +x /usr/bin/clash-party

Issue 2: Missing Dependencies

1
2
3
4
5
# For DEB systems
sudo apt-get install -f

# For RPM systems
sudo dnf install --skip-broken

Issue 3: System Tray Not Showing

  • Ensure your desktop environment supports system tray
  • Try installing tray extensions for GNOME
  • Use command line interface if GUI fails

🔧 Advanced Configuration

Running as Service

1
2
3
# Create systemd service (optional)
sudo systemctl enable clash-party
sudo systemctl start clash-party

Command Line Usage

1
2
3
4
5
# Start with specific config
clash-party --config /path/to/config.yaml

# Run in background
nohup clash-party &

📚 Next Steps

After installation:

For support, check our FAQ or contact us.

Linux Installation Configuration DEB RPM