mumu233 发布的文章

折腾一台 IPv6 only 的服务器好久,用 Pure-FTPd 搭了 FTP 却一直连接不上,搜遍全网都没有解决方案,问 aapanel 论坛也无人知晓。一番研究后发现是 Pure-FTPd 未监听 IPv6 地址导致的。

修改 Pure-FTPd 配置文件的第 213 行为 Bind ::,端口号 以使其监听 IPv6 ,顺利连接。

/etc/systemd/system 下新建 rclone.service ,加入以下内容

[Unit]
Description=Rclone
After=network-online.target

[Service]
Type=simple
ExecStart=/usr/bin/rclone mount OD:/ /OD --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --dir-cache-time 10m --vfs-read-chunk-size 32M --vfs-read-chunk-size-limit 2G --vfs-cache-mode writes --onedrive-chunk-size 100M
Restart=on-abort
User=root

[Install]
WantedBy=default.target