https://github.com/cyberanchor/proxyspace
https://github.com/cyberanchor/proxyspace
3proxy android frp mobile-proxy proxy socks5
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cyberanchor/proxyspace
- Owner: cyberanchor
- Created: 2025-05-17T19:41:03.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-05-17T19:49:58.000Z (8 months ago)
- Last Synced: 2025-06-07T06:07:25.105Z (7 months ago)
- Topics: 3proxy, android, frp, mobile-proxy, proxy, socks5
- Homepage:
- Size: 61.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Сompiling 3proxy, frp on Android (Termux, ARM64)
### verify architecture
check the device architecture to confirm ARM64 (`aarch64`):
```bash
uname -om
```
**output**: `aarch64 Android`
---
### compiling 3proxy
##### install packages
install required tools and dependencies:
```bash
pkg update -y; pkg upgrade -y
pkg install git make clang build-essential -y
```
##### compile
clone and build 3proxy:
```bash
git clone https://github.com/z3APA3A/3proxy
cd 3proxy
ln -s Makefile.Linux Makefile
make
```
**output**: binaries in `3proxy/bin/`
---
**3proxy compiling process on termux:**
---
### frp compilation
##### install packages
install required tools for frp:
```bash
pkg update -y; pkg upgrade -y
pkg install git golang make -y
```
##### compile
clone and build frp:
```bash
git clone https://github.com/fatedier/frp
cd frp
make
```
**output**: binaries in `frp/bin/`
**frp compiling process on termux:**
---