101-500 Exam QuestionsBrowse all questions from this exam

101-500 Exam - Question 10


In order to display all currently mounted filesystems, which of the following commands could be used? (Choose two.)

Show Answer
Correct Answer: AD

To display all currently mounted filesystems, the commands 'cat /proc/self/mounts' and 'mount' can be used. The file '/proc/self/mounts' contains detailed information about mounted filesystems and can be viewed using the 'cat' command. The 'mount' command, when used without arguments, lists all mounted filesystems. Other options either do not provide information about mounted filesystems or do not exist.

Discussion

6 comments
Sign in to comment
McLabaOptions: AD
Apr 13, 2021

A & D are OK df - mount - /proc/mounts - /proc/self/mounts

richtaOptions: AD
Jan 29, 2021

A and D are correct https://www.cyberciti.biz/faq/linux-command-list-mounted-devices-in-terminal/

techalik
Dec 2, 2020

D is ok

jorgearmijoOptions: AD
Feb 10, 2023

its correct the options A and D, show the same information about partitions mounted

slacked4222Options: AD
Nov 27, 2023

The correct answers are A. cat /proc/self/mounts and D. mount. Option A: cat /proc/self/mounts The /proc/self/mounts file contains information about all of the filesystems that are currently mounted on the system. This file is a text file that can be read using the cat command. Option D: mount The mount command can be used to list all of the filesystems that are currently mounted on the system. The mount command without any arguments will display a list of all currently mounted filesystems. The other options are incorrect:

slacked4222
Nov 27, 2023

Says bard and gpt

NinymoOptions: AD
Mar 24, 2024

A. cat /proc/self/mounts and D. mount