aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/zh-tw/books/handbook/filesystems/_index.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/content/zh-tw/books/handbook/filesystems/_index.adoc')
-rw-r--r--documentation/content/zh-tw/books/handbook/filesystems/_index.adoc4
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
....