[Bug 866010] New: df does not show all mounts
https://bugzilla.novell.com/show_bug.cgi?id=866010 https://bugzilla.novell.com/show_bug.cgi?id=866010#c0 Summary: df does not show all mounts Classification: openSUSE Product: openSUSE 13.1 Version: Final Platform: x86-64 OS/Version: openSUSE 13.1 Status: NEW Severity: Normal Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: michael.kohnen@bayer.com QAContact: qa-bugs@suse.de Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:27.0) Gecko/20100101 Firefox/27.0 in /etc/fstab I have the local and network filesystems: /dev/disk/by-id/ata-ST1000DM003-1CH162_S1DBE6SN-part1 / ext4 acl,user_xattr 1 1 /dev/disk/by-id/ata-ST1000DM003-1CH162_S1DBE6SN-part2 swap swap defaults 0 0 /dev/disk/by-id/ata-ST1000DM003-1CH162_S1DBE6SN-part3 /local_data ext4 acl,user_xattr 1 2 10.248.18.151:/home /storage/home nfs rw,tcp,rsize=32768,wsize=32768,nfsvers=3,hard,bg,intr,suid 0 0 10.248.18.151:/prg /usr/prg nfs rw,tcp,rsize=32768,wsize=32768,nfsvers=3,hard,bg,intr,suid 0 0 10.248.18.151:/Databases /storage/Databases nfs rw,tcp,rsize=32768,wsize=32768,nfsvers=3,hard,bg,intr,suid 0 0 'mount' shows that the nfs-filesystems are mounted: .. 10.248.18.151:/prg on /usr/prg type nfs (rw,relatime,vers=3,rsize=32768,wsize=32768,namlen=255,hard,nolock,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.248.18.151,mountvers=3,mountport=836,mountproto=tcp,local_lock=all,addr=10.248.18.151) rpc_pipefs on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw,relatime) 10.248.18.151:/home on /storage/home type nfs (rw,relatime,vers=3,rsize=32768,wsize=32768,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.248.18.151,mountvers=3,mountport=836,mountproto=tcp,local_lock=none,addr=10.248.18.151) 10.248.18.151:/Databases on /storage/Databases type nfs (rw,relatime,vers=3,rsize=32768,wsize=32768,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.248.18.151,mountvers=3,mountport=836,mountproto=tcp,local_lock=none,addr=10.248.18.151) none on /var/lib/ntp/proc type proc (ro,nosuid,nodev,relatime) but 'df' does not show all mounts: Dateisystem 1K-blocks Benutzt Verfügbar Verw% Eingehängt auf /dev/sda1 51473020 6294584 42540716 13% / devtmpfs 8188172 32 8188140 1% /dev tmpfs 8208660 0 8208660 0% /dev/shm tmpfs 8208660 6140 8202520 1% /run tmpfs 8208660 0 8208660 0% /sys/fs/cgroup tmpfs 8208660 6140 8202520 1% /var/lock tmpfs 8208660 6140 8202520 1% /var/run /dev/sda3 884926788 73796 839878196 1% /local_data 10.248.18.151:/prg 1074218752 408591424 665627328 39% /usr/prg 10.248.18.151:/home 512000 1024 510976 1% /storage/home in this case "/storage/Databases" is missing The filesystem itself is accessible. Reproducible: Always Steps to Reproduce: 1. 2. 3. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=866010 https://bugzilla.novell.com/show_bug.cgi?id=866010#c zhang jiajun <jzhang@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jzhang@suse.com AssignedTo|bnc-team-screening@forge.pr |pth@suse.com |ovo.novell.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=866010 https://bugzilla.novell.com/show_bug.cgi?id=866010#c1 Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pth@suse.com AssignedTo|pth@suse.com |mail@bernhard-voelker.de --- Comment #1 from Philipp Thomas <pth@suse.com> 2014-03-20 11:11:01 CET --- Berny, can you have a look at this? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=866010 https://bugzilla.novell.com/show_bug.cgi?id=866010#c2 Bernhard Voelker <mail@bernhard-voelker.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |INVALID --- Comment #2 from Bernhard Voelker <mail@bernhard-voelker.de> 2014-03-20 12:12:20 UTC --- The data on 10.248.18.151:/home seems to reside on the same file system as 10.248.18.151:/Databases. You can verify this via stat(1) - the output should look something like this: $ stat -c 'device: %d, mount point: %m' /storage/{home,Databases} /usr/prg device: 33, mount point: /storage/home device: 33, mount point: /storage/Databases device: 34, mount point: /usr/prg df(1) only shows information about file systems, not about mount points. It therefore filters out such duplicate entries (as well as pseudo file systems) per default. One reason is that the summary printed with the --total option would return wrong results. If you like to see the file system statistics of /storage/Databases, too, then either mention it directly on the command line, or use "df -a" to avoid filtering of duplicate file systems. Please note that there are still some bugs known upstreams regarding that filtering in df(1) for corner cases like e.g. over-mounting on the same mount point. However, there is quite strong consensus that nothing will change regarding your case. As there is nothing we can do about it, I'm closing this bug. Feel free to comment if you need further clarification. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 --- Comment #3 from Bernhard Wiedemann <bwiedemann@suse.com> --- This is an autogenerated message for OBS integration: This bug (866010) was mentioned in https://build.opensuse.org/request/show/282001 13.2 / coreutils-testsuite+coreutils -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| |obs:running:3438:low -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 --- Comment #4 from Swamp Workflow Management <swamp@suse.de> --- openSUSE-RU-2015:0176-1: An update that has two recommended fixes can now be installed. Category: recommended (low) Bug References: 866010,901905 CVE References: Sources used: openSUSE 13.2 (src): coreutils-8.23-2.6.1, coreutils-testsuite-8.23-2.6.2 -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|obs:running:3438:low | -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 SMASH SMASH <smash_bz@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| | maint:planned:update -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| maint:planned:update |maint:planned:update | |ibs:running:669:moderate -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |maint:planned:update |ibs:running:669:moderate | -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 http://bugzilla.novell.com/show_bug.cgi?id=866010#c5 --- Comment #5 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2015:1637-1: An update that solves two vulnerabilities and has 5 fixes is now available. Category: security (moderate) Bug References: 866010,901905,907290,921559,928749,930565,933396 CVE References: CVE-2015-4041,CVE-2015-4042 Sources used: SUSE Linux Enterprise Server 12 (src): coreutils-8.22-9.1 SUSE Linux Enterprise Desktop 12 (src): coreutils-8.22-9.1 -- You are receiving this mail because: You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=866010 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update | -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com