先日VMware ESXiを5.1から5.5にアップグレードしたのですが、メンテナンスするために”df”コマンドを実行したところエラーになってしまいました
1 2 3 4 5 6 7 8 9 10 |
; html-script: false ]~ # df Traceback (most recent call last): File "/bin/df", line 101, in <module> sys.exit(main(sys.argv)) File "/bin/df", line 55, in main o = eval(output) File "<string>", line 1 Errors: ^ SyntaxError: invalid syntax |
Upgrading to VMware ESXi 5.5 from 5.1
http://www.rootlinks.net/2014/01/18/upgrading-to-vmware-esxi-5-5-from-5-1/
VMware ESXi 5.1.0 build-1157734からVMware ESXi 5.5.0 build-1474528へ直接アップグレードを行いましたがこれが原因でしょうか???
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 |
; html-script: false ]~ # find / -name df /bin/df ~ # ls -l /bin/df -r-xr-xr-x 1 root root 3401 Dec 11 12:03 /bin/df ~ # /bin/df --version 1 ~ # /bin/df --help Usage: df [options] Options: --version show program's version number and exit -h Human readable -m Megabytes -k Kilobytes --help ~ # df Traceback (most recent call last): File "/bin/df", line 101, in <module> sys.exit(main(sys.argv)) File "/bin/df", line 55, in main o = eval(output) File "<string>", line 1 Errors: ^ SyntaxError: invalid syntax ~ # df -h Traceback (most recent call last): File "/bin/df", line 101, in <module> sys.exit(main(sys.argv)) File "/bin/df", line 55, in main o = eval(output) File "<string>", line 1 Errors: ^ SyntaxError: invalid syntax |
VMの動作そのものには問題無さそうですがちょっと心配です
様々なキーワードで検索しても似たような現象は無さそうで…さてどうしたものか