自建最简网盘webd - 可用于公开文件

date
Feb 3, 2022
slug
tip-webd-webdrive
status
Published
summary
小技巧 只有60-90KB
tags
tip
type
Post
notion image

Problem & Summary

    Soltion

      mkdir /data/webd && cd /data/webd
      # get newest link from https://webd.cf/
      wget https://gwgw.ga/webd/20220127/webd-20220127-linux-x86_64.tar.gz
      tar -xzvf webd-20220127-linux-x86_64.tar.gz
      cp -fv webd/webd .
      cp -fv webd/webd.conf .
      rm -rf webd-20220127-linux-x86_64.tar.gz webd
      # 数据放入wwwroot
      mkdir -p wwwroot/.Trash
      
      webd_user="adminwebd"
      webd_passwd="PassW0rd"
      webd_port=9212
      # 马上尝试
      /data/webd/webd -w /data/webd/wwwroot -u rlum:$webd_user:$webd_passwd -g rl -l $webd_port
      
      # 开启自动启动
      # 还可以不用配置文件而是用命令行参数方式添加开机脚本
      # 或者放在crontab -e中
      echo "/data/webd/webd -w /data/webd/wwwroot -u rlum:$webd_user:$webd_passwd -g rl -l $webd_port &>/dev/null" >> /etc/rc.local
      notion image
      notion image

      Screenshots

      notion image
       

      © Ying Bun 2021 - 2024