mount
Linux · System · available in the simulator
What it does
Mount a filesystem or storage device.
Syntax
mount [-t tipo] [-o opciones] dispositivo punto_de_montaje
Options and parameters
-t TIPOfilesystem type
-o OPCmount options (ro, rw, remount...)
-aMount all filesystems mentioned in /etc/fstab.
-tSpecify the filesystem type.
sudo mount -t ext4 /dev/sdb1 /mnt-oMount options such as ro, rw, or noexec.
sudo mount -o ro /dev/sdb1 /mnt-rMount the filesystem read-only.
Usage examples
sudo mount /dev/sdb1 /mntmountsudo mount -t ntfs /dev/sdb1 /mntmount -t ext4 /dev/sdb1 /mntsudo mount -t ext4 /dev/sdb1 /mntsudo mount -o ro /dev/sdb1 /mnt