Linux下配置FetchLinux步骤如下:
安装依赖包:
sudo apt update && sudo apt install git wget curl openssh-serversudo yum install -y git wget curl openssh-server克隆仓库:
git clone https://github.com/fetchlinux/fetchlinux.git /opt/fetchlinux
配置文件:
cd /opt/fetchlinux && sudo cp fetchlinux.conf.example fetchlinux.confsudo nano fetchlinux.confREPOSITORY_URL="http://your-mirror-url/fetchlinux"
MIRROR_NAME="MyMirror"
UPDATE_FREQUENCY="daily"
创建用户和组:
sudo groupadd fetchlinux && sudo useradd -r -g fetchlinux fetchlinux
设置权限:
sudo chown -R fetchlinux:fetchlinux /opt/fetchlinux
启动服务:
sudo systemctl enable fetchlinux && sudo systemctl start fetchlinux
可选:配置自动更新
确保服务开机自启,或手动触发更新:sudo fetchlinux --update
说明:部分步骤可能因版本更新略有差异,建议参考官方文档获取最新信息。