Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 542 Bytes

mount.md

File metadata and controls

18 lines (12 loc) · 542 Bytes

mount

Mounts a file_system.

mount -t fstype source target dir

  • fstype must be a supported file system type, e.g. xv6fs
  • source must be a path to a block device
  • target dir must be a directory and will be the mount point

Returns:

  • 0 on success and sets errno Syscall: mount

Up: user space

System: mount | umount | shutdown