diff --git a/common/mount.md b/common/mount.md index d26d3743ba..69ee6620d7 100644 --- a/common/mount.md +++ b/common/mount.md @@ -8,11 +8,11 @@ - Mount a device -`mount -t filesystem_type path_to_device_file directory_to_mount_to` +`mount -t {{filesystem_type}} {{path_to_device_file}} {{directory_to_mount_to}}` - Mount a CD-ROM device (with the filetype ISO9660) to /cdrom -`mount -t iso9660 -o ro /dev/cdrom /cdrom` +`mount -t {{iso9660}} -o ro {{/dev/cdrom}} {{/cdrom}}` - Mount all the filesystem defined in /etc/fstab @@ -20,4 +20,4 @@ - Mount a specific filesystem described in /etc/fstab (e.g. "/dev/sda1 /my_drive ext2 defaults 0 2") -`mount /my_drive` +`mount {{/my_drive}}` diff --git a/common/umount.md b/common/umount.md index 2fe0877d21..abe4ad71dc 100644 --- a/common/umount.md +++ b/common/umount.md @@ -5,11 +5,11 @@ - Unmount a filesystem -`umount path_to_device_file` +`umount {{path_to_device_file}}` - OR -`umount path_to_mounted_directory` +`umount {{path_to_mounted_directory}}` - Unmount all mounted filesystems (dangerous!)