diff --git a/工具/rclone.md b/工具/rclone.md index ff5654e..105b4fa 100644 --- a/工具/rclone.md +++ b/工具/rclone.md @@ -20,4 +20,41 @@ set https_proxy=socks5://127.0.0.1:10808 大概率是未使用最新版本的Rclone,使用`rclone selfupdate`进行升级。 ## VPS无法使用浏览器添加 -添加过程中注意参数配置,当出现选择时先N,根据提示在本地获取token \ No newline at end of file +添加过程中注意参数配置,当出现选择时先N,根据提示在本地获取token + +## 开机启动 +1. **创建 systemd 服务文件**:在 `/etc/systemd/system/` 目录下创建一个新的服务文件。例如: + `sudo nano /etc/systemd/system/rclone-mount.service` + 在服务文件中添加以下内容: +```ini + [Unit] + Description=Rclone Mount Service + After=network-online.target + + [Service] + Type=simple + User=your_username + ExecStart=/usr/bin/rclone mount remote: /mnt/remote \ + --allow-other \ + --daemon \ + --config /home/your_username/.config/rclone/rclone.conf + + ExecStop=/bin/fusermount -u /mnt/remote + Restart=always + + [Install] + WantedBy=multi-user.target +``` + +替换 `your_username` 为你的用户名,`remote:` 为你的 rclone 远程存储服务的配置名称,`/mnt/remote` 为你的挂载点。 + +2. **启动并启用服务**:使用以下命令启动服务并将其设置为在系统启动时自动运行: +```bash +sudo systemctl enable rclone-mount.service +sudo systemctl start rclone-mount.service +``` + +3. **验证服务是否运行**:你可以使用以下命令检查服务的状态: + `sudo systemctl status rclone-mount.service` + +如果服务正常运行,你就成功地在 CentOS 中自动挂载了 rclone 远程存储服务。 \ No newline at end of file