novos的nextcloud网盘购买链接:https://billing.novos.be/store/novos-brick
一、最简单的挂载支持WebDav的网盘
1、安装davfs2
Ubuntu/Debian下
apt-get install davfs2CentOS下
yum install davfs22、创建目录并挂载
mkdir /novos mount -t davfs https://brick.novos.be/remote.php/dav/files/账号/ /novos输入账号、密码即可。
二、进阶用法
1、创建一个用户,用于davfs2
usermod -aG davfs2 用户名2、创建需要挂载的目录和个人配置文件目录
mkdir ~/novos mkdir ~/.davfs2复制配置文件
cp /etc/davfs2/secrets ~/.davfs2/secrets3、设置用户权限(改为自己的用户名)
chown : ~/.davfs2/secrets chmod 600 ~/.davfs2/secrets编辑 ~/.davfs2/secrets ,输入WebDav网盘信息,如:
https://brick.novos.be/remote.php/dav/files/账号/ 用户名 密码建议在 /etc/davfs2/secrets 也添加上
4、添加mount信息到 /etc/fstab
https://brick.novos.be/remote.php/dav/files/账号/ /root/novos davfs user,rw,auto 0 05、使用
添加
mount ~/novos卸载
umount ~/novos主要参考:https://docs.nextcloud.com/server/20/user_manual/en/files/access_webdav.html#creating-webdav-mounts-on-the-linux-command-line
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。