home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / windows / x / i386unix / 235 < prev    next >
Encoding:
Text File  |  1993-01-09  |  2.3 KB  |  50 lines

  1. Newsgroups: comp.windows.x.i386unix
  2. Path: sparky!uunet!wupost!newsfeed.rice.edu!rice!news.Rice.edu!rich
  3. From: rich@Rice.edu (& Murphey)
  4. Subject: Re: min memory requirements
  5. In-Reply-To: engelsma@golden.cps.msu.edu's message of 8 Jan 93 18:52:48 GMT
  6. Message-ID: <RICH.93Jan7235611@superego.Rice.edu>
  7. Followup-To: comp.windows.x.i386unix
  8. Sender: news@rice.edu (News)
  9. Reply-To: Rich@rice.edu
  10. Organization: Department of Electrical and Computer Engineering, Rice
  11.     University
  12. References: <1ikii0INNh1c@msuinfo.cl.msu.edu>
  13. Date: Fri, 8 Jan 1993 05:56:11 GMT
  14. Lines: 34
  15.  
  16. >>>>> In article <1ikii0INNh1c@msuinfo.cl.msu.edu>, engelsma@golden.cps.msu.edu (Jonathan Engelsma (Reid)) writes:
  17. Jonathan> Followup-To: comp.windows.x.i386unix
  18. Jonathan> NNTP-Posting-Host: golden.cps.msu.edu
  19.  
  20. Jonathan> Whats the minimum amount of memory required to run Xfree86 under
  21. Jonathan> 386BSD?   I read somewhere you need 12-16M.  Is that recommended
  22. Jonathan> or required?  Has anybody got it running with only 8M?
  23.  
  24. The problem is not so much running X, but doing program development
  25. while running X.  You can easily use up 12-16 running gcc alone.
  26. Running X an example of the the memory use I see is:
  27.  
  28.   UID   PID  PPID CPU PRI NI   VSZ  RSS WCHAN  STAT TT       TIME COMMAND
  29.     0   152   151   0   2  0  5220  728 select S    ??    7:23.19  (X3861.1Cb)
  30. 16365   151    66   0  10  0   220   20 wait   I+   ??    0:00.12  (xinit)
  31.     0   153   151   2   2  0  3096   20 select I    ??    0:01.53  (xterm)
  32. 16365   159   153   0   2  0   988  196 select S    ??    0:20.00  (gwm)
  33. 16365   160   153   0   2  0  3920 1500 select S    ??    4:51.62 emacs
  34.     0  1755   159   0   2  0  1292  132 select I    ??    0:02.09  (xterm)
  35.     0  4149   159   0   2  0  1256   20 select I    ??    0:04.29  (xterm)
  36.  
  37. which is 2616 Mb if you add up all the resident set sizes (the ammount
  38. of memory used by each).  That's much smaller than the ammount of
  39. memory other applications such as 'gcc -O2' will use.  Heck, there's a
  40. file in the interviews distribution for which gcc 2.3.3 -O2 uses 30Mb
  41. of virtual memory.
  42.  
  43. So, the answer is: 
  44. 1. you can run X with 4M.  It will swap like hell if you try to
  45. compile though.  It runs fine otherwise though.
  46.  
  47. 2. get 16M or as much as you can afford.  Gcc will run 10x faster if
  48. the machine doesn't thrash.
  49. Rich
  50.