/usr/bin/landscape-sysinfo don't show all mounted disksWhy does MOTD and “landscape-sysinfo” show different disk usage to “df”?Colorize landscape-sysinfoDon't have sudo privileges in juju nodes when using LandscapeLandscape doesn't update all packages?

Difference between FieldIDs.EnableItemFallback and FieldIDs.EnableLanguageFallback

Inlining of a recursive function

Why didn't Thatcher give Hong Kong to Taiwan?

IEEE Registration Authority mac prefix

Case Studies and Real Problems for Teaching Optimization and Modelling

How to generate all 3×3 matrices with a,a,a,a,b,b,b,c,c?

How to encode a class with 24,000 categories?

Any possible ways to stop co-workers coming in really early?

Does the Scrying spell require you to have a clear path to the target in order to work?

Informed Consent Research Question

What is the difference between "wie" and "nach" in "Klingt wie/nach..."

'Hard work never hurt anyone' Why not 'hurts'?

One hour 10 min layover in Newark; International -> Domestic connection. Enough time to clear customs?

Curious about MoneyGram

About ratio test

Is it safe for a student to give negative feedback in student evaluations?

How do I stop making people jump at home and at work?

How to add some symbol (or just add newline) if the numbers in the text are not continuous

How could it be that the capo isn't changing the pitch?

Main differences between 5th edition Druid and 3.5 edition Druid

Can a country avoid prosecution for crimes against humanity by denying it happened?

Tiny image scraper for xkcd.com

Importance of electrolytic capacitor size

What did Boris Johnson mean when he said "extra 34 billion going into the NHS"



/usr/bin/landscape-sysinfo don't show all mounted disks


Why does MOTD and “landscape-sysinfo” show different disk usage to “df”?Colorize landscape-sysinfoDon't have sudo privileges in juju nodes when using LandscapeLandscape doesn't update all packages?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















When I log into my home server I'm created with the output of /usr/bin/landscape-sysinfo in the MOTD, however it's missing one of my installed disks and I can't work out why.



❯ /usr/bin/landscape-sysinfo 
System load: 0.07 Processes: 133
Usage of /: 50.9% of 11.65GB Users logged in: 1
Memory usage: 14% IP address for enp2s0: 192.168.1.10
Swap usage: 11%
=> /mnt/disk1 is using 98.9% of 2.69TB
=> /mnt/disk0 is using 94.7% of 1.97TB
=> /mnt/disk2 is using 94.8% of 2.69TB
=> /mnt/disk3 is using 94.7% of 586.69GB


Disk 4 is missing (df output trimmed for clarity)



❯ df -h 
Filesystem Size Used Avail Use% Mounted on
0:1:2:3:4 16T 8.6T 6.0T 60% /mnt/data
/dev/sdc1 2.7T 2.7T 1.6G 100% /mnt/disk1
/dev/sdd1 2.0T 1.9T 3.9G 100% /mnt/disk0
/dev/sde1 2.7T 2.6T 3.9G 100% /mnt/disk2
/dev/sdf1 587G 556G 1.6G 100% /mnt/disk3
/dev/sdb1 7.3T 979G 6.0T 14% /mnt/disk4


Any ideas why this is and how I can fix it?



Edit1: Mount Output



❯ mount | grep disk 
/dev/sdc1 on /mnt/disk1 type ext4 (rw,relatime,data=ordered)
/dev/sdd1 on /mnt/disk0 type ext4 (rw,relatime,data=ordered)
/dev/sde1 on /mnt/disk2 type ext4 (rw,relatime,data=ordered)
/dev/sdf1 on /mnt/disk3 type ext4 (rw,relatime,data=ordered)
/dev/sdb1 on /mnt/disk4 type ext4 (rw,relatime,data=ordered)









share|improve this question


























  • It could be a few things; it's likely just a filesystem sysinfo doesn't check. Could you provide the output of mount instead of df.

    – simpoir
    Apr 15 at 15:50











  • I've added the output of mount also, let me know if you need more info.

    – Kingamajick
    Apr 17 at 21:32











  • Looking back at it, the "=>" don't just list everything, but rather notes potential issues (disk with >85% use, zombie process, etc). Thus, disk4 has no reason be mentioned.

    – simpoir
    Apr 18 at 16:48

















0















When I log into my home server I'm created with the output of /usr/bin/landscape-sysinfo in the MOTD, however it's missing one of my installed disks and I can't work out why.



❯ /usr/bin/landscape-sysinfo 
System load: 0.07 Processes: 133
Usage of /: 50.9% of 11.65GB Users logged in: 1
Memory usage: 14% IP address for enp2s0: 192.168.1.10
Swap usage: 11%
=> /mnt/disk1 is using 98.9% of 2.69TB
=> /mnt/disk0 is using 94.7% of 1.97TB
=> /mnt/disk2 is using 94.8% of 2.69TB
=> /mnt/disk3 is using 94.7% of 586.69GB


Disk 4 is missing (df output trimmed for clarity)



❯ df -h 
Filesystem Size Used Avail Use% Mounted on
0:1:2:3:4 16T 8.6T 6.0T 60% /mnt/data
/dev/sdc1 2.7T 2.7T 1.6G 100% /mnt/disk1
/dev/sdd1 2.0T 1.9T 3.9G 100% /mnt/disk0
/dev/sde1 2.7T 2.6T 3.9G 100% /mnt/disk2
/dev/sdf1 587G 556G 1.6G 100% /mnt/disk3
/dev/sdb1 7.3T 979G 6.0T 14% /mnt/disk4


Any ideas why this is and how I can fix it?



Edit1: Mount Output



❯ mount | grep disk 
/dev/sdc1 on /mnt/disk1 type ext4 (rw,relatime,data=ordered)
/dev/sdd1 on /mnt/disk0 type ext4 (rw,relatime,data=ordered)
/dev/sde1 on /mnt/disk2 type ext4 (rw,relatime,data=ordered)
/dev/sdf1 on /mnt/disk3 type ext4 (rw,relatime,data=ordered)
/dev/sdb1 on /mnt/disk4 type ext4 (rw,relatime,data=ordered)









share|improve this question


























  • It could be a few things; it's likely just a filesystem sysinfo doesn't check. Could you provide the output of mount instead of df.

    – simpoir
    Apr 15 at 15:50











  • I've added the output of mount also, let me know if you need more info.

    – Kingamajick
    Apr 17 at 21:32











  • Looking back at it, the "=>" don't just list everything, but rather notes potential issues (disk with >85% use, zombie process, etc). Thus, disk4 has no reason be mentioned.

    – simpoir
    Apr 18 at 16:48













0












0








0








When I log into my home server I'm created with the output of /usr/bin/landscape-sysinfo in the MOTD, however it's missing one of my installed disks and I can't work out why.



❯ /usr/bin/landscape-sysinfo 
System load: 0.07 Processes: 133
Usage of /: 50.9% of 11.65GB Users logged in: 1
Memory usage: 14% IP address for enp2s0: 192.168.1.10
Swap usage: 11%
=> /mnt/disk1 is using 98.9% of 2.69TB
=> /mnt/disk0 is using 94.7% of 1.97TB
=> /mnt/disk2 is using 94.8% of 2.69TB
=> /mnt/disk3 is using 94.7% of 586.69GB


Disk 4 is missing (df output trimmed for clarity)



❯ df -h 
Filesystem Size Used Avail Use% Mounted on
0:1:2:3:4 16T 8.6T 6.0T 60% /mnt/data
/dev/sdc1 2.7T 2.7T 1.6G 100% /mnt/disk1
/dev/sdd1 2.0T 1.9T 3.9G 100% /mnt/disk0
/dev/sde1 2.7T 2.6T 3.9G 100% /mnt/disk2
/dev/sdf1 587G 556G 1.6G 100% /mnt/disk3
/dev/sdb1 7.3T 979G 6.0T 14% /mnt/disk4


Any ideas why this is and how I can fix it?



Edit1: Mount Output



❯ mount | grep disk 
/dev/sdc1 on /mnt/disk1 type ext4 (rw,relatime,data=ordered)
/dev/sdd1 on /mnt/disk0 type ext4 (rw,relatime,data=ordered)
/dev/sde1 on /mnt/disk2 type ext4 (rw,relatime,data=ordered)
/dev/sdf1 on /mnt/disk3 type ext4 (rw,relatime,data=ordered)
/dev/sdb1 on /mnt/disk4 type ext4 (rw,relatime,data=ordered)









share|improve this question
















When I log into my home server I'm created with the output of /usr/bin/landscape-sysinfo in the MOTD, however it's missing one of my installed disks and I can't work out why.



❯ /usr/bin/landscape-sysinfo 
System load: 0.07 Processes: 133
Usage of /: 50.9% of 11.65GB Users logged in: 1
Memory usage: 14% IP address for enp2s0: 192.168.1.10
Swap usage: 11%
=> /mnt/disk1 is using 98.9% of 2.69TB
=> /mnt/disk0 is using 94.7% of 1.97TB
=> /mnt/disk2 is using 94.8% of 2.69TB
=> /mnt/disk3 is using 94.7% of 586.69GB


Disk 4 is missing (df output trimmed for clarity)



❯ df -h 
Filesystem Size Used Avail Use% Mounted on
0:1:2:3:4 16T 8.6T 6.0T 60% /mnt/data
/dev/sdc1 2.7T 2.7T 1.6G 100% /mnt/disk1
/dev/sdd1 2.0T 1.9T 3.9G 100% /mnt/disk0
/dev/sde1 2.7T 2.6T 3.9G 100% /mnt/disk2
/dev/sdf1 587G 556G 1.6G 100% /mnt/disk3
/dev/sdb1 7.3T 979G 6.0T 14% /mnt/disk4


Any ideas why this is and how I can fix it?



Edit1: Mount Output



❯ mount | grep disk 
/dev/sdc1 on /mnt/disk1 type ext4 (rw,relatime,data=ordered)
/dev/sdd1 on /mnt/disk0 type ext4 (rw,relatime,data=ordered)
/dev/sde1 on /mnt/disk2 type ext4 (rw,relatime,data=ordered)
/dev/sdf1 on /mnt/disk3 type ext4 (rw,relatime,data=ordered)
/dev/sdb1 on /mnt/disk4 type ext4 (rw,relatime,data=ordered)






landscape






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 17 at 21:31







Kingamajick

















asked Apr 15 at 8:18









KingamajickKingamajick

701 gold badge1 silver badge8 bronze badges




701 gold badge1 silver badge8 bronze badges















  • It could be a few things; it's likely just a filesystem sysinfo doesn't check. Could you provide the output of mount instead of df.

    – simpoir
    Apr 15 at 15:50











  • I've added the output of mount also, let me know if you need more info.

    – Kingamajick
    Apr 17 at 21:32











  • Looking back at it, the "=>" don't just list everything, but rather notes potential issues (disk with >85% use, zombie process, etc). Thus, disk4 has no reason be mentioned.

    – simpoir
    Apr 18 at 16:48

















  • It could be a few things; it's likely just a filesystem sysinfo doesn't check. Could you provide the output of mount instead of df.

    – simpoir
    Apr 15 at 15:50











  • I've added the output of mount also, let me know if you need more info.

    – Kingamajick
    Apr 17 at 21:32











  • Looking back at it, the "=>" don't just list everything, but rather notes potential issues (disk with >85% use, zombie process, etc). Thus, disk4 has no reason be mentioned.

    – simpoir
    Apr 18 at 16:48
















It could be a few things; it's likely just a filesystem sysinfo doesn't check. Could you provide the output of mount instead of df.

– simpoir
Apr 15 at 15:50





It could be a few things; it's likely just a filesystem sysinfo doesn't check. Could you provide the output of mount instead of df.

– simpoir
Apr 15 at 15:50













I've added the output of mount also, let me know if you need more info.

– Kingamajick
Apr 17 at 21:32





I've added the output of mount also, let me know if you need more info.

– Kingamajick
Apr 17 at 21:32













Looking back at it, the "=>" don't just list everything, but rather notes potential issues (disk with >85% use, zombie process, etc). Thus, disk4 has no reason be mentioned.

– simpoir
Apr 18 at 16:48





Looking back at it, the "=>" don't just list everything, but rather notes potential issues (disk with >85% use, zombie process, etc). Thus, disk4 has no reason be mentioned.

– simpoir
Apr 18 at 16:48










0






active

oldest

votes














Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1133998%2fusr-bin-landscape-sysinfo-dont-show-all-mounted-disks%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1133998%2fusr-bin-landscape-sysinfo-dont-show-all-mounted-disks%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Tamil (spriik) Luke uk diar | Nawigatjuun

Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

Training a classifier when some of the features are unknownWhy does Gradient Boosting regression predict negative values when there are no negative y-values in my training set?How to improve an existing (trained) classifier?What is effect when I set up some self defined predisctor variables?Why Matlab neural network classification returns decimal values on prediction dataset?Fitting and transforming text data in training, testing, and validation setsHow to quantify the performance of the classifier (multi-class SVM) using the test data?How do I control for some patients providing multiple samples in my training data?Training and Test setTraining a convolutional neural network for image denoising in MatlabShouldn't an autoencoder with #(neurons in hidden layer) = #(neurons in input layer) be “perfect”?