List all mounts in Linux

user2693017 picture user2693017 · Feb 15, 2014 · Viewed 89.2k times · Source

I know mount and df lists all mounts. But I would like to list the mounts which failed to establish on boot, too. How do I get them?

Answer

arkascha picture arkascha · Feb 15, 2014

There is no such command, since there is no list of "attempted mounts". You can compare the current mount list (/etc/mtab) to the list of shares registered to be mounted though (/etc/fstab).

Alternatively you could try to grep through the system log files to find failed mount attempts.