Move pages back into a "pages" folder

This commit is contained in:
rprieto
2014-03-04 23:28:29 +11:00
parent 0a4c0f0a37
commit f00bf64426
99 changed files with 0 additions and 0 deletions

23
pages/common/mount.md Normal file
View File

@@ -0,0 +1,23 @@
# mount
> Provides access to an entire filesystem in one directory.
- Show all mounted filesystems
`mount`
- Mount a device
`mount -t {{filesystem_type}} {{path_to_device_file}} {{directory_to_mount_to}}`
- Mount a CD-ROM device (with the filetype ISO9660) to /cdrom (readonly)
`mount -t {{iso9660}} -o ro {{/dev/cdrom}} {{/cdrom}}`
- Mount all the filesystem defined in /etc/fstab
`mount -a`
- Mount a specific filesystem described in /etc/fstab (e.g. "/dev/sda1 /my_drive ext2 defaults 0 2")
`mount {{/my_drive}}`