Multiple choice technology operating systems

What would be the correct syntax to mount the share 'data' from Windows machine 'jupiter'?

  1. mntsmb -s //jupiter/data /mnt/Data

  2. mount -t smbfs /mnt/Data //jupiter/data

  3. mount -t smbfs //jupiter/data /mnt/Data

  4. smbfs -mount //jupiter/data /mnt/Data

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The correct syntax for mounting SMB/CIFS shares is 'mount -t smbfs //server/share /mnt/point'. Option A uses the non-existent mntsmb command, Option B has parameter order backwards (source before destination), and Option D invents a smbfs-mount command. The -t flag specifies the filesystem type.