我在 Linux 系统中配置了一个 box.com 帐户,以便用户可以将其挂载到某个挂载点并访问其内容。它在 fstab 中声明为:
https://www.box.com/dav /media/box davfs rw,user,noauto 0 0
挂载该帐户的用户拥有以下内容的 ~/.davfs2/secrets:
/media/box <username> <password>
用户可以毫无问题地挂载并列出已挂载的文件夹,但在尝试将文件从 box.com 复制到本地计算机时,它给我们带来了一些问题。我尝试了以下操作,结果如下:
cat /media/box/example_file.txt => Will output the contents of the file
cp /media/box/example_file.txt /tmp => will give the I/O error
wc -l /media/box/example_file.txt => will give the I/O error as well
touch asd && cp asd /media/box && ls /media/box => lists asd in /media/box
我尝试过设置
use_locks 0
在 /etc/davfs2/davfs2.conf 中但它并不能解决问题。
有什么线索可能阻止系统正确访问 box.com 挂载点?