Linux_FoundationLinux_Foundation
LFCS · Question #329
LFCS Question #329: Real Exam Question with Answer & Explanation
The correct answer is E: cifsmount //server/share /mnt -o username=user. The cifsmount command is not a standard Linux utility for mounting shared filesystems; other commands like mount.cifs, mount -t cifs, mount -t smbfs, and smbmount are valid.
Submitted by thandi_sa· Apr 18, 2026Storage Management
Question
Which command CANNOT be used to mount a shared filesystem in your Linux environment?
Options
- Amount.cifs //server/share /mnt -o user=user
- Bmount -t cifs //server/share /mnt -o user=user
- Cmount -t smbfs //server/share /mnt -o username=user
- Dsmbmount //server/share /mnt -o username=user
- Ecifsmount //server/share /mnt -o username=user
Explanation
The cifsmount command is not a standard Linux utility for mounting shared filesystems; other commands like mount.cifs, mount -t cifs, mount -t smbfs, and smbmount are valid.
Common mistakes.
- A. The
mount.cifscommand is a dedicated helper utility for mounting CIFS (SMB) shares and is part of thecifs-utilspackage. - B. The
mount -t cifscommand uses the genericmountcommand with the-toption to specify the CIFS filesystem type, which is a standard way to mount CIFS shares. - C. The
mount -t smbfscommand uses the genericmountcommand with the-toption to specify thesmbfsfilesystem type, which is an older but still valid way (often an alias to cifs) to mount SMB/CIFS shares. - D. The
smbmountcommand was an older, dedicated utility for mounting SMB shares and is still present or aliased in some systems for compatibility, making it a valid although potentially deprecated option.
Concept tested. Linux commands for mounting SMB/CIFS shares
Reference. https://www.samba.org/samba/docs/current/manpages/mount.cifs.8.html
Topics
#CIFS#SMB#Network Filesystems#Mounting
Community Discussion
No community discussion yet for this question.