Anyone know of a hobby/electronics shop where I could get a 232-TTL
dongle, board or kit? Even just a bare MAX232 IC would be cool.
I don't want to have to drive up to you-do-it, that's the only place I
can think of that's left...
Take care,
soup
Hi folks,
Our next WLUG meeting is scheduled to be held on Wednesday, June 9 at
7:00 PM in Morgan Hall at the WPI campus in Worcester, MA USA.
This is an informal open meeting. Anyone who is interested in a
certain topic, feel free to come to the meeting and discuss it. We'll
go out for pizza afterwards.
The meeting room is in WPI's Morgan Hall (building 'H' on the campus
map [1]), down the hallway to the right of the dining hall entrance.
[1] http://www.wpi.edu/Images/CMS/WPI/walkingmap.pdf
I look forward to seeing you there,
Chuck
President, Worcester Linux Users' Group
#!/bin/tcsh
awk -F\| '$3 == "" {print}' < test.txt
109: ./awk.csh
One|two||four|Five|Six
One|two||four|Five|Six
wlug-request(a)mail.wlug.org wrote:
> Send Wlug mailing list submissions to
> wlug(a)mail.wlug.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://mail.wlug.org/mailman/listinfo/wlug
> or, via email, send a message with subject or body 'help' to
> wlug-request(a)mail.wlug.org
>
> You can reach the person managing the list at
> wlug-owner(a)mail.wlug.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Wlug digest..."
>
>
> ------------------------------------------------------------------------
>
> Today's Topics:
>
> 1. Awk Null Field (Gary Hanley)
> 2. Re: Awk Null Field (Jorden M)
> 3. Re: Awk Null Field (Gary Hanley)
> 4. Re: Awk Null Field (Jorden M)
> 5. Re: Awk Null Field (Gary Hanley)
> 6. Re: Awk Null Field (Jorden M)
> 7. Re: Awk Null Field (Theo Van Dinter)
> 8. Re: Awk Null Field (Gary Hanley)
>
>
> ------------------------------------------------------------------------
>
> Subject:
> [Wlug] Awk Null Field
> From:
> Gary Hanley <gary(a)hanley.net>
> Date:
> Tue, 1 Jun 2010 16:00:26 -0400 (EDT)
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> Wow, what's wrong with me? I'm trying to parse a file to eliminate any
> line from the file to the output where a particular field is is null.
> The 8th field in this case.
>
> I can't get it right! I haven't done an awk script in a long time but
> this should be simple stuff.
>
> Basically I'm trying to do:
>
> cat file | awk -F\| '$8 !~ <NULL expression> {print}'
>
> Any help would be appreciated.
>
> Thanks.
>
> -- Gary
>
>
> ------------------------------------------------------------------------
>
> Subject:
> Re: [Wlug] Awk Null Field
> From:
> Jorden M <jrm8005(a)gmail.com>
> Date:
> Tue, 1 Jun 2010 16:26:23 -0400
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> Just check NF.
>
> On Tue, Jun 1, 2010 at 4:00 PM, Gary Hanley <gary(a)hanley.net> wrote:
>> Wow, what's wrong with me? I'm trying to parse a file to
>> eliminate any line from the file to the output where a particular
>> field is is null. The 8th field in this case.
>>
>> I can't get it right! I haven't done an awk script in a long time but
>> this should be simple stuff.
>>
>> Basically I'm trying to do:
>>
>> cat file | awk -F\| '$8 !~ <NULL expression> {print}'
>>
>> Any help would be appreciated.
>>
>> Thanks.
>>
>> -- Gary
>> _______________________________________________
>> Wlug mailing list
>> Wlug(a)mail.wlug.org
>> http://mail.wlug.org/mailman/listinfo/wlug
>>
>
>
> ------------------------------------------------------------------------
>
> Subject:
> Re: [Wlug] Awk Null Field
> From:
> Gary Hanley <gary(a)hanley.net>
> Date:
> Tue, 01 Jun 2010 17:08:46 -0400
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> Thanks, but that won't help here. Maybe I should have mentioned the
> fields are delimited by "|" and there is more than eight fields per record.
>
> I think this might be more complicated than I assumed. Thanks anyway.
>
> -- Gary
>
> On 06/01/2010 04:26 PM, Jorden M wrote:
>> Just check NF.
>>
>> On Tue, Jun 1, 2010 at 4:00 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>> Wow, what's wrong with me? I'm trying to parse a file to
>>> eliminate any line from the file to the output where a particular
>>> field is is null. The 8th field in this case.
>>>
>>> I can't get it right! I haven't done an awk script in a long time but
>>> this should be simple stuff.
>>>
>>> Basically I'm trying to do:
>>>
>>> cat file | awk -F\| '$8 !~<NULL expression> {print}'
>>>
>>> Any help would be appreciated.
>>>
>>> Thanks.
>>>
>>> -- Gary
>>> _______________________________________________
>>> Wlug mailing list
>>> Wlug(a)mail.wlug.org
>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>
>> _______________________________________________
>> Wlug mailing list
>> Wlug(a)mail.wlug.org
>> http://mail.wlug.org/mailman/listinfo/wlug
>>
>>
>
>
> ------------------------------------------------------------------------
>
> Subject:
> Re: [Wlug] Awk Null Field
> From:
> Jorden M <jrm8005(a)gmail.com>
> Date:
> Tue, 1 Jun 2010 17:14:36 -0400
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> What will happen if the field is null? Two pipes? Or will there be
> space in between?
>
> On Tue, Jun 1, 2010 at 5:08 PM, Gary Hanley <gary(a)hanley.net> wrote:
>> Thanks, but that won't help here. Maybe I should have mentioned the
>> fields are delimited by "|" and there is more than eight fields per record.
>>
>> I think this might be more complicated than I assumed. Thanks anyway.
>>
>> -- Gary
>>
>> On 06/01/2010 04:26 PM, Jorden M wrote:
>>> Just check NF.
>>>
>>> On Tue, Jun 1, 2010 at 4:00 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>>> Wow, what's wrong with me? I'm trying to parse a file to
>>>> eliminate any line from the file to the output where a particular
>>>> field is is null. The 8th field in this case.
>>>>
>>>> I can't get it right! I haven't done an awk script in a long time but
>>>> this should be simple stuff.
>>>>
>>>> Basically I'm trying to do:
>>>>
>>>> cat file | awk -F\| '$8 !~<NULL expression> {print}'
>>>>
>>>> Any help would be appreciated.
>>>>
>>>> Thanks.
>>>>
>>>> -- Gary
>>>> _______________________________________________
>>>> Wlug mailing list
>>>> Wlug(a)mail.wlug.org
>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>
>>> _______________________________________________
>>> Wlug mailing list
>>> Wlug(a)mail.wlug.org
>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>
>>>
>> _______________________________________________
>> Wlug mailing list
>> Wlug(a)mail.wlug.org
>> http://mail.wlug.org/mailman/listinfo/wlug
>>
>
>
>
> ------------------------------------------------------------------------
>
> Subject:
> Re: [Wlug] Awk Null Field
> From:
> Gary Hanley <gary(a)hanley.net>
> Date:
> Tue, 01 Jun 2010 17:22:05 -0400
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> There will be a space.
>
> -- Gary
>
> On 06/01/2010 05:14 PM, Jorden M wrote:
>> What will happen if the field is null? Two pipes? Or will there be
>> space in between?
>>
>> On Tue, Jun 1, 2010 at 5:08 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>> Thanks, but that won't help here. Maybe I should have mentioned the
>>> fields are delimited by "|" and there is more than eight fields per
>>> record.
>>>
>>> I think this might be more complicated than I assumed. Thanks anyway.
>>>
>>> -- Gary
>>>
>>> On 06/01/2010 04:26 PM, Jorden M wrote:
>>>> Just check NF.
>>>>
>>>> On Tue, Jun 1, 2010 at 4:00 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>>>> Wow, what's wrong with me? I'm trying to parse a file to
>>>>> eliminate any line from the file to the output where a particular
>>>>> field is is null. The 8th field in this case.
>>>>>
>>>>> I can't get it right! I haven't done an awk script in a long time but
>>>>> this should be simple stuff.
>>>>>
>>>>> Basically I'm trying to do:
>>>>>
>>>>> cat file | awk -F\| '$8 !~<NULL expression> {print}'
>>>>>
>>>>> Any help would be appreciated.
>>>>>
>>>>> Thanks.
>>>>>
>>>>> -- Gary
>>>>> _______________________________________________
>>>>> Wlug mailing list
>>>>> Wlug(a)mail.wlug.org
>>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>>
>>>> _______________________________________________
>>>> Wlug mailing list
>>>> Wlug(a)mail.wlug.org
>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>
>>>>
>>> _______________________________________________
>>> Wlug mailing list
>>> Wlug(a)mail.wlug.org
>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>
>>
>> _______________________________________________
>> Wlug mailing list
>> Wlug(a)mail.wlug.org
>> http://mail.wlug.org/mailman/listinfo/wlug
>>
>>
>
>
> ------------------------------------------------------------------------
>
> Subject:
> Re: [Wlug] Awk Null Field
> From:
> Jorden M <jrm8005(a)gmail.com>
> Date:
> Tue, 1 Jun 2010 17:24:38 -0400
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> So match "| |"? Or perhaps "|[ ]?|"?
>
> Or will that not work?
>
> On Tue, Jun 1, 2010 at 5:22 PM, Gary Hanley <gary(a)hanley.net> wrote:
>> There will be a space.
>>
>> -- Gary
>>
>> On 06/01/2010 05:14 PM, Jorden M wrote:
>>> What will happen if the field is null? Two pipes? Or will there be
>>> space in between?
>>>
>>> On Tue, Jun 1, 2010 at 5:08 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>>> Thanks, but that won't help here. Maybe I should have mentioned the
>>>> fields are delimited by "|" and there is more than eight fields per record.
>>>>
>>>> I think this might be more complicated than I assumed. Thanks anyway.
>>>>
>>>> -- Gary
>>>>
>>>> On 06/01/2010 04:26 PM, Jorden M wrote:
>>>>> Just check NF.
>>>>>
>>>>> On Tue, Jun 1, 2010 at 4:00 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>>>>> Wow, what's wrong with me? I'm trying to parse a file to
>>>>>> eliminate any line from the file to the output where a particular
>>>>>> field is is null. The 8th field in this case.
>>>>>>
>>>>>> I can't get it right! I haven't done an awk script in a long time but
>>>>>> this should be simple stuff.
>>>>>>
>>>>>> Basically I'm trying to do:
>>>>>>
>>>>>> cat file | awk -F\| '$8 !~<NULL expression> {print}'
>>>>>>
>>>>>> Any help would be appreciated.
>>>>>>
>>>>>> Thanks.
>>>>>>
>>>>>> -- Gary
>>>>>> _______________________________________________
>>>>>> Wlug mailing list
>>>>>> Wlug(a)mail.wlug.org
>>>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>>>
>>>>> _______________________________________________
>>>>> Wlug mailing list
>>>>> Wlug(a)mail.wlug.org
>>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>>
>>>>>
>>>> _______________________________________________
>>>> Wlug mailing list
>>>> Wlug(a)mail.wlug.org
>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>
>>> _______________________________________________
>>> Wlug mailing list
>>> Wlug(a)mail.wlug.org
>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>
>>>
>> _______________________________________________
>> Wlug mailing list
>> Wlug(a)mail.wlug.org
>> http://mail.wlug.org/mailman/listinfo/wlug
>>
>
>
>
> ------------------------------------------------------------------------
>
> Subject:
> Re: [Wlug] Awk Null Field
> From:
> Theo Van Dinter <felicity(a)kluge.net>
> Date:
> Tue, 1 Jun 2010 17:48:32 -0400
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> Unless I'm missing something, you should just be able to do ... awk
> -F\| '$8 {print}'
>
>
> On Tue, Jun 1, 2010 at 4:00 PM, Gary Hanley <gary(a)hanley.net> wrote:
>> Wow, what's wrong with me? I'm trying to parse a file to
>> eliminate any line from the file to the output where a particular
>> field is is null. The 8th field in this case.
>>
>> I can't get it right! I haven't done an awk script in a long time but
>> this should be simple stuff.
>>
>> Basically I'm trying to do:
>>
>> cat file | awk -F\| '$8 !~ <NULL expression> {print}'
>>
>> Any help would be appreciated.
>>
>> Thanks.
>>
>> -- Gary
>> _______________________________________________
>> Wlug mailing list
>> Wlug(a)mail.wlug.org
>> http://mail.wlug.org/mailman/listinfo/wlug
>>
>
>
> ------------------------------------------------------------------------
>
> Subject:
> Re: [Wlug] Awk Null Field
> From:
> Gary Hanley <gary(a)hanley.net>
> Date:
> Tue, 01 Jun 2010 17:46:17 -0400
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
> To:
> Worcester Linux Users Group <wlug(a)mail.wlug.org>
>
>
> No, that doesn't work. Here's how I tried it.
>
> My play file. Notice records two and four:
> One|two|three|four|Five|Six
> One|two||four|Five|Six
> One|two|three|four|Five|Six
> One|two||four|Five|Six
> One|two|three|four|Five|Six
> One|two|three|four|Five|Six
>
> Here's the output. Should have returned two records:
> cat file.txt | awk -F\| '$3 = "| |" {print}'
> One two | | four Five Six
> One two | | four Five Six
> One two | | four Five Six
> One two | | four Five Six
> One two | | four Five Six
> One two | | four Five Six
>
> And:
> cat file.txt | awk -F\| '$3 = "|[ ]?|" {print}'
> One two |[ ]?| four Five Six
> One two |[ ]?| four Five Six
> One two |[ ]?| four Five Six
> One two |[ ]?| four Five Six
> One two |[ ]?| four Five Six
> One two |[ ]?| four Five Six
>
> I'm probably have to refresh myself with the regular expression stuff
> and build a script. Not a bad thing I guess. Somehow I just assumed
> checking for a blank field in awk was a no-brainer. Now I'm going to
> have to think. :-\
>
> Thanks Jorden.
>
> -- Gary
>
> On 06/01/2010 05:24 PM, Jorden M wrote:
>> So match "| |"? Or perhaps "|[ ]?|"?
>>
>> Or will that not work?
>>
>> On Tue, Jun 1, 2010 at 5:22 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>> There will be a space.
>>>
>>> -- Gary
>>>
>>> On 06/01/2010 05:14 PM, Jorden M wrote:
>>>> What will happen if the field is null? Two pipes? Or will there be
>>>> space in between?
>>>>
>>>> On Tue, Jun 1, 2010 at 5:08 PM, Gary Hanley<gary(a)hanley.net> wrote:
>>>>> Thanks, but that won't help here. Maybe I should have mentioned the
>>>>> fields are delimited by "|" and there is more than eight fields per
>>>>> record.
>>>>>
>>>>> I think this might be more complicated than I assumed. Thanks anyway.
>>>>>
>>>>> -- Gary
>>>>>
>>>>> On 06/01/2010 04:26 PM, Jorden M wrote:
>>>>>> Just check NF.
>>>>>>
>>>>>> On Tue, Jun 1, 2010 at 4:00 PM, Gary Hanley<gary(a)hanley.net>
>>>>>> wrote:
>>>>>>> Wow, what's wrong with me? I'm trying to parse a file to
>>>>>>> eliminate any line from the file to the output where a particular
>>>>>>> field is is null. The 8th field in this case.
>>>>>>>
>>>>>>> I can't get it right! I haven't done an awk script in a long time
>>>>>>> but
>>>>>>> this should be simple stuff.
>>>>>>>
>>>>>>> Basically I'm trying to do:
>>>>>>>
>>>>>>> cat file | awk -F\| '$8 !~<NULL expression> {print}'
>>>>>>>
>>>>>>> Any help would be appreciated.
>>>>>>>
>>>>>>> Thanks.
>>>>>>>
>>>>>>> -- Gary
>>>>>>> _______________________________________________
>>>>>>> Wlug mailing list
>>>>>>> Wlug(a)mail.wlug.org
>>>>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>>>>
>>>>>> _______________________________________________
>>>>>> Wlug mailing list
>>>>>> Wlug(a)mail.wlug.org
>>>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>>>
>>>>>>
>>>>> _______________________________________________
>>>>> Wlug mailing list
>>>>> Wlug(a)mail.wlug.org
>>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>>
>>>>
>>>> _______________________________________________
>>>> Wlug mailing list
>>>> Wlug(a)mail.wlug.org
>>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>>
>>>>
>>> _______________________________________________
>>> Wlug mailing list
>>> Wlug(a)mail.wlug.org
>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>
>>
>> _______________________________________________
>> Wlug mailing list
>> Wlug(a)mail.wlug.org
>> http://mail.wlug.org/mailman/listinfo/wlug
>>
>>
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Wlug mailing list
> Wlug(a)mail.wlug.org
> http://mail.wlug.org/mailman/listinfo/wlug
--
Steven Greenberg Email: steve(a)ssgreenberg.name
251 Holland Rd. Phone: (774)241-0095
Fiskdale, Massachusetts 01518-1231 Web: http://www.ssgreenberg.name
Other Email: s.greenberg(a)ieee.org ssg(a)alum.mit.edu
Wow, what's wrong with me? I'm trying to parse a file to
eliminate any line from the file to the output where a particular
field is is null. The 8th field in this case.
I can't get it right! I haven't done an awk script in a long time but
this should be simple stuff.
Basically I'm trying to do:
cat file | awk -F\| '$8 !~ <NULL expression> {print}'
Any help would be appreciated.
Thanks.
-- Gary
I have a HP DL385 G6 server that I want to put into
production. I'm looking for someone who would like to have fun
implementing this
project with me. Thanks in
advance.
Below is a summary of our goals
Setup Bios configurationSetup iLO managerInstall
additional 4 Gig Ram in serverInstall two SAS and 1 SATA
drives in a RAID configuration of our choice
Install Xen
server for virtualization
Setup virtual serversHarden server security
Your input and experience are highly valued. I'm very open to your
tips/suggestions.
--- On Thu, 5/27/10, wlug-request(a)mail.wlug.org <wlug-request(a)mail.wlug.org> wrote:
From: wlug-request(a)mail.wlug.org <wlug-request(a)mail.wlug.org>
Subject: Wlug Digest, Vol 79, Issue 19
To: wlug(a)mail.wlug.org
Date: Thursday, May 27, 2010, 9:27 PM
Send Wlug mailing list submissions to
   wlug(a)mail.wlug.org
To subscribe or unsubscribe via the World Wide Web, visit
   http://mail.wlug.org/mailman/listinfo/wlug
or, via email, send a message with subject or body 'help' to
   wlug-request(a)mail.wlug.org
You can reach the person managing the list at
   wlug-owner(a)mail.wlug.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Wlug digest..."
Today's Topics:
   1. Please indulge me. (Ken Jones)
   2. Re: Please indulge me. (Jorden M)
   3. Re: Please indulge me. (John Stoffel)
   4. Re: Please indulge me. (Justin St. Marie)
   5. Re: 232-TTL, locally? (Adam Gomes)
   6. Re: 232-TTL, locally? (Mike Leo)
   7. Re: 232-TTL, locally? (soup)
----------------------------------------------------------------------
Message: 1
Date: Thu, 27 May 2010 13:33:22 -0400
From: "Ken Jones" <kjones(a)ziplink.net>
Subject: [Wlug] Please indulge me.
To: <wlug(a)mail.wlug.org>
Message-ID: <0996212B4EF345DEADBB060626610B8B@kjonespc>
Content-Type: text/plain; format=flowed; charset="iso-8859-1";
   reply-type=original
When I was teenager a Model T Ford was an old car. My friend bought one for
$25. He painted it yellow and orange, cranked it up and rode it around town
with his girl friend in the passenger's seat and a case of beer in the
rumble seat.  Some years later we realized how much fun that was.
Same's true for computers.
Disclaimer ==> I have not tampered with SUN's choice of color scheme.
Ken
=======
Email scanned by PC Tools - No viruses or spyware found.
(Email Guard: 7.0.0.18, Virus/Spyware Database: 6.15050)
http://www.pctools.com/
=======
------------------------------
Message: 2
Date: Thu, 27 May 2010 14:13:31 -0400
From: Jorden M <jrm8005(a)gmail.com>
Subject: Re: [Wlug] Please indulge me.
To: Worcester Linux Users Group <wlug(a)mail.wlug.org>
Message-ID:
   <AANLkTikuJcn6o3w9rOWF7oexg7K4xG6G5aXjCkHM9bvs(a)mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
You have to admit yellow and orange would be cooler than the gray and
desaturated purple, though.
On Thu, May 27, 2010 at 1:33 PM, Ken Jones <kjones(a)ziplink.net> wrote:
> When I was teenager a Model T Ford was an old car. ?My friend bought one for
> $25. ?He painted it yellow and orange, cranked it up and rode it around town
> with his girl friend in the passenger's seat and a case of beer in the
> rumble seat. ? ?Some years later we realized how much fun that was.
>
> Same's true for computers.
>
> Disclaimer ==> I have not tampered with SUN's choice of color scheme.
>
> Ken
>
>
>
>
>
> =======
> Email scanned by PC Tools - No viruses or spyware found.
> (Email Guard: 7.0.0.18, Virus/Spyware Database: 6.15050)
> http://www.pctools.com/
> =======
> _______________________________________________
> Wlug mailing list
> Wlug(a)mail.wlug.org
> http://mail.wlug.org/mailman/listinfo/wlug
>
------------------------------
Message: 3
Date: Thu, 27 May 2010 14:22:31 -0400
From: "John Stoffel" <john(a)stoffel.org>
Subject: Re: [Wlug] Please indulge me.
To: Worcester Linux Users Group <wlug(a)mail.wlug.org>
Message-ID: <19454.47207.822003.553229(a)stoffel.org>
Content-Type: text/plain; charset=us-ascii
Jorden> You have to admit yellow and orange would be cooler than the
Jorden> gray and desaturated purple, though.
And pithy saying like "Four wheels, no brakes!" on the car. I guess
on the sun you could have... umm... "256Mb, no Swap!" or something
equally silly.Â
But yes, please don't let me stop you! I ran em myslef for years.Â
John
------------------------------
Message: 4
Date: Thu, 27 May 2010 14:26:01 -0400
From: "Justin St. Marie" <stmariejw(a)gmail.com>
Subject: Re: [Wlug] Please indulge me.
To: Worcester Linux Users Group <wlug(a)mail.wlug.org>
Message-ID:
   <AANLkTimAwPYVG5nslT0FOo3U7R5cQ2Ko7kmsSM5njY2g(a)mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Came across this.... old sun stuff not too far away (Lawrence)
http://boston.craigslist.org/nwb/sys/1753114433.html
On Thu, May 27, 2010 at 2:22 PM, John Stoffel <john(a)stoffel.org> wrote:
>
> Jorden> You have to admit yellow and orange would be cooler than the
> Jorden> gray and desaturated purple, though.
>
> And pithy saying like "Four wheels, no brakes!" on the car. I guess
> on the sun you could have... umm... "256Mb, no Swap!" or something
> equally silly.
>
> But yes, please don't let me stop you! I ran em myslef for years.
>
> John
> _______________________________________________
> Wlug mailing list
> Wlug(a)mail.wlug.org
> http://mail.wlug.org/mailman/listinfo/wlug
>
--
Justin St. Marie, RHCT
Systems Engineer
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.wlug.org/pipermail/wlug/attachments/20100527/4bc60591/attachmen…
------------------------------
Message: 5
Date: Thu, 27 May 2010 15:14:20 -0400
From: Adam Gomes <adam(a)unixgeek.net>
Subject: Re: [Wlug] 232-TTL, locally?
To: Worcester Linux Users Group <wlug(a)mail.wlug.org>
Message-ID:
   <AANLkTimxycUdvw3QgZbgEVXPkEv9KDOz5ivW1D72vSRn(a)mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
How "local"? Is Pawtucket, RI too far for you? Jabour Electronics might have
one, but I'm not sure if that's any closer to you than you-do-it.
On Fri, May 21, 2010 at 8:15 PM, Tom Misilo <tmisilo(a)gmail.com> wrote:
> If you cannot find anything locally, I would recommend picking up this:
>
> http://www.sparkfun.com/commerce/product_info.php?products_id=9718
>
> It is a USB cable with a built in FTDI Chip. Very good support for
> Linux and Windows alike.
>
> They also make cables that can be found at www.mouser.com that do not
> have the 6pin .1 header, but bare tinned wires.
>
> Tom
>
> On Fri, May 21, 2010 at 7:03 PM, soup <soupforare(a)gmail.com> wrote:
> > Anyone know of a hobby/electronics shop where I could get a 232-TTL
> > dongle, board or kit? Even just a bare MAX232 IC would be cool.
> > I don't want to have to drive up to you-do-it, that's the only place I
> > can think of that's left...
> >
> > Take care,
> > soup
> > _______________________________________________
> > Wlug mailing list
> > Wlug(a)mail.wlug.org
> > http://mail.wlug.org/mailman/listinfo/wlug
> >
>
> _______________________________________________
> Wlug mailing list
> Wlug(a)mail.wlug.org
> http://mail.wlug.org/mailman/listinfo/wlug
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.wlug.org/pipermail/wlug/attachments/20100527/259c54f9/attachmen…
------------------------------
Message: 6
Date: Thu, 27 May 2010 12:21:04 -0700 (PDT)
From: Mike Leo <mleo963(a)yahoo.com>
Subject: Re: [Wlug] 232-TTL, locally?
To: Worcester Linux Users Group <wlug(a)mail.wlug.org>
Message-ID: <480259.80441.qm(a)web51306.mail.re2.yahoo.com>
Content-Type: text/plain; charset="us-ascii"
http://eli.com/Â Â Â might also have what you are looking for, though I'm not really following this thread that closely!
________________________________
From: Adam Gomes <adam(a)unixgeek.net>
To: Worcester Linux Users Group <wlug(a)mail.wlug.org>
Sent: Thu, May 27, 2010 3:14:20 PM
Subject: Re: [Wlug] 232-TTL, locally?
How "local"? Is Pawtucket, RI too far for you? Jabour Electronics might have one, but I'm not sure if that's any closer to you than you-do-it.
On Fri, May 21, 2010 at 8:15 PM, Tom Misilo <tmisilo(a)gmail.com> wrote:
If you cannot find anything locally, I would recommend picking up this:
>
>http://www.sparkfun.com/commerce/product_info.php?products_id=9718
>
>>It is a USB cable with a built in FTDI Chip. Very good support for
>>Linux and Windows alike.
>
>>They also make cables that can be found at www.mouser.com that do not
>>have the 6pin .1 header, but bare tinned wires.
>
>>Tom
>
>
>>On Fri, May 21, 2010 at 7:03 PM, soup <soupforare(a)gmail.com> wrote:
>>> Anyone know of a hobby/electronics shop where I could get a 232-TTL
>>> dongle, board or kit? Even just a bare MAX232 IC would be cool.
>>> I don't want to have to drive up to you-do-it, that's the only place I
>>> can think of that's left...
>>>
>>> Take care,
>>> soup
>>> _______________________________________________
>>> Wlug mailing list
>>> Wlug(a)mail.wlug.org
>>> http://mail.wlug.org/mailman/listinfo/wlug
>>>
>
>>_______________________________________________
>>Wlug mailing list
>Wlug(a)mail.wlug.org
>http://mail.wlug.org/mailman/listinfo/wlug
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.wlug.org/pipermail/wlug/attachments/20100527/698d7f70/attachmen…
------------------------------
Message: 7
Date: Thu, 27 May 2010 21:27:43 -0400
From: soup <soupforare(a)gmail.com>
Subject: Re: [Wlug] 232-TTL, locally?
To: Worcester Linux Users Group <wlug(a)mail.wlug.org>
Message-ID: <4BFF1C0F.4080709(a)gmail.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
On 5/27/2010 3:21 PM, Mike Leo wrote:
> http://eli.com/Â Â Â might also have what you are looking for, though I'm
> not really following this thread that closely!
>
Unfortunately, eli is almost entirely computer stuff now, they used to
be randomly good for surplus.
Thanks to all replies! I ended up heading to you-do-it. They only had
some MAX clone ICs, but good enough, worked out in the end.
Take care,
soup
------------------------------
_______________________________________________
Wlug mailing list
Wlug(a)mail.wlug.org
http://mail.wlug.org/mailman/listinfo/wlug
End of Wlug Digest, Vol 79, Issue 19
************************************
When I was teenager a Model T Ford was an old car. My friend bought one for
$25. He painted it yellow and orange, cranked it up and rode it around town
with his girl friend in the passenger's seat and a case of beer in the
rumble seat. Some years later we realized how much fun that was.
Same's true for computers.
Disclaimer ==> I have not tampered with SUN's choice of color scheme.
Ken
=======
Email scanned by PC Tools - No viruses or spyware found.
(Email Guard: 7.0.0.18, Virus/Spyware Database: 6.15050)
http://www.pctools.com/
=======
My goal is to get Fedora 12-Beta up and running on my ULTRA1 Sparc. When I
tried installing it the system did not like my DISC 1.
1. I would like to check the checksums on the six CD's that I made from
your fedora 12-Beta source. I read that the only way is to shutdown, do
"STOP a" and type "Linux mediacheck". My system does not recognize the
"Linux mediacheck" command. Is there no way to do this operation from
within a running Aurora system?
2. I have checked. I really have two identical Aurora systems on my two
hard drives. The older one on the 17Gig drive from the ULTRA1 that died
does not boot correctly. The newer version on the 3.4 Gig disk is from last
week's successful installation of that same antique five CD .iso set. That
new installation had to be limited because of a problem with a language file
supporting emacs.
I would like to be running a modern Aurora, but still keep my archive files.
Any suggestions for a plan of action would be greatly appreciated.
Ken Jones
Ken
=======
Email scanned by PC Tools - No viruses or spyware found.
(Email Guard: 7.0.0.18, Virus/Spyware Database: 6.15050)
http://www.pctools.com/
=======
usually its .profile or .csh_profile or something to that effect. Like james
said, google is your friend. Also, chances are you're using bash so its
.bashrc
eric
On May 25, 2010 10:04 PM, "James Gray" <jamespgray(a)gmail.com> wrote:
On Tue, May 25, 2010 at 9:15 PM, Ken Jones <kjones(a)ziplink.net> wrote:
> Which configuration process...
For bash you can add the commands to set these variables for bash in
.bashrc if you use a different shell you'll need to edit a different
file. Google should be able to help you with this. You can set
variables system wide (all users) by editing /etc/profile (or at least
that is where ubuntu puts it). Thanks!
_______________________________________________
Wlug mailing list
Wlug(a)mail.wlug.org
http://mail.wlu...
Which configuration process creates the environmental variables?
I want to permanently add to my PATH. Presently I do it every time I logon.
Ken
=======
Email scanned by PC Tools - No viruses or spyware found.
(Email Guard: 7.0.0.18, Virus/Spyware Database: 6.15050)
http://www.pctools.com/
=======
Yes, Eric, this is the ULTRA 1 Creator you gave me. It had been my backup
machine. Now it is center stage. Seems to be doing fine. My problems have
been with installing a modern version of Aurora. Previously it had been
running Gentoo without X.
Thanks.
Ken
=======
Email scanned by PC Tools - No viruses or spyware found.
(Email Guard: 7.0.0.18, Virus/Spyware Database: 6.15050)
http://www.pctools.com/
=======