centos使用rclone

centos使用rclone

  1. 安装rclone

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

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

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

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

    1
    yum -y install fuse3
  6. 挂载

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

    1
    fusermount -qzu /rclone_root