Subcommands (4)
Mount SMB (Server Message Block) or CIFS (Common Internet File System) shares. Note: You can also do the same thing by passing the `-t cifs` option to `mount`.
Mount Discoverable Disk Images. See also: `systemd-dissect`.
This command is an alias of `mount.cifs`. Note: For SMB versions before 3 you have to use `mount.cifs` instead.
Mount or unmount SteamOS filesystem partitions.
Options (5)
-m, --mkdirbooleanCreate a specific directory if it does not exist and mount a device to it
mount {{[-m|--mkdir]}} {{path/to/device_file}} {{path/to/target_directory}}-o, --optionsbooleanMount a device to a directory for a specific user
mount {{[-o|--options]}} uid={{user_id}},gid={{group_id}} {{path/to/device_file}} {{path/to/target_directory}}-t, --typesbooleanMount a CD-ROM device (with the filetype ISO9660) to `/cdrom` (readonly)
mount {{[-t|--types]}} iso9660 {{[-o|--options]}} ro {{/dev/cdrom}} /cdrom-a, --allbooleanMount all the filesystems defined in `/etc/fstab`
mount {{[-a|--all]}}-B, --bindbooleanMount a directory to another directory
mount {{[-B|--bind]}} {{path/to/old_directory}} {{path/to/new_directory}}Examples (8)
Show all mounted filesystems
Mount a device to a directory
mount path/to/device_file path/to/target_directoryCreate a specific directory if it does not exist and mount a device to it
mount [-m|--mkdir] path/to/device_file path/to/target_directoryMount a device to a directory for a specific user
mount [-o|--options] uid=user_id,gid=group_id path/to/device_file path/to/target_directoryMount a CD-ROM device (with the filetype ISO9660) to `/cdrom` (readonly)
mount [-t|--types] iso9660 [-o|--options] ro /dev/cdrom /cdromMount all the filesystems defined in `/etc/fstab`
mount [-a|--all]Mount a specific filesystem described in `/etc/fstab` (e.g. `/dev/sda1 /path/to/mount_point ext2 defaults 0 2`)
mount path/to/mount_pointMount a directory to another directory
mount [-B|--bind] path/to/old_directory path/to/new_directory