Skip to content
Advertisement

Size of disk/partition in Python is different than linux command

Using: Python 3.7.6 , OS Linux (rmp)

I need to extract total and free sizes of disks and partitions in Python.

I tried different Python functions to retrieve block size in bytes (the results were the same). Then I compared to results of Linux commands (also in bytes), results were different (Linux commands different than Python).

Python functions:

  1. Using os.statvfs
JavaScript
  1. Using shutil.disk_usage :
JavaScript

I tried also psutil:

JavaScript

Linux command:

  1. blockdev –getsize64 #Print device size in bytes
JavaScript
  1. lsblk -b

enter image description here

What do I miss here ? Why Python results are different than Linux command (while all units in bytes)? Why Python sizes of sda and sda1 are the same ?

Advertisement

Answer

Both https://docs.python.org/3/library/shutil.html#shutil.disk_usage and https://docs.python.org/3/library/os.html#os.statvfs are used to get stats on filesystem and not a block device, so when you are using /dev/sda or /dev/sda1 as argument – you are actually getting info about /dev

You can get similar results with stat command, here is example with my /dev/sdb.

In python:

JavaScript

In shell:

JavaScript

You can see that shutil output and block size * blocks total are exactly the same.

Notice the -f flag:

-f, --file-system display file system status instead of file status

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement