 pablo2525
join:2003-06-23
·TekSavvy Solutions..
| The Rig
Howdy,
I put together an I7/950 yesterday. Burning it in with openSUSE. I need to install some more software before I cut over from my ancient P4 desktop. I'm quite geek'd at the moment.
Nothing like:
bash code: -- pablo openSUSE 11.0;KDE ISP: TekSavvy DSL; backhauled via a 6KM wireless link |
|
  Drunkula Premium join:2000-06-12 Denton, TX | Nice!  |
|
  yock TFTC Premium join:2000-11-21 Fairfield, OH | reply to pablo2525 You really should leave some cores on the market for the rest of us, you know... |
|
  rexbinary Mod King Premium join:2005-01-26 Plano, TX 1 edit | reply to pablo2525 You could probably do -j16. I know deblin found -j8 to be the sweet spot for his Q6600 quad core CPU running FreeBSD. |
|
 pablo2525
join:2003-06-23
·TekSavvy Solutions..
| Howdy,
Just for fun, I `time'd a `pidgin' build. I ran a `make clean' between each run.
-j8 = 58.03s -j16 = 57.75s
Didn't seem to make too much difference. May be enough group-waits to not help in my case. -- pablo openSUSE 11.0;KDE ISP: TekSavvy DSL; backhauled via a 6KM wireless link |
|
  rlt2562 The Wizard of Speed and Time Premium join:2002-12-23 Haughton, LA | reply to pablo2525 I'm just barely a very low-level geek. make -j8? I only understand the 'make' command. -- A thousand miles can lead so many ways, just to know who's driving what a help it would be.... |
|
 pablo2525
join:2003-06-23
·TekSavvy Solutions..
| Hiya!
Sorry to be so cryptic. `make' is used to create a `target' from a user-defined set of rules. `make' is typically used to compile a program. However, you can also think of taking .html and compiling it into .txt (say, using lynx). And you could use `make' for this task.
The `-j' option to `make' instructs it to create multiple parallel `jobs' Suppose you had 30 `c' programs which make up a library, you could compile up to `-j 8' (eight) simultaneously. When one is done, `make' handles adding another to its run queue.
See `man make' for oodles more information.  -- pablo openSUSE 11.0;KDE ISP: TekSavvy DSL; backhauled via a 6KM wireless link |
|