Why does a LVM mapped partition add disk usage to root partition?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
Situation
On a server there are separate LVs with their respective mount points for /
, /var
, and /home
.
LV sizes:/
= 38G ("used": 34G)/var
= 184G (used: 25G)/home
= 680G (used: 270G)
What puzzles me is that df -h
shows Use%
of 94% for /
, corresponding to 34G out of 37G. The real total disk-usage on /
is ~5G as I could verify via
~# du -ch --max-depth=1 --exclude=/var --exclude=/home /
4,0K /selinux
4,0K /dev
7,2M /bin
16K /lost+found
93M /boot
8,0K /mnt
7,6M /sbin
6,0M /run
0 /proc
76K /build
0 /sys
432M /etc
643M /lib
4,0K /lib64
11M /root
3,1G /usr
16K /nonexistent
20K /tmp
20K /srv
346M /opt
44K /media
4,6G /
4,6G total
I have checked for all the common known locations of where possibly large files could be hiding, but there is nothing, even checked for the inodes et cetera.
So I am getting suspicious that mounting the LV of /var
adds to the disk-usage of /
. Is this correct? And if so, what did I do wrong in the LV mapping and how to solve this issue? Then, what is the point of having separate PVs in the first place?
server partitioning mount disk-usage lvm
add a comment |Â
up vote
0
down vote
favorite
Situation
On a server there are separate LVs with their respective mount points for /
, /var
, and /home
.
LV sizes:/
= 38G ("used": 34G)/var
= 184G (used: 25G)/home
= 680G (used: 270G)
What puzzles me is that df -h
shows Use%
of 94% for /
, corresponding to 34G out of 37G. The real total disk-usage on /
is ~5G as I could verify via
~# du -ch --max-depth=1 --exclude=/var --exclude=/home /
4,0K /selinux
4,0K /dev
7,2M /bin
16K /lost+found
93M /boot
8,0K /mnt
7,6M /sbin
6,0M /run
0 /proc
76K /build
0 /sys
432M /etc
643M /lib
4,0K /lib64
11M /root
3,1G /usr
16K /nonexistent
20K /tmp
20K /srv
346M /opt
44K /media
4,6G /
4,6G total
I have checked for all the common known locations of where possibly large files could be hiding, but there is nothing, even checked for the inodes et cetera.
So I am getting suspicious that mounting the LV of /var
adds to the disk-usage of /
. Is this correct? And if so, what did I do wrong in the LV mapping and how to solve this issue? Then, what is the point of having separate PVs in the first place?
server partitioning mount disk-usage lvm
1
Drop to single user mode. Unmount/var
. See if there's another/var
underneath it.
â steeldriver
Jan 27 at 20:12
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Situation
On a server there are separate LVs with their respective mount points for /
, /var
, and /home
.
LV sizes:/
= 38G ("used": 34G)/var
= 184G (used: 25G)/home
= 680G (used: 270G)
What puzzles me is that df -h
shows Use%
of 94% for /
, corresponding to 34G out of 37G. The real total disk-usage on /
is ~5G as I could verify via
~# du -ch --max-depth=1 --exclude=/var --exclude=/home /
4,0K /selinux
4,0K /dev
7,2M /bin
16K /lost+found
93M /boot
8,0K /mnt
7,6M /sbin
6,0M /run
0 /proc
76K /build
0 /sys
432M /etc
643M /lib
4,0K /lib64
11M /root
3,1G /usr
16K /nonexistent
20K /tmp
20K /srv
346M /opt
44K /media
4,6G /
4,6G total
I have checked for all the common known locations of where possibly large files could be hiding, but there is nothing, even checked for the inodes et cetera.
So I am getting suspicious that mounting the LV of /var
adds to the disk-usage of /
. Is this correct? And if so, what did I do wrong in the LV mapping and how to solve this issue? Then, what is the point of having separate PVs in the first place?
server partitioning mount disk-usage lvm
Situation
On a server there are separate LVs with their respective mount points for /
, /var
, and /home
.
LV sizes:/
= 38G ("used": 34G)/var
= 184G (used: 25G)/home
= 680G (used: 270G)
What puzzles me is that df -h
shows Use%
of 94% for /
, corresponding to 34G out of 37G. The real total disk-usage on /
is ~5G as I could verify via
~# du -ch --max-depth=1 --exclude=/var --exclude=/home /
4,0K /selinux
4,0K /dev
7,2M /bin
16K /lost+found
93M /boot
8,0K /mnt
7,6M /sbin
6,0M /run
0 /proc
76K /build
0 /sys
432M /etc
643M /lib
4,0K /lib64
11M /root
3,1G /usr
16K /nonexistent
20K /tmp
20K /srv
346M /opt
44K /media
4,6G /
4,6G total
I have checked for all the common known locations of where possibly large files could be hiding, but there is nothing, even checked for the inodes et cetera.
So I am getting suspicious that mounting the LV of /var
adds to the disk-usage of /
. Is this correct? And if so, what did I do wrong in the LV mapping and how to solve this issue? Then, what is the point of having separate PVs in the first place?
server partitioning mount disk-usage lvm
server partitioning mount disk-usage lvm
asked Jan 27 at 19:39
leonis_csem
193115
193115
1
Drop to single user mode. Unmount/var
. See if there's another/var
underneath it.
â steeldriver
Jan 27 at 20:12
add a comment |Â
1
Drop to single user mode. Unmount/var
. See if there's another/var
underneath it.
â steeldriver
Jan 27 at 20:12
1
1
Drop to single user mode. Unmount
/var
. See if there's another /var
underneath it.â steeldriver
Jan 27 at 20:12
Drop to single user mode. Unmount
/var
. See if there's another /var
underneath it.â steeldriver
Jan 27 at 20:12
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1000485%2fwhy-does-a-lvm-mapped-partition-add-disk-usage-to-root-partition%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
Drop to single user mode. Unmount
/var
. See if there's another/var
underneath it.â steeldriver
Jan 27 at 20:12