diff options
-rw-r--r-- | man/en/sos-report.1 | 10 | ||||
-rw-r--r-- | sos/report/__init__.py | 3 |
2 files changed, 9 insertions, 4 deletions
diff --git a/man/en/sos-report.1 b/man/en/sos-report.1 index 464a77e5..e3477398 100644 --- a/man/en/sos-report.1 +++ b/man/en/sos-report.1 @@ -343,9 +343,13 @@ is available at the end. Plugins will be collected sequentially, size of collected files and commands outputs will be calculated and the plugin files will be immediatelly deleted prior execution -of the next plugin. This still can consume whole free disk space, though. Please note, -size estimations may not be accurate for highly utilized systems due to changes between -an estimate and a real execution. +of the next plugin. This still can consume whole free disk space, though. + +Please note, size estimations may not be accurate for highly utilized systems due to +changes between an estimate and a real execution. Also some difference between +estimation (using `stat` command) and other commands used (i.e. `du`). + +A rule of thumb is to reserve at least double the estimation. .TP .B \--upload If specified, attempt to upload the resulting archive to a vendor defined location. diff --git a/sos/report/__init__.py b/sos/report/__init__.py index ef61fb34..e0617b45 100644 --- a/sos/report/__init__.py +++ b/sos/report/__init__.py @@ -1330,7 +1330,8 @@ class SoSReport(SoSComponent): self.ui_log.info("Please note the estimation is relevant to the " "current options.") self.ui_log.info("Be aware that the real disk space requirements " - "might be different.") + "might be different. A rule of thumb is to " + "reserve at least double the estimation.") self.ui_log.info("") # package up and compress the results |