In order to display all currently mounted filesystems, which of the following commands could be used? (Choose two.)
In order to display all currently mounted filesystems, which of the following commands could be used? (Choose two.)
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.
A & D are OK df - mount - /proc/mounts - /proc/self/mounts
A and D are correct https://www.cyberciti.biz/faq/linux-command-list-mounted-devices-in-terminal/
D is ok
its correct the options A and D, show the same information about partitions mounted
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:
Says bard and gpt
A. cat /proc/self/mounts and D. mount