python 获取linux本机信息【十全十美】

   用python写的获取linux本机信息,包括kernel、IP、Memory、Disk信息。
 

################################################################################
#Information on this program is used to get the Linux native.                  #
#You can enter the “kernel”, “ip”, “memory”, “disk” keyword to get the results,#
#you can also enter “all”.                                                     #
###############################################################################
翻译:本程序是用来获取linux本机信息的
      你可以输入“kernel”,“ip”,“memory”,“disk”关键字获取响应的参数信息
      也可以输入“all”,查看所有参数。

程序内容如下:

 
 
  1. #!/usr/bin/env python 
  2. #-*- coding:utf-8 -*- 
  3. #2012/12/12 by SongShouJiong 
  4. #Email:linuxsong49@163.com 
  5.  
  6. import os 
  7. kernel_version = os.popen('''/bin/uname -a | awk \'{print $1,$3}\'''').read().strip('\n') 
  8. ip = os.popen('''/sbin/ifconfig | grep 'inet addr'|awk '{print $2}'|head -1 |cut -d ":" -f 2''').read().strip('\n') 
  9. memory = os.popen('''free -m | head -2''').read().strip('\n') 
  10. disk = os.popen('''df -hT''').read().strip('\n') 
  11.  
  12. print ''' 
  13. ################################################################################ 
  14. #Information on this program is used to get the Linux native.                  # 
  15. #You can enter the "kernel", "IP", "memory", "disk" keyword to get the results,#  
  16. #you can also enter "all".                                                     # 
  17. ###############################################################################'''.strip('\n') 
  18.  
  19. a = str(raw_input('Please input to query parameter:')) 
  20. if   a == 'kernel': 
  21.     print "Kernel Version:",kernel_version 
  22. elif a == 'ip': 
  23.         print "Local IP:",ip 
  24. elif a == 'memory': 
  25.         print "Local Memory:" + ('\n') + memory 
  26. elif a == 'disk': 
  27.         print "Local Disk:" + ('\n') + disk 
  28. elif a == "all": 
  29.         print "Kernel Version:",kernel_version 
  30.         print "Local IP:",ip 
  31.         print "Local Memory:" + ('\n') + memory 
  32.         print "Local Disk:" + ('\n') + disk 
  33. else: 
  34.     print "Didnt't you want to query parameter." 

 最近在学习python,所以就各种找需求去练习,写的也简单,各种堆命令,有什么不对的地方或者好的建议,还请指出。

    原文作者:linuxsong
    原文地址: https://blog.51cto.com/song49/1086861
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞