从命令行通过 https 挂载远程 https 卷

从命令行通过 https 挂载远程 https 卷

我的邮件提供商 (mail.com) 提供免费存储空间。我想在/etc/fstabLinux 上安装存储,以便存储随启动一起启动。

似乎可以在 Windows ( Map network drive) 和 MacOs ( Connect to server..)中安装该卷

应调用哪个命令来/etc/fstab自动挂载卷?存储地址是'https://storage-file-us.mail.com

答案1

  1. 安装davfs
  2. 将类似以下内容的内容放入 fstab 中:https://<URL> <path to mount> davfs _netdev,defaults 0 0
  3. 放到/etc/davfs2/secrets<path to mount> <webdav login> <webdav password>
  4. 尝试使用命令挂载:mount <path to mount>

相关内容