[ale] Re: Ale Digest, Vol 50, Issue 5

Kofi Boateng kboateng_cs at yahoo.com
Fri Jul 8 08:30:27 EDT 2005


Hi everybody, Is the NE ALE meeting currently meeting. I drove by satelite blvd to attend this month meeting but i did not see the building mentioned in the directions. Please if anyone knows where it is please let me know. 
 
Also, i am looking for a career change so if anyone of you working at/know available positions for Applications Developer with about 2yrs exp with C,C++,Java,PHP,MySql,Linux please let me know. I have other skill set but i cannot type them all here. Thank you.

ale-request at ale.org wrote:
Send Ale mailing list submissions to
ale at ale.org

To subscribe or unsubscribe via the World Wide Web, visit
http://www.ale.org/mailman/listinfo/ale
or, via email, send a message with subject or body 'help' to
ale-request at ale.org

You can reach the person managing the list at
ale-owner at ale.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Ale digest..."


Today's Topics:

1. Re: Parsing CSV file in perl (Jimmy Oliver)
2. ip route and using linux as a "real" router (Grant Robertson)
3. RE: Recomendation for GUI frontend to MySQL (Armsby John-G16665)
4. Linux based NAS (Ryan Fish)
5. Re: Linux based NAS (Denny Chambers)
6. Re: ip route and using linux as a "real" router (Jason Day)
7. Re: SUSE LINUX 9.3 ISO images Released to Mirrors (Dow Hurst)


----------------------------------------------------------------------

Message: 1
Date: Thu, 7 Jul 2005 09:59:47 -0400
From: Jimmy Oliver 
Subject: Re: [ale] Parsing CSV file in perl
To: Atlanta Linux Enthusiasts 
Message-ID: 
Content-Type: text/plain; charset=ISO-8859-1

On 7/6/05, Christopher Fowler wrote:
> I'm trying to parse a CSV file in perl and I'm having a issue with some
> of the columns being blank.
> 

I usually convert tab separated CSV's to actual comma delimited CSV's
then I use the perl split function.


> Here is a sample piece of data.
> 
> Id LASTNAME FIRSTNAME
> Adams Portia
> 10572 Alexander Robert
> 
> You can see that the first row does not have an ID. This can be true
> for all columns. They may or may not have values.
> 
> Here is how I'm trying the parse:
> 
> open TXT, "< Expanded_2005_Select_1.csv";
> while() {
> m/^(\d+?)\t/;
> print "$1\n";
> }
> 
> Each columns is tab delimeted. When I run this I get the lastname in $1
> for the first line and the the ID in $1 for the second line. I need to
> somehow create a regex that would be unforgiving of nothing being there.
> 
> Data file looks like this:
> 1 "ID" "LASTNAME" "FIRSTNAME" "TITLE" "COMPANY"
> "ADDRESS " "ADDRESS2" "CITY" "STATE" "ZIPCODE"
> "COUNTRY" "PHONE" "EMAIL" "REGTYPE" "DATE" "TIME"
> "Question1" "Questio n2" "Question3" "READERID"
> 2 "Adams" "Portia" "Director" "The Rockefeller
> Univers ity" "1230 York Ave " "New York"
> "NY" "10021-6 399" "USA" 2123277719
> "adams at rockefeller.edu" "Member"
> 3 10572 "Alexander" "Robert" "Manager Voice & Video
> Solution" "Air Products and Chemicals, Inc" "7201
> Hamilton Blvd" "Allentown" "PA" "18195-1501"
> "USA" "610-481-7156" "alexanrw at airproducts.com" "Member"
> 06/12/2005 06:06:14 pm 60711
> 
> The 1,2,3 that you see is the line numbers in VI
> 
> 
> _______________________________________________
> Ale mailing list
> Ale at ale.org
> http://www.ale.org/mailman/listinfo/ale
> 


-- 
________________________
Jimmy Oliver
http://www.jimmyoliver.net
email: jimmy at jimmyoliver.net
lists: jimmyoliver at gmail.com


------------------------------

Message: 2
Date: Thu, 7 Jul 2005 13:12:21 -0400
From: Grant Robertson 
Subject: [ale] ip route and using linux as a "real" router
To: Atlanta Linux Enthusiasts 
Message-ID: 
Content-Type: text/plain; charset=ISO-8859-1

I'm very confused, so if I'm way off base in anything I write, forgive
me and correct me.

I have a /28 network that I need to route through/using a 2.2 kernel
machine. The machine that will act as a router has a main ip of
x.x.67.227, and the subnet I'm trying to route is x.x.72.208/28
(addresses 209-215).

I thought if I added x.x.72.209 to the "router" machine, and then
modified my route table that it would pass the packets as I expected..

'ip route add x.x.72.208/28 via x.x.72.209'

That command succeeds, and indeed the route table then shows

x.x.72.208/28 via x.x.72.209

but trying to ping x.x.72.210 (the only machine on the new network so
far) from outside results in

Reply from x.x.67.227: Destination host unreachable.

if I ping that .210 machine from the router, it works. (with or
without the route line.. )

I've tried in vein to search for info on ip route, and I find plenty
but, nothing that I've been able to really apply. It's either far to
simple, or far to complex..

Can anyone tell me what I might be doing wrong? Or point me to a doc
that I should be reading/folowing?

Many thanks.
-G


------------------------------

Message: 3
Date: Thu, 7 Jul 2005 14:59:30 -0400 
From: Armsby John-G16665 
Subject: RE: [ale] Recomendation for GUI frontend to MySQL
To: "'Atlanta Linux Enthusiasts'" 
Message-ID:
<31EF3A450BCED5119D080002A5CE4D911262DEF4 at ga25exb01.wepd.mot.com>
Content-Type: text/plain

Try a web search on hyperion. We use it here for oracle queries. If you bomb out, repost and I will try to find the venor. We also used to call it "brio". Users here were very successfully in creating inaccurate reports because they did not understand tables, relationships, etc. GUI is nice however. IT loved it as there was no work for them to do.


-----Original Message-----
From: ale-bounces at ale.org [mailto:ale-bounces at ale.org] On Behalf Of Christopher Fowler
Sent: Friday, July 01, 2005 8:49 PM
To: Atlanta Linux Enthusiasts
Subject: Re: [ale] Recomendation for GUI frontend to MySQL


Speaking of interfaces to the DB is there any good reporting interface that runs on Linux. Could be similar to Crystal Reports. Web based would be great.

I want to give people the ability to write their own reports. Problem is that we have almost 20 tables with id's and mappings so to generate a meaningful report requires complex SQL to join tables and to cull out other stuff.


On Fri, 2005-07-01 at 18:49 +0000, Jim Philips wrote:
> On Friday 01 July 2005 09:41 pm, David Corbin wrote:
> > > Phpmyadmin is nice. I've used it and think it really helps out 
> > > with Mysql maintenance.
> >
> > I'd really prefer a "traditional desktop GUI", to a web app.
> 
> MySQL offers two tools that may get you there: MySQL Administrator and 
> MySQL Query Browser. They are separate programs. For my money, I would 
> still go with PHPMySQLAdmin. It is really best of breed and mature. 
> I've been using it off and on for about six years. It's easy to use 
> and and it's rock solid reliable. That counts for more than the convenience of a GUI, in my book.
> _______________________________________________
> Ale mailing list
> Ale at ale.org
> http://www.ale.org/mailman/listinfo/ale

_______________________________________________
Ale mailing list
Ale at ale.org
http://www.ale.org/mailman/listinfo/ale


------------------------------

Message: 4
Date: Thu, 7 Jul 2005 16:05:59 -0400
From: "Ryan Fish" 
Subject: [ale] Linux based NAS
To: "'Atlanta Linux Enthusiasts'" 
Message-ID:
<20050707200518.OTLC29052.ibm68aec.bellsouth.net at win2kpro1>
Content-Type: text/plain; charset="us-ascii"

Hello all,



Have any of you used any of the Linux-based backup/NAS applications/OS's
available on the net? If so, which one(s) and what are your thoughts? I
have read a bit about NASLite, Darma NAS OS, afbackup, AMANDA, Bacula, Mondo
and BrightStor ARCServe Backup for Linux. I am looking for a relatively
inexpensive NAS-style solution for the backing up of a few GB of information
as the current method used is causing the server to run out of space. This
would need to work in a RHEL 3 ES/AS environment.



Thank you!

-Ryan

-------------- next part --------------
An HTML attachment was scrubbed...


------------------------------

Message: 5
Date: Thu, 07 Jul 2005 15:17:36 -0500
From: Denny Chambers 
Subject: Re: [ale] Linux based NAS
To: FishR at bellsouth.net, Atlanta Linux Enthusiasts 
Message-ID: <42CD8DE0.9040704 at bugfixer.net>
Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...

-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3190 bytes
Desc: S/MIME Cryptographic Signature


------------------------------

Message: 6
Date: Thu, 7 Jul 2005 16:34:06 -0400
From: Jason Day 
Subject: Re: [ale] ip route and using linux as a "real" router
To: me at grantrobertson.com, Atlanta Linux Enthusiasts 
Message-ID: <20050707203405.GI6834 at worldnet.att.net>
Content-Type: text/plain; charset=us-ascii

On Thu, Jul 07, 2005 at 01:12:21PM -0400, Grant Robertson wrote:
> but trying to ping x.x.72.210 (the only machine on the new network so
> far) from outside results in
> 
> Reply from x.x.67.227: Destination host unreachable.
> 
> if I ping that .210 machine from the router, it works. (with or
> without the route line.. )

Sorry if this is too obvious, but do you have a firewall on the router?
If so, have you modified the firewall rules to allow forwarding to the
new network?

-- 
Jason Day jasonday at
http://jasonday.home.att.net worldnet dot att dot net

"Of course I'm paranoid, everyone is trying to kill me."
-- Weyoun-6, Star Trek: Deep Space 9


------------------------------

Message: 7
Date: Fri, 08 Jul 2005 00:42:33 -0400
From: Dow Hurst 
Subject: Re: [ale] SUSE LINUX 9.3 ISO images Released to Mirrors
To: Atlanta Linux Enthusiasts 
Message-ID: <42CE0439.2060407 at mindspring.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Anyone can use the ftp.ale.org mirror to do a net install. This has the 
complete DVD based set of rpms rather than the CD based set of rpms that 
are missing a few such as checkinstall or the kernel symbols rpm. Also, 
the multimedia comment is bogus since the suse rpm based repository at 
http://packman.links2linux.org/ has all the multimedia rpms and scripts 
needed to have Mplayer on suse.

Go into Yast2 after downloading and starting an install with the 1st 
CD. Change the source of the install so your doing a ftp install.
The server in Yast2 would be ftp.ale.org
The path would be pub/suse/i386/9.3
note the lack of an initial / or ending / on the path when filling in 
the blanks in the Yast2 form. I think the Yast2 installation tool adds 
what it needs automatically since it is looking for a file in the 
distribution on the server that describes the repository and what it 
contains.
Dow


Van Loggins wrote:
> http://distrowatch.com/?newsid=02749#0
>
> article text is as follows:
>
> Some nine weeks after the official release of SUSE 
> LINUX 9.3, an installable DVD image of 
> the product has been released to SUSE's download mirrors. SUSE is one 
> of the leading Linux distributions on the market; its latest release 
> is compiled from over 1,000 popular software packages and provides an 
> early look at some emerging technologies, such as Xen virtualisation 
> and Beagle desktop search. Despite that, many reviewers were left 
> unimpressed by what they call a "deliberate crippling" of multimedia 
> support in this release. See the distribution's features pages 
> for 
> further information about SUSE LINUX 9.3. The DVD image is now 
> available from a number of German 
> 
> and international 
> 
> mirror sites, such as this one: SUSE-9.3-Eval-DVD.iso 
> 
> (4,280MB, MD5 ). As 
> usual, a small network installation CD image for direct installation 
> from a remote FTP or HTTP server is also available in the same 
> directory as the DVD image.
>
> End of article
>
>
> Note in addition to the downloadable DVD image they also have a 5 disk 
> CD ISO image set available for download for the professional version. 
> I am not sure if it is the full Professional version or if it is 
> missing packages.
>
> the closet mirror I have found that has it is the Georgia Tech mirror 
> site. I'm pulling my cd disk iso images from there.
>
> I thought this might be of interest to all of the ALE members who use 
> SUSE
>
>
>
>



------------------------------

_______________________________________________
Ale mailing list
Ale at ale.org
http://www.ale.org/mailman/listinfo/ale

End of Ale Digest, Vol 50, Issue 5
**********************************
-------------- next part --------------
An HTML attachment was scrubbed...




More information about the Ale mailing list