AIStudio SSH 公钥管理,一处配置,处处可用AIStudio SSH 公钥管理,一处配置,处处可用 ,只为更佳开发体验如何配置
Skip to content
回到全部文章

第三方学术加速服务指南

免责声明

本指南仅列出第三方提供的学术加速服务,用于在中国大陆加速访问 GitHub。我们不提供这些服务,也不对其可靠性负责。此列表并非详尽无遗。

添加第三方加速服务前缀

通常以增加前缀的方式实现学术加速。

ghgo.xyz

  1. 复制原始 github 仓库 clone 地址。
  2. 在地址前添加加速服务的域名 https://ghfast.top/

例如:

  • 原地址:https://github.com/redis/redis
  • 代理地址:https://ghfast.top/https://github.com/redis/redis

NOTE

以上加速服务的域名(ghgo.xyz)有可能因被封失效,您可以访问 https://ghproxy.link/ 获取最新可用域名。

下载公共仓库

获取 https 仓库地址后,添加前缀,发起 git clone:

shell
git clone https://ghfast.top/https://github.com/redis/redis

下载私有仓库

下载私有仓库时,无法使用基于 SSH 密钥的认证,需要使用 Github 的访问 Token。步骤如下:

  1. 前往 GitHub,创建 Tokens(classic)Fine-grained tokens。请务必确保您创建的 Token 对需要下载的仓库至少 Read-only 权限。

  2. 获取私有仓库的 https 仓库地址后,添加前缀,添加您的 Github 用户名和 Token,发起 git clone:

    shell
    git clone https://username:token@ghgo.xyz/https://github.com/redis/redis

gh-proxy.com

gh-proxy.com 仅用于 GitHub 加速。支持 git clone、wget、curl 等操作。

  1. 复制原始地址。

  2. 在地址前添加 https://gh-proxy.com/

    NOTE

    不支持 SSH Key 方式 git clone 下载。

下载公共仓库示例:

shell
# git clone
git clone https://gh-proxy.com/https://github.com/stilleshan/ServerStatus

GitHub 文件下载支持 raw.githubusercontent.com、gist.github.com、gist.githubusercontent.com,示例如下(wget/curl):

shell
# wget
wget https://gh-proxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
wget https://gh-proxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dockerfile

# curl
curl -O https://gh-proxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
curl -O https://gh-proxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dockerfile

使用自建加速服务

以下内容指导您在 Linux AMD64 实例中自行安装 Clash 学术加速客户端,使其能够作为 VPN 客户端使用。

NOTE

  • 智算云平台不提供代理服务。以下步骤仅适用于已自购买相关服务,需要在 AIStudio 开发机/AICoder 上安装 Clash 客户端的场景。
  • 请确保您可以通过 SSH 远程连接到您的开发机或 AICoder。您需要具有 root 或具有 sudo 权限的用户。

一键安装 Clash Premium

我们使用预编译的 Clash 二进制文件压缩包 (clash-linux-amd64-2023.08.17.gz)。如需从源码编译,可参考 Clash 文档。同时该脚本将下载 GeoIP 数据库文件 Country.mmdb,用于进行地理位置判断。

  1. 推荐通过 VSCode 连接到 AIStudio 开发机或 AICoder,方便后续操作。

    VS Code 远程开发:为开发机、AICoder 提供本地般的开发体验

  2. 在当前用户 HOME 目录下添加 install_clash.sh 脚本。以下脚本会直接安装到 HOME 目录下,您也可以按需自由修改脚本内容。

    shell
    #!/bin/bash
    
    # Script to automate Clash installation and setup in user home directory on Linux AMD64
    # Note: config.yaml must be manually configured separately
    
    # Exit on any error
    set -e
    
    # Define variables using home directory
    CLASH_URL="https://downloads.clash.wiki/ClashPremium/clash-linux-amd64-2023.08.17.gz"
    CLASH_BIN="$HOME/clash/clash-linux-amd64-2023.08.17"
    GEOIP_URL="https://fastly.jsdelivr.net/gh/Dreamacro/maxmind-geoip@release/Country.mmdb"
    CONFIG_DIR="$HOME/.config/clash"
    
    echo "Starting Clash installation and setup..."
    
    # Step 1: Download and set up Clash Premium binary
    echo "Creating directory for Clash binary in home folder..."
    mkdir -p "$HOME/clash"
    
    echo "Downloading Clash Premium binary..."
    wget "$CLASH_URL" -P "$HOME/clash"
    
    echo "Decompressing Clash binary..."
    gzip -d "$HOME/clash/clash-linux-amd64-2023.08.17.gz"
    
    echo "Setting executable permissions..."
    chmod +x "$CLASH_BIN"
    
    # Step 2: Download GeoIP database
    echo "Creating Clash configuration directory if it doesn't exist..."
    mkdir -p "$CONFIG_DIR"
    
    echo "Downloading GeoIP database (Country.mmdb)..."
    wget "$GEOIP_URL" -P "$CONFIG_DIR"
    
    
    echo "Clash installation and setup complete!"
    echo "Note: You need to manually configure $HOME/.config/clash/config.yaml with your proxy settings."
    echo "Refer to your Clash subscription provider for the configuration details."

    网络问题处理 (可选): 如果脚本无法下载 Country.mmdb 文件,您可以本地设法下载,然后通过 scp 命令上传到开发机的 /root/.config/clash/ 目录。

    上传到开发机: 使用 scp 命令将本地下载的 Country.mmdb 文件上传到开发机的 /root/.config/clash/ 目录。请替换以下命令中的 /path/to/Country.mmdb 为您本地文件的实际路径,并确保 SSH 连接信息正确 (IP 地址 111.51.90.14 和端口 40124 来自开发机详情页)。

    bash
    scp -P 40124 /path/to/Country.mmdb root@111.51.90.14:/root/.config/clash/
  3. 运行脚本,安装客户端。

    shell
    cd ~
    chmod +x install-clash.sh
    ./install_clash.sh
  4. 添加您的 Clash 配置文件(一般为 config.yaml)。您需要在 config.yaml 文件中配置 proxies (代理服务器) 和 rules (规则) 部分。具体的配置请从您的 Clash 订阅服务提供商获取

    shell
    cd ~/.config/clash
    # 在这个目录下添加配置文件
  5. 启动 Clash。Clash 首次启动时会自动读取=默认配置文件。默认配置 config.yaml 文件在 ~/.config/clash/ 目录。

    在前台启动 Clash:

    bash
    ~/clash/clash-linux-amd64-2023.08.17 start

    推荐在 tmux 等后台会话中启动 Clash。

代理使用方式

本节假设 Clash 代理服务使用 7890 端口提供 HTTP 代理服务。

NOTE

  • 请确保您的 Clash 配置文件 (config.yaml) 中的代理服务器信息正确有效。
  • 如果遇到连接问题,请检查 Clash 日志 (通常在 /root/.config/clash/ 目录下) 以获取更多错误信息。

使用 CURL 的 Proxy 验证

通过本地的 7890 端口的代理服务访问 Google,有 HTML 输出即表示网络畅通

shell
curl --proxy http://127.0.0.1:7890 https://www.google.com
或者(socks for non-http traffic, e.g. ftp/udp/ssh)
curl --socks5-hostname http://127.0.0.1:7891 https://www.google.com
  • 如果命令成功执行并返回 Google 首页的 HTML 代码,则表示 Clash 代理工作正常。

  • 您还可以使用 -I 参数来检查 HTTP 状态码HTTP/2 200HTTP/1.1 200 OK 表示请求成功。

    bash
    curl -I --proxy http://127.0.0.1:7890 https://www.google.com

Pip 使用 Proxy

使用 --proxy 设置代理,指定 pip 使用 proxy。

shell
# 在不用代理的情况下,基本无法使用官方 Pip 源下载 Pytorch 2.5.0
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu124 --proxy http://127.0.0.1:7890]

手动设置 Shell Proxy

shell
# 推荐,大部分情况够用
export http_proxy="http://127.0.0.1:7890"
export https_proxy="http://127.0.0.1:7890"
export no_proxy="localhost,127.0.0.1,192.168.1.0/24"
# older
export HTTP_PROXY="socks5h://127.0.0.1:7890"
export HTTPS_PROXY="socks5h://127.0.0.1:7890"
export NO_PROXY="localhost,127.0.0.1,192.168.1.0/24"

取消 Shell Proxy 设置:

shell
# 需要逐个取消,示例
unset http_proxy

脚本管理 Shell Proxy

使用我们提供的 Shell 脚本 toggle-proxy.sh,可以一键开关 Shell Proxy。

shell
source /usr/bin/bash on    # Enables the proxy
source /usr/bin/bash off   # Disables the proxy
source /usr/bin/bash status   # Check the proxy status

toggle-proxy.sh 脚本内容如下:

shell
#!/bin/bash

# Proxy settings (customize these as needed)
PROXY_HOST="http://127.0.0.1:7890"  # Replace with your proxy server
NO_PROXY="localhost,127.0.0.1,.example.com"  # Replace with your no-proxy list

enable_proxy() {
    export http_proxy="$PROXY_HOST"
    export HTTP_PROXY="$PROXY_HOST"
    export https_proxy="$PROXY_HOST"
    export HTTPS_PROXY="$PROXY_HOST"
    export no_proxy="$NO_PROXY"
    export NO_PROXY="$NO_PROXY"
    echo "Proxy enabled:"
    echo "  http_proxy=$http_proxy"
    echo "  https_proxy=$https_proxy"
    echo "  no_proxy=$no_proxy"
}

disable_proxy() {
    unset http_proxy HTTP_PROXY
    unset https_proxy HTTPS_PROXY
    unset no_proxy NO_PROXY
    echo "Proxy disabled."
}

# Check current proxy status
check_status() {
    if [ -n "$http_proxy" ] || [ -n "$https_proxy" ]; then
        echo "Current status: Proxy is ON"
        echo "  http_proxy=$http_proxy"
        echo "  https_proxy=$https_proxy"
        echo "  no_proxy=$no_proxy"
    else
        echo "Current status: Proxy is OFF"
    fi
}

# Main logic
case "$1" in
    "on")
        enable_proxy
        ;;
    "off")
        disable_proxy
        ;;
    "status")
        check_status
        ;;
    "toggle")
        if [ -n "$http_proxy" ] || [ -n "$https_proxy" ]; then
            disable_proxy
        else
            enable_proxy
        fi
        ;;
    *)
        echo "Usage: source $0 {on|off|status|toggle}"
        echo "  on     - Enable proxy settings"
        echo "  off    - Disable proxy settings"
        echo "  status - Show current proxy status"
        echo "  toggle - Switch between on and off"
        check_status
        return 1  # Changed from exit 1 to return 1
        ;;
esac

配置 Docker 代理

以下内容仅适用于 AIStudio 开发机。

  1. 创建开发机,开启 Docker 功能。

  2. 登入开发机,创建 Docker 服务配置文件。

    shell
    mkdir /etc/docker
    touch /etc/docker/daemon.json
  3. 在配置文件,写入以下内容。

    json
    {
        "proxies": {
        "http-proxy": "http://127.0.0.1:7890",
        "https-proxy": "http://127.0.0.1:7890",
        "no-proxy": "*.test.example.com,.example.org,127.0.0.0/8"
        }
    }
  4. 使用 Dockerctl 重启 Docker 服务

    shell
    dockerctl show-config
    dockerctl restart
  5. 拉取 DockerHub 镜像进行验证。

    shell
    docker pull jlesage/firefox

常见问题

如果设置了 Shell Proxy,还需要为 Pip 等工具单独设置代理吗?

看情况。

  • 要看当前使用的工具是否会识别并使用(respect) Shell Proxy。
  • 推荐查询工具文档,用工具自身支持的方式设置 Proxy。

其他参考资源