Problem Statement
Which command is used to mount a filesystem to a directory?
Explanation
The mount command attaches a filesystem to a specific directory so its data becomes accessible.
Unmount it later using umount when no longer needed.
Code Solution
SolutionRead Only
sudo mount /dev/sdb1 /mnt/data
Practice Sets
This question appears in the following practice sets: