centos使用rclone

centos使用rclone

原文: centos使用rclone - shining博客

  1. 安装rclone

    curl https://rclone.org/install.sh | sudo bash
    
  2. 配置rclone

    rclone config
    
  3. 查看配置是否正确

    rclone lsd openlist:/
    
  4. 创建挂载目录

    mkdir /root/openlist
    
  5. 安装软件包

    yum -y install fuse3
    
  6. 挂载

    rclone mount openlist: /root/openlist --copy-links --allow-other --allow-non-empty --umask 000 --daemon
    
  7. 卸载

    fusermount -qzu /rclone_root
    
posted @ 2026-03-23 21:12  shiningonly  阅读(0)  评论(0)    收藏  举报