How can I find out about "rootfs"

nwaltham

Running Debian 7; when I execute a

cat /etc/mtab

I can see all sorts of useful information about the filesystems that are mounted, such as the filesystem and options used to mount then; however for the rootfs I see only:

rootfs / rootfs rw 0 0

How can I know more about the rootfs; which physical device/partition was used, filesystem, mount options etc?

On my system /etc/mtab is in fact a symbolic link to /proc/mounts

lrwxrwxrwx 1 root root 12 May  9  2013 /etc/mtab -> /proc/mounts
phoops

I think you should be looking into /proc/mounts:

$ cat /proc/mounts

That file has exact device, filesystem and other mount options used to mount different filesystems on your OS. The format is same as of /etc/fstab.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I find out information about a service?

From Dev

How can I find out what Wifi networks my iPhone knows about?

From Dev

How can I find out more about this device in my wifi network?

From Dev

How can I find out more about the history of GNU coreutils commands?

From Dev

What is dateFilter and where can I find out more about it?

From Dev

What information can I find out about an eventpoll on a running thread?

From Dev

How can I find out which index is out of range?

From Dev

How can I find out what distro I am running?

From Dev

How can I find out what plugins I installed for Nautilus?

From Dev

How can I find out what version of cgroups I have?

From Dev

How can I find out how much memory a UIImageView is using?

From Dev

How can I find out how jQuery serializes individual objects?

From Dev

What can I find out about an embedded image in my received e-mail message?

From Dev

How can I find out which parameters a route has in php

From Dev

Android - How can I find out where the current thread was created?

From Dev

How can I find out why a Django database .save() failed?

From Dev

How can I find out if an SKTexture is the placeholder image

From Dev

How can I find out if a WebAudio oscillator is silent?

From Dev

How can I find out the size of each column in a Redshift table?

From Dev

How can i find out size of RethinkDB table?

From Dev

How can I find out the name of a variable inside a function?

From Dev

How can I find out the array position of an object by searching the array?

From Dev

How can I easily find out if a Python class accepts the with keyword?

From Dev

How can I find out the RGB color of my object in storyboard

From Dev

How can I find out which method of a derived class is not implemented?

From Dev

How can I find out hidden versions of dependencies and plugins in Maven?

From Dev

How can I find out the size of the group a given element exists in?

From Dev

How can I find out what this ffmpeg error code means?

From Dev

How can I find out where the gvm installed groovy?

Related Related

  1. 1

    How can I find out information about a service?

  2. 2

    How can I find out what Wifi networks my iPhone knows about?

  3. 3

    How can I find out more about this device in my wifi network?

  4. 4

    How can I find out more about the history of GNU coreutils commands?

  5. 5

    What is dateFilter and where can I find out more about it?

  6. 6

    What information can I find out about an eventpoll on a running thread?

  7. 7

    How can I find out which index is out of range?

  8. 8

    How can I find out what distro I am running?

  9. 9

    How can I find out what plugins I installed for Nautilus?

  10. 10

    How can I find out what version of cgroups I have?

  11. 11

    How can I find out how much memory a UIImageView is using?

  12. 12

    How can I find out how jQuery serializes individual objects?

  13. 13

    What can I find out about an embedded image in my received e-mail message?

  14. 14

    How can I find out which parameters a route has in php

  15. 15

    Android - How can I find out where the current thread was created?

  16. 16

    How can I find out why a Django database .save() failed?

  17. 17

    How can I find out if an SKTexture is the placeholder image

  18. 18

    How can I find out if a WebAudio oscillator is silent?

  19. 19

    How can I find out the size of each column in a Redshift table?

  20. 20

    How can i find out size of RethinkDB table?

  21. 21

    How can I find out the name of a variable inside a function?

  22. 22

    How can I find out the array position of an object by searching the array?

  23. 23

    How can I easily find out if a Python class accepts the with keyword?

  24. 24

    How can I find out the RGB color of my object in storyboard

  25. 25

    How can I find out which method of a derived class is not implemented?

  26. 26

    How can I find out hidden versions of dependencies and plugins in Maven?

  27. 27

    How can I find out the size of the group a given element exists in?

  28. 28

    How can I find out what this ffmpeg error code means?

  29. 29

    How can I find out where the gvm installed groovy?

HotTag

Archive