diff options
author | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2021-03-14 12:08:55 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2021-03-14 12:08:55 +0000 |
commit | a9a9e661059557e5bb6ab3e756e007b8e5d231ce (patch) | |
tree | b4fba4f5b8c4f985ade395b460936a7447e8d499 /documentation/content/zh-tw/books/handbook/filesystems/_index.adoc | |
parent | 55c95407aa64d98cdd8edf18990d89e5b86db96c (diff) |
Diffstat (limited to 'documentation/content/zh-tw/books/handbook/filesystems/_index.adoc')
-rw-r--r-- | documentation/content/zh-tw/books/handbook/filesystems/_index.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/content/zh-tw/books/handbook/filesystems/_index.adoc b/documentation/content/zh-tw/books/handbook/filesystems/_index.adoc index 7973f47622..f6cd8f9cbc 100644 --- a/documentation/content/zh-tw/books/handbook/filesystems/_index.adoc +++ b/documentation/content/zh-tw/books/handbook/filesystems/_index.adoc @@ -85,14 +85,14 @@ This driver can also be used to access ext3 and ext4 file systems. The man:ext2f To access an ext file system, first load the kernel loadable module: -[source,bash] +[source,shell] .... # kldload ext2fs .... Then, mount the ext volume by specifying its FreeBSD partition name and an existing mount point. This example mounts [.filename]#/dev/ad1s1# on [.filename]#/mnt#: -[source,bash] +[source,shell] .... # mount -t ext2fs /dev/ad1s1 /mnt .... |