[olug] OLUG Digest, Vol 74, Issue 1

Joseph Toppi toppij at gmail.com
Thu Apr 2 05:26:35 UTC 2009


I work for a little computer shop in La Vista and we have tons of those 3
pin fan adapters, and if we run low or need a weird adapter I have always
been able to make what we needed. Please stop by its called Computerz and
More we are near 84th and giles.

This talk "It's a Great Time to be in IT", it seems to me that it is about
the business side of IT, currently I am trying to plan a simple startup with
some coworkers doing PC repair. Will this talk benefit me as much as it
sounds like it will?

2009/4/1 <olug-request at olug.org>

> Send OLUG mailing list submissions to
>        olug at olug.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        https://lists.olug.org/mailman/listinfo/olug
> or, via email, send a message with subject or body 'help' to
>        olug-request at olug.org
>
> You can reach the person managing the list at
>        olug-owner at olug.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of OLUG digest..."
>
> Today's Topics:
>
>   1. Speaking at Infotec April 14-15, 2009 (Adam Haeder)
>   2. Re: Speaking at Infotec April 14-15, 2009 (Obi-Wan)
>   3. Re: Speaking at Infotec April 14-15, 2009 (David Walker)
>   4. OT: Power Adapters (Cheyenne Deal)
>   5. Re: OT: Power Adapters (Dan Linder)
>   6. Regional VBScript programmers mailing list? (Dan Linder)
>   7. Re: Speaking at Infotec April 14-15, 2009 (Dan Linder)
>   8. Re: Speaking at Infotec April 14-15, 2009 (Adam Haeder)
>   9. Re: [Omaha.pm] Regional VBScript programmers mailing list?
>      (Jay Hannah)
>  10. Trixbox Split Services (Charles.Bird)
>
>
> ---------- Forwarded message ----------
> From: Adam Haeder <adamh at aiminstitute.org>
> To: olug at olug.org
> Date: Tue, 31 Mar 2009 13:56:59 -0500 (CDT)
> Subject: [olug] Speaking at Infotec April 14-15, 2009
> Hello all
> I'll be speaking at the yearly Infotec conference April 14-15, 2009 at the
> Qwest Center. My topic is "It's a Great Time to be in IT". Based on the
> makeup of our group, I thought this would interest some of you.
>
> Here is more info about Infotec:
>
> http://infotec.org/
> April 14-15, 2009
> Qwest Center Omaha
> Session info: http://infotec.org/sessions.aspx
> Aaron Grothe and I helped put together the Infrastructure and IT support
> track. The Information Assurance track will also be of interest to many of
> you, it was put together by Ron Woerner.
>
> Anyway, thought you all might be interested in more detail about the event.
>
> Obligatory linux-fu:
> Had a situation the other day where a partition was filling up. I wanted to
> know which directories in that partition where the biggest offenders. This
> little one-liner gave me a list of all (top-level) directories in that
> partition, sorted by size, highest to lowest:
>
> # ls -1 | egrep -v "\.|\.\." | while read line; do if [ -d "${line}" ];
> then result=`du "$line" -c | grep -i total| awk -F" " '{print $1}'`; echo
> "$result: $line"; fi; done | sort -rn
>
> Like most of my scripts, I'm sure there is a much more efficient way to do
> it, but this worked for me.
>
> --
> Adam Haeder
> Vice President of Information Technology
> AIM Institute
> 1905 Harney Street, Suite 700
> Omaha, NE 68102
> 402-345-5025 x115
> adamh at aiminstitute.org
> www.aiminstitute.org
> --------------------
> Infotec09 is April 13-15, 2009
> at the Qwest Center Omaha.
> Register today at infotec.org!
>
>
>
>
> ---------- Forwarded message ----------
> From: obiwan at jedi.com (Obi-Wan)
> To: olug at olug.org
> Date: Tue, 31 Mar 2009 14:44:39 -0500 (CDT)
> Subject: Re: [olug] Speaking at Infotec April 14-15, 2009
> > Had a situation the other day where a partition was filling up. I wanted
> > to know which directories in that partition where the biggest offenders.
> > This little one-liner gave me a list of all (top-level) directories in
> > that partition, sorted by size, highest to lowest:
> >
> > # ls -1 | egrep -v "\.|\.\." | while read line; do if [ -d "${line}" ];
> then result=`du "$line" -c | grep -i total| awk -F" " '{print $1}'`; echo
> "$result: $line"; fi; done | sort -rn
> >
> > Like most of my scripts, I'm sure there is a much more efficient way to
> do
> > it, but this worked for me.
>
> How about:
>
> # du -ksc .??* * | sort -rn
>
> Or, if you only want directories displayed:
>
> # find . -maxdepth 1 -type d | xargs du -ksc | sort -rn
>
> --
> Ben "Obi-Wan" Hollingsworth                             obiwan at jedi.com
>   The stuff of earth competes for the allegiance I owe only to the
>     Giver of all good things, so if I stand, let me stand on the
>       promise that You will pull me through.  -- Rich Mullins
>
>
>
> ---------- Forwarded message ----------
> From: David Walker <olug at grax.com>
> To: Omaha Linux User Group <olug at olug.org>
> Date: Tue, 31 Mar 2009 17:01:40 -0500
> Subject: Re: [olug] Speaking at Infotec April 14-15, 2009
> I generally use "du -shx *", which is easier to read but harder to sort.
> Some of my older and smaller drives have mount points several levels
> down for one reason or another and the "x" keeps the search restricted
> to a single file system.
>
> Obi-Wan wrote:
> >> Had a situation the other day where a partition was filling up. I wanted
> >> to know which directories in that partition where the biggest offenders.
> >> This little one-liner gave me a list of all (top-level) directories in
> >> that partition, sorted by size, highest to lowest:
> >>
> >> # ls -1 | egrep -v "\.|\.\." | while read line; do if [ -d "${line}" ];
> then result=`du "$line" -c | grep -i total| awk -F" " '{print $1}'`; echo
> "$result: $line"; fi; done | sort -rn
> >>
> >> Like most of my scripts, I'm sure there is a much more efficient way to
> do
> >> it, but this worked for me.
> >>
> >
> > How about:
> >
> > # du -ksc .??* * | sort -rn
> >
> > Or, if you only want directories displayed:
> >
> > # find . -maxdepth 1 -type d | xargs du -ksc | sort -rn
> >
> >
>
>
>
>
> ---------- Forwarded message ----------
> From: Cheyenne Deal <deal.cheyenne at gmail.com>
> To: Omaha Linux User Group <olug at olug.org>
> Date: Tue, 31 Mar 2009 22:01:16 -0500
> Subject: [olug] OT: Power Adapters
> I have recently gotten some machines in that have no fan power plugs on the
> motherboard. I was wondering of anyone had any of
> THESE<http://www.newegg.com/Product/Product.aspx?Item=N82E16812189119>that
> I could buy from them. I was not going to pay ~$13 for shipping for
> things that only cost ~$6. If anyone has any please respond back.
>
> Thanks,
> Cheyenne D
>
>
>
> ---------- Forwarded message ----------
> From: Dan Linder <dan at linder.org>
> To: Omaha Linux User Group <olug at olug.org>
> Date: Tue, 31 Mar 2009 22:10:35 -0500
> Subject: Re: [olug] OT: Power Adapters
> I don't have any, but you could make some up yourself if you have an old PS
> with the correct wires and you're willing so solder.  You could cut the
> small plug off the fan and solder a big female connector onto the end in
> its
> place.
>
> If you're not up to that, I believe DIT has them in their stores.  Radio
> Shack might have a few in stock too.
>
> Dan
>
> On Tue, Mar 31, 2009 at 10:01 PM, Cheyenne Deal <deal.cheyenne at gmail.com
> >wrote:
>
> > I have recently gotten some machines in that have no fan power plugs on
> the
> > motherboard. I was wondering of anyone had any of
> > THESE<http://www.newegg.com/Product/Product.aspx?Item=N82E16812189119
> >that
> > I could buy from them. I was not going to pay ~$13 for shipping for
> > things that only cost ~$6. If anyone has any please respond back.
> >
> > Thanks,
> > Cheyenne D
> > _______________________________________________
> > OLUG mailing list
> > OLUG at olug.org
> > https://lists.olug.org/mailman/listinfo/olug
> >
>
>
>
> --
> "Quis custodiet ipsos custodes?" (Who can watch the watchmen?) -- from the
> Satires of Juvenal
> "I do not fear computers, I fear the lack of them." -- Isaac Asimov
> (Author)
> ** *** ***** ******* *********** *************
>
>
>
> ---------- Forwarded message ----------
> From: Dan Linder <dan at linder.org>
> To: Omaha Linux User Group <olug at olug.org>, "Perl Mongers of Omaha,
> Nebraska USA" <omaha-pm at pm.org>
> Date: Wed, 1 Apr 2009 08:36:35 -0500
> Subject: [olug] Regional VBScript programmers mailing list?
> I'm working on a project at work and have to update the VBScript portion to
> run on Windows 2008 and Vista.  Due to some of the changes in Win2K8, the
> data I'm looking for is no longer present at their old locations.
> (Specifically Windows service pack and hotfix information details that use
> to be under "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\HotFix" -
> that branch doesn't exist anymore.  From what I can see, the new method is
> to use WMI calls and query the "Win32_QuickFixEngineering" portion, but
> that
> only contains part of the data.)
>
> Now to my question... :-)
>
> I know these lists (OLUG and Perl Mongers) are definately not the correct
> mailing list for this sort of thing, but what other local (i.e. Omaha
> Nebraska and/or regional) lists can others recommend?
>
> Thanks in advance,
>
> Dan
>
> --
> "Quis custodiet ipsos custodes?" (Who can watch the watchmen?) -- from the
> Satires of Juvenal
> "I do not fear computers, I fear the lack of them." -- Isaac Asimov
> (Author)
> ** *** ***** ******* *********** *************
>
>
>
> ---------- Forwarded message ----------
> From: Dan Linder <dan at linder.org>
> To: Omaha Linux User Group <olug at olug.org>
> Date: Wed, 1 Apr 2009 08:42:38 -0500
> Subject: Re: [olug] Speaking at Infotec April 14-15, 2009
> On Tue, Mar 31, 2009 at 5:01 PM, David Walker <olug at grax.com> wrote:
>
> > I generally use "du -shx *", which is easier to read but harder to sort.
> > Some of my older and smaller drives have mount points several levels
> > down for one reason or another and the "x" keeps the search restricted
> > to a single file system.
> >
>
> This is getting a little off track from Adam's original question, but I
> like
> using something like this:
>
> du -skx * | sort -n |  commas
>
> Where the script "commas" is a custom one-liner script:
> /usr/bin/perl -pe 's/(?<=\d)(?=(?:\d\d\d)+\b)/,/g'
>
> This keeps the data sortable, but adds commas to make the numbers more
> human-readable.
>
> dan at titan:~$ du -skx * | sort -rn  | head -7 |/usr/bin/perl -pe
> 's/(?<=\d)(?=(?:\d\d\d)+\b)/,/g'
> 269,451,108     Documents
> 70,986,560      tmp
> 38,821,412      FinalFrontier
> 17,758,380      Backups
> 3,532,404       enav_repo
> 1,629,932       Music
> 1,286,724       xen_system1.img
>
> Just my $0.005...  (Dang economy...)
>
> Dan
>
> --
> "Quis custodiet ipsos custodes?" (Who can watch the watchmen?) -- from the
> Satires of Juvenal
> "I do not fear computers, I fear the lack of them." -- Isaac Asimov
> (Author)
> ** *** ***** ******* *********** *************
>
>
>
> ---------- Forwarded message ----------
> From: Adam Haeder <adamh at aiminstitute.org>
> To: Omaha Linux User Group <olug at olug.org>
> Date: Wed, 1 Apr 2009 09:22:19 -0500 (CDT)
> Subject: Re: [olug] Speaking at Infotec April 14-15, 2009
> And this is why I love the OLUG list. Obviously, this is a 100% better than
> my solution. Thanks for the comments! :) I am totally appropriating this
> script for my own nefarious purposes.
>
> --
> Adam Haeder
> Vice President of Information Technology
> AIM Institute
> 1905 Harney Street, Suite 700
> Omaha, NE 68102
> 402-345-5025 x115
> adamh at aiminstitute.org
> www.aiminstitute.org
> --------------------
> Infotec09 is April 13-15, 2009
> at the Qwest Center Omaha.
> Register today at infotec.org!
>
>
> On Wed, 1 Apr 2009, Dan Linder wrote:
>
>  On Tue, Mar 31, 2009 at 5:01 PM, David Walker <olug at grax.com> wrote:
>>
>>  I generally use "du -shx *", which is easier to read but harder to sort.
>>> Some of my older and smaller drives have mount points several levels
>>> down for one reason or another and the "x" keeps the search restricted
>>> to a single file system.
>>>
>>>
>> This is getting a little off track from Adam's original question, but I
>> like
>> using something like this:
>>
>> du -skx * | sort -n |  commas
>>
>> Where the script "commas" is a custom one-liner script:
>> /usr/bin/perl -pe 's/(?<=\d)(?=(?:\d\d\d)+\b)/,/g'
>>
>> This keeps the data sortable, but adds commas to make the numbers more
>> human-readable.
>>
>> dan at titan:~$ du -skx * | sort -rn  | head -7 |/usr/bin/perl -pe
>> 's/(?<=\d)(?=(?:\d\d\d)+\b)/,/g'
>> 269,451,108     Documents
>> 70,986,560      tmp
>> 38,821,412      FinalFrontier
>> 17,758,380      Backups
>> 3,532,404       enav_repo
>> 1,629,932       Music
>> 1,286,724       xen_system1.img
>>
>> Just my $0.005...  (Dang economy...)
>>
>> Dan
>>
>> --
>> "Quis custodiet ipsos custodes?" (Who can watch the watchmen?) -- from the
>> Satires of Juvenal
>> "I do not fear computers, I fear the lack of them." -- Isaac Asimov
>> (Author)
>> ** *** ***** ******* *********** *************
>> _______________________________________________
>> OLUG mailing list
>> OLUG at olug.org
>> https://lists.olug.org/mailman/listinfo/olug
>>
>>
>
>
> ---------- Forwarded message ----------
> From: Jay Hannah <jay at jays.net>
> To: "Perl Mongers of Omaha, Nebraska USA" <omaha-pm at pm.org>
> Date: Wed, 1 Apr 2009 09:57:03 -0500
> Subject: Re: [olug] [Omaha.pm] Regional VBScript programmers mailing list?
> On Apr 1, 2009, at 8:36 AM, Dan Linder wrote:
>
>> I know these lists (OLUG and Perl Mongers) are definately not the correct
>> mailing list for this sort of thing, but what other local (i.e. Omaha
>> Nebraska and/or regional) lists can others recommend?
>>
>
> OmahaMTG.com?
>
> http://jays.net/wiki/Omaha_User_Groups
>
> j
>
>
>
>
>
> ---------- Forwarded message ----------
> From: "Charles.Bird" <charles.bird at powerdnn.com>
> To: Omaha Linux User Group <olug at olug.org>
> Date: Wed, 1 Apr 2009 10:58:58 -0500
> Subject: [olug] Trixbox Split Services
> I've been using trixbox for a couple years now, and one of the things that
> I
> like of course if the nice webui, It saves me alot of time.
> Now I am finding myself in a position where I have to setup a box that can
> handle alot of concurrent connections.
> I've been considering spliting some things apart(i know its higher risk of
> failure)
> I just want an easy way to admin asterisk without causing resource
> shortages
> and causing jitter.
>
> I googled around a bit but didnt find anything valuable on this topic.
> Anyone here been juggling trixbox dependant services on different hardware?
>
>
> Thanks,
> Charles
>
> --
> The information transmitted in this e-mail message and attachments, if
> any, may be of a confidential matter, and is intended only for the use
> of the individual or entity named above. Distribution to, or review
> by, unauthorized persons is prohibited. All personal messages express
> views solely of the sender, which are not to be attributed to
> MobileNow, Inc.. If you have received this transmission in error,
> immediately notify the sender and permanently delete this transmission
> including attachments, if any.
>
>
> _______________________________________________
> OLUG mailing list
> OLUG at olug.org
> https://lists.olug.org/mailman/listinfo/olug
>
>


-- 
- Joe Toppi
(402) 714-7539
toppij at gmail.com



More information about the OLUG mailing list