GNHLUG Nashua meeting, next Wed., May 26, Marthas

2004-05-21 Thread Rob Lembree
  What: Introduction to Fedora
Who: Justin Seiferth
  Where: Martha's Exchange, Nashua, NH, second floor
   Date: Wed, 26 May 2004
   Time: Presentation at 7:30 PM; dinner starts around 6:00 PM
Justin Seiferth will present an introduction and overview of the
Fedora Distribution. He'll describe how it's both similar and
different than it's godfather Redhat 9. You can download
Fedora from fedora.redhat.com to try it out. Justin will have
a few copies of it to give away after the talk.
Justin Seiferth is the Technical Director of a small Wakefield
MA company called Odyssey Systems Consulting. He
provides support to various Federal Agencies. He also
teaches a number of open source based courses including
an "Introduction to Linux" using Fedora for UMASS. Justin
lives in Pepperell, MA and besides open source software
he likes to cycle and drink beer. You can see more at
www.48park.com.
As always, anyone is welcome.   Dinner beforehand will be
downstairs at Martha's beginning around 6.
--
Rob Lembree
Advanced Technology Group
SavaJe Technologies, Inc.
___
gnhlug-announce mailing list
[EMAIL PROTECTED]
http://mail.gnhlug.org/mailman/listinfo/gnhlug-announce
___
gnhlug-discuss mailing list
[EMAIL PROTECTED]
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


Re: GNHLUG Nashua meeting, next Wed., May 26, Marthas

2004-05-21 Thread Thomas M. Albright
On Fri, 21 May 2004, Rob Lembree wrote:

>What: Introduction to Fedora
>  Who: Justin Seiferth
>Where: Martha's Exchange, Nashua, NH, second floor
> Date: Wed, 26 May 2004
> Time: Presentation at 7:30 PM; dinner starts around 6:00 PM
> 
> Justin Seiferth will present an introduction and overview of the
> Fedora Distribution.
>
Core 1, Core 2, or just Fedora in general?

-- 
TARogue (Linux user number 234357)
 Unthinking respect for authority is the greatest enemy of truth.
 -Albert Einstein, physicist, Nobel laureate (1879-1955)
___
gnhlug-discuss mailing list
[EMAIL PROTECTED]
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


Re: Emulating a Cyclades/Annex

2004-05-21 Thread Michael ODonnell

OK - I figured out how to relay traffic between a serial
port and a network-attached process - I thought it'd be
simple, but didn't figure it'd be THIS simple.  On SystemB
(the intermediate system with a serial port connected to the
system being debugged [SystemA] and which is also expected to
field network connections from SystemC that are to be routed
to SystemA via the serial port in question) I just say:

 socket -l -s somePortNumber /dev/ttyS0 2>&1

...which will start up a server that routes all traffic from
anybody (one at a time) who opens a socket on somePortNumber
directly to /dev/ttyS0.  So, on SystemC where I have built
the kernels in question and have my kernel source codes,
I start GDB and say:

  target remote SystemB:somePortNumber

...and then on SystemA (whose ttyS1 is connected to SystemB's
ttyS0) where I'm running a kernel that's had the KGDB patches
inflicted upon it, I start my KGDB-patched kernel with these
items on the command line:

  gdb gdbttyS=1 gdbbaud=115200

which arranges for an early KGDB breakpoint, mentions
/dev/ttyS1 as the port to use and 115200 as the baud rate.
 
___
gnhlug-discuss mailing list
[EMAIL PROTECTED]
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss