Description of problem: when I use python to write 30M data to disk,it take's about 1 minute to finish running, but when I run it on redhat9, it take's only 5 seconds to finish running. I think something is wrong with python on Fedora Version-Release number of selected component (if applicable): On Fedora,python is: Python 2.4.2 (#1, Feb 12 2006, 03:59:46) [GCC 4.1.0 20060210 (Red Hat 4.1.0-0.24)] on linux2 Type "help", "copyright", "credits" or "license" for more information. How reproducible: #b.py import os,sys,time f = open('a.txt','a+') for i in range(2000000) : f.write('That is ' + str(i) + '\n') f.close() Steps to Reproduce: 1. time python b.py 2. 3. Actual results: On Fedora, 7.808u 3.056s 0:53.09 20.4% 0+0k 0+0io 9910pf+0w Expected results: On Redhat9 4.824u 0.180s 0:04.99 100.2% 0+0k 0+0io 0pf+0w Additional info:
*** This bug has been marked as a duplicate of 188327 ***