配置文件:config.yaml或者在您当前clash目录下的 config.yaml
里面放着clash的借口,控制参数,链接信息等
执行 cd && mkdir clash 在用户目录下创建 clash 文件夹。
下载适合的 Clash 二进制文件并解压重命名为 clash
一般都是64位服务器,所以下载 clash-linux-amd64.tar.gz 即可。
在终端 cd 到 Clash 二进制文件所在的目录,执行 wget -O config.yaml 配置文件的url 下载 Clash 配置文件
执行 ./clash -d . 即可启动 Clash,同时会自动下载Country.mmdb文件
如果是执行./clash则会到clash下读取config.yaml和Country.mmdb文件
手动执行export http_proxy=http://127.0.0.1:7890和export https_proxy=http://127.0.0.1:7891临时启动 HTTP 代理和 Socks5 代理。
4.临时关闭HTTP 代理和 Socks5 代理
usset http_proxy https_proxy
docker配置:
Create a systemd drop-in directory for the docker service:
$ sudo mkdir -p /etc/systemd/system/docker.service.d
Create a file named /etc/systemd/system/docker.service.d/http-proxy.conf that adds the HTTP_PROXY environment variable:
[Service] Environment="HTTP_PROXY=http://127.0.0.1:7890" Environment="HTTPS_PROXY=http://127.0.0.1:7890"
Flush changes and restart Docker
$ sudo systemctl daemon-reload $ sudo systemctl restart docker
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!