海之星科技
HY-STAR

專業電源IC供應 ⇒ DC-DC 降壓轉換器, DC-DC 升壓轉換器,LED 驅動 IC,MOSFETs / IGBTs


 The Linux Newbie Guide  ⇒    Fundamentals     Advanced     Supplement   Command Index   ENG⇒中
All rights reserved, please indicate the source when citing
  

mount - Mounting Filesystems




A filesystem needs to be mounted using mount before it can be accessed. The most basic usage is mount [filesystem] [mount_point]. The designated directory where the filesystem is attached is referred to as the "mount point." Conventionally, mount points are often directories like "//media" or "/mnt".

Example:
# mount /dev/sdc /mnt ←Mount the filesystem from /dev/sdc to /mnt

Once a filesystem is mounted or unmounted, this action is synchronized and updated in the "/etc/mtab" file. Mounting scenarios can be quite diverse, such as mounting different filesystem types (e.g., ext3 or FAT) or mounting in read-only mode. As a result, the mount operation can become complex. For more examples, explanations, and options related to mount, please refer to the provided link.