1. 程式人生 > 其它 >python升級後導致iotop命令無法使用

python升級後導致iotop命令無法使用

執行iotop -u -mysql報告

[root@oracle11g support-files]# iotop -u mysql
  File "/usr/sbin/iotop", line 10
    except ImportError, e:
                      ^
SyntaxError: invalid syntax
[root@oracle11g support-files]# iotop -u mysql
  File "/usr/sbin/iotop", line 10
    except ImportError, e:
                      ^
SyntaxError: invalid syntax
[root@oracle11g support-files]# iotop
  File "/usr/sbin/iotop", line 10
    except ImportError, e:
                      ^
SyntaxError: invalid syntax

將/usr/sbin/iotop修改為以下內容

#!/usr/bin/python修改為#!/usr/bin/python2.6

[root@oracle11g support-files]# cat /usr/sbin/iotop
#!/usr/bin/python2.6
# iotop: Display I/O usage of processes in a top like UI
# Copyright (c) 2007, 2008 Guillaume Chazarain <[email protected]>, GPLv2
# See iotop --help for some help

import sys

try:
    from iotop.ui import main
except ImportError, e:
    print e
    print 'To run an uninstalled copy of iotop,'
    print 'launch iotop.py in the top directory'
else:
    try:
        main()
    except KeyboardInterrupt:
        pass
    sys.exit(0)