How do I mount a file system in Linux?

Answer:
Use the mount command

mount /dev/sda1 /media/<destination dir>

you may have to specify a file system in some cases. Else the command will recognize it by default

mount -t <FS TYPE> /dev/sda1 /media/<destination dir>
First answer by Ganeshjadhav. Last edit by Ganeshjadhav. Contributor trust: 1 [recommend contributor recommended]. Question popularity: 1 [recommend question].