mount

Table of Contents

1. Usage

1.1. Disk devices

  • For disk devices, the type of FS is automatically detected by the mount command, so specifying a type is not necessary

1.2. Non-disk devices

  • Because these(eg. procfs, sysfs, debugfs, NFS etc) need special FS, we need to specify the filesystem
mount -t [type] [device_file] [directory]
mount -t proc proc /proc
mount -t sysfs sysfs /sys

Created: 2024-07-16 Tue 16:44

Validate