Representation of file systems

1. Mounting

      Example:   consider the following mount command:
                    $ mount -t iso9660 -o ro /dev/cdrom  /mnt/cdrom

        The mount command tells kernel three pieces of information:
                1) the name of the file system
                2) the physical block device that contains the file system
                3) where in the existing file system topology the new file system is to be mounted

        What happens with mounting?

[next]