[PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Rich Shepard
What decision criteria should be applied to deciding to use a 64-bit distribution version rather than a 32-bit version? My systems (server/workstation and laptop) almost always have only a single human user. Depending on the project the work could involve heavy number crunching (spatial

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread wes
On Thu, Mar 3, 2011 at 11:36 AM, Rich Shepard rshep...@appl-ecosys.comwrote: What decision criteria should be applied to deciding to use a 64-bit distribution version rather than a 32-bit version? Perhaps you know Russian epic of Cinderella? If shoe fits, wear it! -wes

[PLUG] SECOND ANNOUNCEMENT: March PLUG Meeting

2011-03-03 Thread David Mandel
                            MEETING ANNOUNCEMENT                        The Portland Linux/Unix Group                                  will meet                          7 PM Thursday Mar 3, 2011                                      at                          Portland State University            

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Paul Heinlein
On Thu, 3 Mar 2011, Rich Shepard wrote: What decision criteria should be applied to deciding to use a 64-bit distribution version rather than a 32-bit version? 1. Do you need clean access to more than 4 GB RAM? (I don't consider PAE clean access.) 2. Does the system in question need to be

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Rich Shepard
On Thu, 3 Mar 2011, Paul Heinlein wrote: 1. Do you need clean access to more than 4 GB RAM? (I don't consider PAE clean access.) 2. Does the system in question need to be in production past 3:14 am on Jan 19, 2038? No. No. Otherwise, either will suffice. I've had really good luck

[PLUG] AWK script syntax error

2011-03-03 Thread Rich Shepard
I wrote this little script: BEGIN { FS=| } {if ($2 != 0.00) print $1|$2|$3} END {print NR} to remove lines like this: 29608|0.00|0.00 from a file with 110K lines. While I thought it was working properly it leaves these lines looking like this: 29608|| I've looked in

Re: [PLUG] AWK script syntax error

2011-03-03 Thread wes
I don't know much about awk, so I won't be able to answer your question. However, to simply remove whole lines, I would use grep: grep -v '|0.00|' [filename] Hope this is helpful. -wes On Thu, Mar 3, 2011 at 1:52 PM, Rich Shepard rshep...@appl-ecosys.comwrote: I wrote this little

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Fedor Pikus
On Thu, Mar 3, 2011 at 12:53 PM, Rich Shepard rshep...@appl-ecosys.comwrote: On Thu, 3 Mar 2011, Paul Heinlein wrote: 1. Do you need clean access to more than 4 GB RAM? (I don't consider PAE clean access.) 2. Does the system in question need to be in production past 3:14 am on Jan

Re: [PLUG] AWK script syntax error [RESOLVED]

2011-03-03 Thread Rich Shepard
On Thu, 3 Mar 2011, wes wrote: I don't know much about awk, so I won't be able to answer your question. However, to simply remove whole lines, I would use grep: grep -v '|0.00|' [filename] Hope this is helpful. Wes, Exceptionally helpful. I discovered that my script does work, but

Re: [PLUG] AWK script syntax error

2011-03-03 Thread Daniel Hedlund
On Thu, Mar 3, 2011 at 13:59, wes p...@the-wes.com wrote: I don't know much about awk, so I won't be able to answer your question. However, to simply remove whole lines, I would use grep: grep -v '|0.00|' [filename] Rich's awk script only checks the second column for 0.000... The

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Rich Shepard
On Thu, 3 Mar 2011, Fedor Pikus wrote: If you have 2GB of RAM or less, 32-bit install may be a bit easier. Fedor, My AMD-based server/workstation has 2 cores and 4G RAM; my Intel-based Dell laptop has 4 cores and 2G RAM. At least they're symetrical. :-) Some applications are 32-bit only:

Re: [PLUG] AWK script syntax error

2011-03-03 Thread Rich Shepard
On Thu, 3 Mar 2011, Daniel Hedlund wrote: Rich's awk script only checks the second column for 0.000. Daniel, Yes. If the second column has zeros, so would the third column. ...if he wants to continue using awk, I believe the following will work (the print NR was removed): BEGIN { FS=|

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Fedor Pikus
On Thu, Mar 3, 2011 at 2:16 PM, Rich Shepard rshep...@appl-ecosys.comwrote: On Thu, 3 Mar 2011, Fedor Pikus wrote: If you have 2GB of RAM or less, 32-bit install may be a bit easier. Fedor, My AMD-based server/workstation has 2 cores and 4G RAM; my Intel-based Use 64-bit install on

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Rich Shepard
On Thu, 3 Mar 2011, Russell Senior wrote: My advice is, go 64-bit when you can. Russell, I certainly respect your opinions, so I will take your advice when Pat releases the next Slackware. I'm sure there will be some compatibility issues with firefox, flash-player (gag!), and such, but

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Aaron Burt
On Thu, Mar 03, 2011 at 11:36:35AM -0800, Rich Shepard wrote: What decision criteria should be applied to deciding to use a 64-bit distribution version rather than a 32-bit version? Use 64-bit if: * You might have 4+ GB RAM at some point * You are doing heavy number-crunching (check the

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Paul Heinlein
On Thu, 3 Mar 2011, Aaron Burt wrote: I'm in the process of eliminating all 32-bit servers in my racks. Same here. 64-bit server installations have been my default for three or four years. Installing a 32-bit Linux on a dedicated server requires a clear, uncontestable justification.

[PLUG] Asterisk port...

2011-03-03 Thread Michael C. Robinson
[Mar 3 15:39:00] WARNING[1835] loader.c: Error loading module 'pbx_gtkconsole.so': /opt/lib/asterisk/modules/pbx_gtkconsole.so: cannot open shared object file: No such file or directory [Mar 3 15:39:00] NOTICE[1835] res_smdi.c: No SMDI interfaces are available to listen on, not starting SMDI

Re: [PLUG] 32-bit vs. 64-bit: Decision Criteria

2011-03-03 Thread Dale Snell
On Thu, 3 Mar 2011 14:59:47 -0800 (PST) Rich Shepard rshep...@appl-ecosys.com wrote: On Thu, 3 Mar 2011, Russell Senior wrote: My advice is, go 64-bit when you can. Russell, I certainly respect your opinions, so I will take your advice when Pat releases the next Slackware. I'm sure

[PLUG] pulseaudio

2011-03-03 Thread Ken Stephens
Fedora 14, How do I configure Pulseaudio to work? I upgraded from Fedora 13 and I got my on board sound and not my sound card. Then I rebooted and now don't even get that. Their website is useless. Their wikis are even less. Frustrated in Portland, Ken

[PLUG] Scientific Linux 6.0

2011-03-03 Thread MJang
Folks, FWIW, with little fanfare, Scientific Linux 6.0 was released today. Hasn't even shown up on my Linux newsfeeds yet. It's the rebuild of Red Hat Enterprise Linux 6, built from Red Hat source code. Thanks, Mike ___ PLUG mailing list