我想在树莓PI上设置一个下载器下载到我的NAS(MyBookLive),因为我没有足够的空间在PI上。我不想将下载程序安装到MyBookLive中,因为它已经耗尽了CPU和MEM。
1。我已经通过FTP将NAS安装到PI,并附上了link后可以找到的说明。基本上我做了:
curlftpfs -o allow_other ftp-user:ftp-pass@my-ftp-location.local /mnt/entresol/Public
我可以来回复制文件/mnt/entresol/Public
:
cp README.md /mnt/antresol/Public/temp/
2. 我已安装aria2
,我可以将文件下载到PI目录:
aria2c -d ~/aria2c/ ~/aria2c.log https://github.com/ziahamza/webui-aria2/blob/master/README.md
但是当我尝试下载到FTP安装的目录时:
aria2c -d /mnt/antresol/Public/ ~/aria2c.log https://github.com/ziahamza/webui-aria2/blob/master/README.md
我收到以下错误:
12/12 22:32:46 [ERROR] CUID#6 - Download aborted. URI=https://github.com/ziahamza/webui-aria2/blob/master/README.md
Exception: [AbstractCommand.cc:350] errorCode=16 URI=https://github.com/ziahamza/webui-aria2/blob/master/README.md
-> [AbstractDiskWriter.cc:222] errNum=95 errorCode=16 Failed to open the file /mnt/antresol/Public/temp/README.md, cause: Operation not supported
有什么想法吗?