We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67c5f56 commit 8f28941Copy full SHA for 8f28941
command/mount.md
@@ -7,6 +7,8 @@ mount
7
8
**mount命令** Linux mount命令是经常会使用到的命令,它用于挂载Linux系统外的文件。
9
10
+如果通过webdav协议挂载网络磁盘,需要运行指令`apt install davfs2`安装必要的组件
11
+
12
### 语法
13
14
```shell
@@ -46,7 +48,7 @@ mount [-fnrsvw] [-t vfstype] [-o options] device dir
46
48
-o loop=:使用 loop 模式用来将一个档案当成硬盘分割挂上系统。
47
49
```
50
-### 实例
51
+### 实例1
52
53
将 `/dev/hda1` 挂在 `/mnt` 之下。
54
@@ -66,6 +68,14 @@ mount [-fnrsvw] [-t vfstype] [-o options] device dir
66
68
#mount -o loop /tmp/image.iso /mnt/cdrom
67
69
70
71
+### 实例2
72
+通过 webdav 协议挂载网络硬盘
73
74
+将`https://your.webdav.link.here`的网络存储以网络磁盘的形式挂载到系统路径`/path/to/mount`
75
76
+```shell
77
+mount -t davfs https://your.webdav.link.here /path/to/mount
78
+```
79
80
81
0 commit comments