-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmounted_disk_info.py
executable file
·39 lines (35 loc) · 1.28 KB
/
mounted_disk_info.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python
import os
def get_fs_info(path):
"""Get free/used/total space info for a filesystem
:param path: Any dirent on the filesystem
:returns: A dict containing:
:free: How much space is free (in bytes)
:used: How much space is used (in bytes)
:total: How big the filesystem is (in bytes)
"""
hddinfo = os.statvfs(path)
total = hddinfo.f_frsize * hddinfo.f_blocks
free = hddinfo.f_frsize * hddinfo.f_bavail
used = hddinfo.f_frsize * (hddinfo.f_blocks - hddinfo.f_bfree)
return {'total': int(float(total)/1024/1024),
'free': int(float(free)/1024/1024),
'used': int(float(used)/1024/1024)}
def get_mounted_disks():
with open('/proc/mounts', 'r') as f:
mounts = f.readlines()
#print mounts
for mount in mounts:
if mount.startswith('/dev/'):
mount = mount.split()
dev = mount[0]
target = mount[1]
if target == '/':
print 'root fs'
else:
print 'logical fs'
print '%(dev)s mounts to %(target)s' % locals()
print 'realpath:', os.path.realpath(dev)
print 'space info(MB):', get_fs_info(target)
if __name__ == '__main__':
get_mounted_disks()