Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is it possible to display units in MB or GB? #1

Closed
saudiqbal opened this issue Jan 23, 2020 · 2 comments
Closed

Is it possible to display units in MB or GB? #1

saudiqbal opened this issue Jan 23, 2020 · 2 comments

Comments

@saudiqbal
Copy link

It would be nice to see the RAM and HDD usage in MB and GB instead of Bytes. Example: Usage: 1 690 959 872 bytes, looks wierd to read.

@MichaelBelgium
Copy link
Owner

Such conversion is simple to do:

  • 1 000 000 bytes = 1 MB =>1 690 959 872 / 1 000 000 = 1 690,959 872 MB
  • 1 000 000 000 bytes = 1 GB => 1 690 959 872 / 1 000 000 000 = 1,690959872 GB

Or binary:

  • 1024 bits = 1 Kb
  • 1024^2 bits = 1 Mb => 1 690 959 872 / 1024^2 = 1 612, 625 Mb
  • 1024^3 bits = 1 Gb => 1 690 959 872 / 1024^3 = 1,5748291015625 Gb

@saudiqbal
Copy link
Author

It would be nice to see the details in MB or GB instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants