public inbox for speakup@linux-speakup.org
 help / color / mirror / Atom feed
* Linux Programming
@  Radical NetSurfer
   ` Luke Yelavich
   ` Linux Programming Janina Sajka
  0 siblings, 2 replies; 20+ messages in thread
From: Radical NetSurfer @  UTC (permalink / raw)
  To: speakup; +Cc: RadSurfer

Perhaps someone can please sterr me in the right
direction with this request:

I have the standard Fedora Core 5 working just fine
for me on 2 different machines.

As I have mentioned earlier, I happen to have both a
Double Talk ISA and a Dec Talk ISA card.

I have tried all by myself to create a plugin for
Xchat for Linux that would send all the chat text to
an appropriate card. Lets concentrate with Doubletalk
ISA.

I am using an inline assembly block. It compiles
perfectly fine. The plugin is accepted and appears to
work only until I initialized the Doubletalk ISA card,
the Xchat abruptly closes.

I suspect that I need to ask permission from Linux to
be allowed to access the DMA address space that the
Doubletalk ISA card is using, and since I did not make
formal request to use these memory addresses, Linux
responds by totally shutting down Xchat IRC client.

My question is simply this:
Could I find help from someone who would be willing to
point to books on how to write proper modern linux
drivers (under Fedora Core), or to another mailing
list 
where we can chat purely about programming issues.

I also have gaim, and use AOL's Instant Messenger.
If you would love to discuss either installation
issues 
with Speakup or Linux Programming issues, please let
me know.

Let me just mention that I have a working version of a
DLL plugin for Xchat IRC Clinet under Windows 98SE for
both the Doubletalk and the DecTalk Cards... so based
on that I know I must be on the correct track. The
situation is of course, Windows 98SE is not picky
about allowing software to access hardware without
getting special permission from the operating system.
But at least I know the inline assembly code does
indeed work properly by themselves.  My goal is to
learn how to achieve this 
success with Linux.

Thank you.

//Rich//




 
____________________________________________________________________________________
Sponsored Link

Get an Online or Campus degree
Associate's, Bachelor's, or Master's - in less than one year.
http://www.findtherightschool.com


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
   Linux Programming Radical NetSurfer
@  ` Luke Yelavich
     ` Kirk Reiser
     ` Radical NetSurfer
   ` Linux Programming Janina Sajka
  1 sibling, 2 replies; 20+ messages in thread
From: Luke Yelavich @  UTC (permalink / raw)
  To: speakup

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Wed, Nov 08, 2006 at 11:34:19AM EST, Radical NetSurfer wrote:
> I have tried all by myself to create a plugin for
> Xchat for Linux that would send all the chat text to
> an appropriate card. Lets concentrate with Doubletalk
> ISA.
> 
> I am using an inline assembly block. It compiles
> perfectly fine. The plugin is accepted and appears to
> work only until I initialized the Doubletalk ISA card,
> the Xchat abruptly closes.

How about you just use the dtlk module in the kernel, make the /dev/dtlk 
device, and send your text to that?

I think that would be a lot easier.
- -- 
Luke Yelavich
GPG key: 0xD06320CE 
	 (http://www.themuso.com/themuso-gpg-key.txt)
Email & MSN: themuso@themuso.com
Jabber: themuso@jabber.org.au
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFFUS3zjVefwtBjIM4RAmr1AJ9ITA7I+lxVPBUhxgWeUYRiNIcsCACfRuw1
oH4gZBcTXeqcfzaHsNDr4ws=
=78nG
-----END PGP SIGNATURE-----


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
   ` Luke Yelavich
@    ` Kirk Reiser
     ` Radical NetSurfer
  1 sibling, 0 replies; 20+ messages in thread
From: Kirk Reiser @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

First of all, there is no problem discussing programming topics on
this list so don't be concerned about that.  Secondly, I agree with
Luke the source for the dtlk module which you can find in your linux
source tree under drivers/char/dtlk.c is a good place to start if you
want info.  As Luke also points out however it is a complete driver
therefore there is no need to write your own other than for the pure
joy of it.

O'Reilly has quite a few books on writing drivers under gnu/linux and
at least one book on the linux kernel internals both good reads.

You can also look at the speakup drivers for the DoubleTalk and
DECTalk which will also give you more insight so there is a lot of
information available.

Now to answer your specific issue, to access any hardware as you have
surmised one must register the request to talk to that hardware with
the appropriate registration routines for the hardware you wish to
address.  You will see how that is done in all of the above mentioned
code routines.

  Kirk

-- 

Kirk Reiser				The Computer Braille Facility
e-mail: kirk@braille.uwo.ca		University of Western Ontario
phone: (519) 661-3061


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
   ` Luke Yelavich
     ` Kirk Reiser
@    ` Radical NetSurfer
       ` Igor Gueths
       ` Igor Gueths
  1 sibling, 2 replies; 20+ messages in thread
From: Radical NetSurfer @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.; +Cc: RadSurfer

This is what I have discovered so far:

ISA slot #1: 56k Modem
ISA slot #2: DoubleTalk
PCI sound/network/etc.

Activate a terminal.
Become super-user.
type:
/sbin/modprobe dtlk
and immediately I hear these words coming out of the
doubletalk card:
"Doubletalk Found."

Ok. So far so good you would think.
echo 'Hello World!' >/dev/dtlk
echo 'Hello World!' 1>/dev/dtlk
result in nothing being heard.

If I exit super-user, I get Permission Denied.
I know one has to be very careful as super user and
where you redirect things.

I wrote me a little gcc program that attempts to
dtlk = open('/dev/dtlk',O_RDWR);
and dtlk is always -1, meaning it couldn't find and/or
open the device
so that stops me cold.

On the one hand, apparently Fedora see's my Doubletalk
card,
on the other hand, I find no way to access it.
I do not want to be in super-user mode all the time
just to access the card, and that should not be
necessary.

I did also discover the, as yet not too helpful, 
C header file located here:
/usr/include/linux/dtlk.h

and the modproble module is located where it should
be:
/lib/modules/2.6.15-1.2054_FC5/kernel/drivers/char/dtlk.ko

What I would greatly appreciate is a gcc code snippet
I could compile that would cause any string I send to
a function to simply goto the card...

I am working on downloading what source I get.

Thanks for the assist.

//Rich//

--- Luke Yelavich <themuso@themuso.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> On Wed, Nov 08, 2006 at 11:34:19AM EST, Radical
> NetSurfer wrote:
> > I have tried all by myself to create a plugin for
> > Xchat for Linux that would send all the chat text
> to
> > an appropriate card. Lets concentrate with
> Doubletalk
> > ISA.
> > 
> > I am using an inline assembly block. It compiles
> > perfectly fine. The plugin is accepted and appears
> to
> > work only until I initialized the Doubletalk ISA
> card,
> > the Xchat abruptly closes.
> 
> How about you just use the dtlk module in the
> kernel, make the /dev/dtlk 
> device, and send your text to that?
> 
> I think that would be a lot easier.
> - -- 
> Luke Yelavich
> GPG key: 0xD06320CE 
> 	 (http://www.themuso.com/themuso-gpg-key.txt)
> Email & MSN: themuso@themuso.com
> Jabber: themuso@jabber.org.au
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.3 (GNU/Linux)
> 
>
iD8DBQFFUS3zjVefwtBjIM4RAmr1AJ9ITA7I+lxVPBUhxgWeUYRiNIcsCACfRuw1
> oH4gZBcTXeqcfzaHsNDr4ws=
> =78nG
> -----END PGP SIGNATURE-----
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
>
http://speech.braille.uwo.ca/mailman/listinfo/speakup
> 




 
____________________________________________________________________________________
Sponsored Link

Get an Online or Campus degree
Associate's, Bachelor's, or Master's - in less than one year.
http://www.findtherightschool.com


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
     ` Radical NetSurfer
@      ` Igor Gueths
       ` Igor Gueths
  1 sibling, 0 replies; 20+ messages in thread
From: Igor Gueths @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Hi. Just a suggestion; try doing ls /dev/dtlk and see what you get. It's entirely possible that the device node doesn't exist, in which case you will have to manually create it.
On Wed, Nov 08, 2006 at 06:08:53AM -0800, Radical NetSurfer wrote:
> This is what I have discovered so far:
> 
> ISA slot #1: 56k Modem
> ISA slot #2: DoubleTalk
> PCI sound/network/etc.
> 
> Activate a terminal.
> Become super-user.
> type:
> /sbin/modprobe dtlk
> and immediately I hear these words coming out of the
> doubletalk card:
> "Doubletalk Found."
> 
> Ok. So far so good you would think.
> echo 'Hello World!' >/dev/dtlk
> echo 'Hello World!' 1>/dev/dtlk
> result in nothing being heard.
> 
> If I exit super-user, I get Permission Denied.
> I know one has to be very careful as super user and
> where you redirect things.
> 
> I wrote me a little gcc program that attempts to
> dtlk = open('/dev/dtlk',O_RDWR);
> and dtlk is always -1, meaning it couldn't find and/or
> open the device
> so that stops me cold.
> 
> On the one hand, apparently Fedora see's my Doubletalk
> card,
> on the other hand, I find no way to access it.
> I do not want to be in super-user mode all the time
> just to access the card, and that should not be
> necessary.
> 
> I did also discover the, as yet not too helpful, 
> C header file located here:
> /usr/include/linux/dtlk.h
> 
> and the modproble module is located where it should
> be:
> /lib/modules/2.6.15-1.2054_FC5/kernel/drivers/char/dtlk.ko
> 
> What I would greatly appreciate is a gcc code snippet
> I could compile that would cause any string I send to
> a function to simply goto the card...
> 
> I am working on downloading what source I get.
> 
> Thanks for the assist.
> 
> //Rich//
> 
> --- Luke Yelavich <themuso@themuso.com> wrote:
> 
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> > 
> > On Wed, Nov 08, 2006 at 11:34:19AM EST, Radical
> > NetSurfer wrote:
> > > I have tried all by myself to create a plugin for
> > > Xchat for Linux that would send all the chat text
> > to
> > > an appropriate card. Lets concentrate with
> > Doubletalk
> > > ISA.
> > > 
> > > I am using an inline assembly block. It compiles
> > > perfectly fine. The plugin is accepted and appears
> > to
> > > work only until I initialized the Doubletalk ISA
> > card,
> > > the Xchat abruptly closes.
> > 
> > How about you just use the dtlk module in the
> > kernel, make the /dev/dtlk 
> > device, and send your text to that?
> > 
> > I think that would be a lot easier.
> > - -- 
> > Luke Yelavich
> > GPG key: 0xD06320CE 
> > 	 (http://www.themuso.com/themuso-gpg-key.txt)
> > Email & MSN: themuso@themuso.com
> > Jabber: themuso@jabber.org.au
> > -----BEGIN PGP SIGNATURE-----
> > Version: GnuPG v1.4.3 (GNU/Linux)
> > 
> >
> iD8DBQFFUS3zjVefwtBjIM4RAmr1AJ9ITA7I+lxVPBUhxgWeUYRiNIcsCACfRuw1
> > oH4gZBcTXeqcfzaHsNDr4ws=
> > =78nG
> > -----END PGP SIGNATURE-----
> > 
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> >
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > 
> 
> 
> 
> 
>  
> ____________________________________________________________________________________
> Sponsored Link
> 
> Get an Online or Campus degree
> Associate's, Bachelor's, or Master's - in less than one year.
> http://www.findtherightschool.com
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> 
> -- 
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
> 

- -- 
For an IRC experience without all the clutter, check out BOFHNet at irc.bofhnet.us.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iQIVAwUBRVICM6e2pgKIdGq4AQpMlQ/+J7762BsZxpj34tVZEfV1EaOoE/e2Wvod
9iF07q+97QNbS//GJcnF+L5tAFswEO3x9q4VO7zkgTgo6GLJJPTwtvJGjDq+Hmw4
N3QQzxouE2YBOVe5vmoHcZiT+Ih3/GqZUIThahfHKxNBUen5Ky6Wzv6p0+AXkSx7
lA4PijW4zmwvr7GmLmcZzOIVEyvPzVNTNhUNCruS233g1vw+/MZ+xxE69laFea30
XVJggmtzN06kM05lvtXTfc+7hD1ooFFX1F2lv6HuoVsvx7t+UFwqlHWzqjIdK+Sb
/XrIHElsCXIbmNGJtBH0ROe0ojC7pC8KkM+LUYiDcxqnELA5GkiS3P/X2/RBrAMB
OLddH4KrrBvZ+e6HsE+LXL1Im36dx1yOX3oYPgHr7qrEwqeqne9F+UO/p2UgV6mL
LvlC4lXpvvDoPxeewqHy3R5ArZ2dHsdi+f0hvJLRprdSNw64h08Cpssltoe2LTab
qHEFLwVmklBj17QeCmyoOuOeTXtbrTmDc/Q0YB1T2WPXjXFhNfYi2WqMk6L3fbR3
skil7jlynWy964OzT10x3LFz1bWXA62aGpQzC7cZZ4xqfAoBgQAB18IBFAFOWkLT
SrrWcwUxhKXrLEmA4FNFfQiLXltOWK05NmT8nZn04o4L1oRByFWcxbv6fE3f4fgE
SUsAIKjgBc8=
=AGyH
-----END PGP SIGNATURE-----

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
     ` Radical NetSurfer
       ` Igor Gueths
@      ` Igor Gueths
         ` Radical NetSurfer
  1 sibling, 1 reply; 20+ messages in thread
From: Igor Gueths @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Sorry I forgot to mention how you should attempt creating the device. Use mknod (man mknod) for more info.
On Wed, Nov 08, 2006 at 06:08:53AM -0800, Radical NetSurfer wrote:
> This is what I have discovered so far:
> 
> ISA slot #1: 56k Modem
> ISA slot #2: DoubleTalk
> PCI sound/network/etc.
> 
> Activate a terminal.
> Become super-user.
> type:
> /sbin/modprobe dtlk
> and immediately I hear these words coming out of the
> doubletalk card:
> "Doubletalk Found."
> 
> Ok. So far so good you would think.
> echo 'Hello World!' >/dev/dtlk
> echo 'Hello World!' 1>/dev/dtlk
> result in nothing being heard.
> 
> If I exit super-user, I get Permission Denied.
> I know one has to be very careful as super user and
> where you redirect things.
> 
> I wrote me a little gcc program that attempts to
> dtlk = open('/dev/dtlk',O_RDWR);
> and dtlk is always -1, meaning it couldn't find and/or
> open the device
> so that stops me cold.
> 
> On the one hand, apparently Fedora see's my Doubletalk
> card,
> on the other hand, I find no way to access it.
> I do not want to be in super-user mode all the time
> just to access the card, and that should not be
> necessary.
> 
> I did also discover the, as yet not too helpful, 
> C header file located here:
> /usr/include/linux/dtlk.h
> 
> and the modproble module is located where it should
> be:
> /lib/modules/2.6.15-1.2054_FC5/kernel/drivers/char/dtlk.ko
> 
> What I would greatly appreciate is a gcc code snippet
> I could compile that would cause any string I send to
> a function to simply goto the card...
> 
> I am working on downloading what source I get.
> 
> Thanks for the assist.
> 
> //Rich//
> 
> --- Luke Yelavich <themuso@themuso.com> wrote:
> 
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> > 
> > On Wed, Nov 08, 2006 at 11:34:19AM EST, Radical
> > NetSurfer wrote:
> > > I have tried all by myself to create a plugin for
> > > Xchat for Linux that would send all the chat text
> > to
> > > an appropriate card. Lets concentrate with
> > Doubletalk
> > > ISA.
> > > 
> > > I am using an inline assembly block. It compiles
> > > perfectly fine. The plugin is accepted and appears
> > to
> > > work only until I initialized the Doubletalk ISA
> > card,
> > > the Xchat abruptly closes.
> > 
> > How about you just use the dtlk module in the
> > kernel, make the /dev/dtlk 
> > device, and send your text to that?
> > 
> > I think that would be a lot easier.
> > - -- 
> > Luke Yelavich
> > GPG key: 0xD06320CE 
> > 	 (http://www.themuso.com/themuso-gpg-key.txt)
> > Email & MSN: themuso@themuso.com
> > Jabber: themuso@jabber.org.au
> > -----BEGIN PGP SIGNATURE-----
> > Version: GnuPG v1.4.3 (GNU/Linux)
> > 
> >
> iD8DBQFFUS3zjVefwtBjIM4RAmr1AJ9ITA7I+lxVPBUhxgWeUYRiNIcsCACfRuw1
> > oH4gZBcTXeqcfzaHsNDr4ws=
> > =78nG
> > -----END PGP SIGNATURE-----
> > 
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> >
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > 
> 
> 
> 
> 
>  
> ____________________________________________________________________________________
> Sponsored Link
> 
> Get an Online or Campus degree
> Associate's, Bachelor's, or Master's - in less than one year.
> http://www.findtherightschool.com
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> 
> -- 
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
> 

- -- 
For an IRC experience without all the clutter, check out BOFHNet at irc.bofhnet.us.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iQIVAwUBRVICbae2pgKIdGq4AQo0TQ/+MOCkdcHJE6ALhI+zhxLi+Vndo49OzaJI
KiGvjKeeF2SD4knYyMHxGf2boMP4nATqfybvE/AyztCqjgaqWV1Z+LzLBcRfjayC
rvRIM0eWeqGu8m/c3n14K9a2tEVGK25YeTxubBZSFYbgcEh/ENv0lP4wMbwy2HiQ
gfEMpZkqEz+w9gw3oeIJudzqAM9Fp2fZ0jwcYG6srHPewgTDvFYKgABy79hXWZjz
vxyOAKNKUZ2FlqRweO+kHGw6WtvtO+me8XE55rKmvAXKn/IpJrnigfJhI1XnFXiN
H0+e08m21Fh6e+JW5RC1Qam3rFhbPCNp09B9xVKm2jnKoKx7hfbR0F09Zbwv0DZi
VNzTU7VuHlCtMfpx+tplczIfKu9LSnIz/O7jN0L8JO/uSeq8QF/WTW3PTugU/jzE
r7clZ7ByoXayUCR1Yd031qs+2Ckv8SEFdY5XrLd82hb2Gd2NWqSXCYmNlLgOL3ZU
z6RFtqNC4mvTgyitPg3g6czsl+zah1i8RSlCL1NtyV8e0e2p0x4rVkblx6P09QQu
utncInz4tDiXOLut1VUyJykm0CsJDS4cW1hpiyOLrEyeljZAG/APzFlTUyfQm6D6
RiOg/klNGBdgAx4ERWG8R4CD6rA1O5mVPwCBpvbFbhYcMpBPH5NoDmWqSC+cLFP+
4zwkJKX/mIg=
=yAmy
-----END PGP SIGNATURE-----

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
       ` Igor Gueths
@        ` Radical NetSurfer
           ` Luke Yelavich
  0 siblings, 1 reply; 20+ messages in thread
From: Radical NetSurfer @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.; +Cc: RadSurfer

I read both the man page and info page on mknod,
the only problem is I have no idea exactly what the
major/minor version of this doubletalk should be
offhand.
the other problem is what little experiment I did try
did not result in anything being recognized by my gcc
program of by re-directing using >/dev/dtlk

The mknod commands executed with no error messages,
and then a /dev/dtlk appeared where none existed
before.  Of course I am not absolutely certain what
the best choice of options would be.  
Seems like I'd want some kind of Read/Write mode? at
least Write makes sense to send data to the card.
And the equivalent of what a standard file handle type
device would use for a default mode, unbuffered
character stream.

I am probably correct when I'm thinking of this as
having to probably send one character at a time from a
C-String while uses something like:
while ( *str != 0 ) { wrtie(dtlk, *str++, 1); }
assuming the device node was properly created using
mknod.... which is a new one on me, and we accept we
have to send a single character at a time.

The issue of when the card responds is one of internal
buffering and any need to see a period and/or carriage
return / line feed combination to trigger a
text-to-speech to actually occur.

Am I at least close to understanding the particualrs?

At the rate I'm going it might be another month before
I see a breakthrough.  Surely there has to be a more
direct route here.  I feel like there might be someone
out there to see that I am very serious about my
programming and just need a little guidance to get
over this one little problem.

I also have not yet found a dtlk.c program which
fedora  
wants to compile for me. I get a huge list of errors,
mostly about not finding the required include files.

//Rich//

--- Igor Gueths <igueths@lava-net.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA512
> 
> Sorry I forgot to mention how you should attempt
> creating the device. Use mknod (man mknod) for more
> info.
> On Wed, Nov 08, 2006 at 06:08:53AM -0800, Radical
> NetSurfer wrote:
> > This is what I have discovered so far:
> > 
> > ISA slot #1: 56k Modem
> > ISA slot #2: DoubleTalk
> > PCI sound/network/etc.
> > 
> > Activate a terminal.
> > Become super-user.
> > type:
> > /sbin/modprobe dtlk
> > and immediately I hear these words coming out of
> the
> > doubletalk card:
> > "Doubletalk Found."
> > 
> > Ok. So far so good you would think.




 
____________________________________________________________________________________
Sponsored Link

Mortgage rates near historic lows: 
$150,000 loan as low as $579/mo. Intro-*Terms 
https://www2.nextag.com/


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
         ` Radical NetSurfer
@          ` Luke Yelavich
             ` Radical NetSurfer
             ` Linux Programming (DecTalk) Radical NetSurfer
  0 siblings, 2 replies; 20+ messages in thread
From: Luke Yelavich @  UTC (permalink / raw)
  To: speakup

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Thu, Nov 09, 2006 at 10:43:27AM EST, Radical NetSurfer wrote:
> I read both the man page and info page on mknod,
> the only problem is I have no idea exactly what the
> major/minor version of this doubletalk should be
> offhand.

Check the output of dmesg. As far as I can remember, the dtlk driver 
uses major 253, and I think you use minor 0. SO the command would look 
something like the following:

mknod /dev/dtlk c 253 0

Hope this helps.
- -- 
Luke Yelavich
GPG key: 0xD06320CE 
	 (http://www.themuso.com/themuso-gpg-key.txt)
Email & MSN: themuso@themuso.com
Jabber: themuso@jabber.org.au
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFFUm1kjVefwtBjIM4RAiq6AKC7+M7NJncI8r+BUrSzu5kdEfJ0ewCfdUPn
0ywIc+yIM4I25ttK/GhbZKA=
=dMG4
-----END PGP SIGNATURE-----


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
   Linux Programming Radical NetSurfer
   ` Luke Yelavich
@  ` Janina Sajka
  1 sibling, 0 replies; 20+ messages in thread
From: Janina Sajka @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

I am in no way able to discourse these programming details. However, I
would suggest that you disable se-linux, if you haven't already. Edit
/etc/sysconfig/selinux and reboot. You might similarly dismiss iptables,
though I don't really think it's implicated:

service iptables stop

Part of the job of both se-linux and iptables is to control who/what
gets access to who/what. So, the principal I'm recommending is to
eliminate the obvious filters first.

PS: Are you aware that the gui screen reader, orca, has speech enable
gaim?

Radical NetSurfer writes:
> Perhaps someone can please sterr me in the right
> direction with this request:
> 
> I have the standard Fedora Core 5 working just fine
> for me on 2 different machines.
> 
> As I have mentioned earlier, I happen to have both a
> Double Talk ISA and a Dec Talk ISA card.
> 
> I have tried all by myself to create a plugin for
> Xchat for Linux that would send all the chat text to
> an appropriate card. Lets concentrate with Doubletalk
> ISA.
> 
> I am using an inline assembly block. It compiles
> perfectly fine. The plugin is accepted and appears to
> work only until I initialized the Doubletalk ISA card,
> the Xchat abruptly closes.
> 
> I suspect that I need to ask permission from Linux to
> be allowed to access the DMA address space that the
> Doubletalk ISA card is using, and since I did not make
> formal request to use these memory addresses, Linux
> responds by totally shutting down Xchat IRC client.
> 
> My question is simply this:
> Could I find help from someone who would be willing to
> point to books on how to write proper modern linux
> drivers (under Fedora Core), or to another mailing
> list 
> where we can chat purely about programming issues.
> 
> I also have gaim, and use AOL's Instant Messenger.
> If you would love to discuss either installation
> issues 
> with Speakup or Linux Programming issues, please let
> me know.
> 
> Let me just mention that I have a working version of a
> DLL plugin for Xchat IRC Clinet under Windows 98SE for
> both the Doubletalk and the DecTalk Cards... so based
> on that I know I must be on the correct track. The
> situation is of course, Windows 98SE is not picky
> about allowing software to access hardware without
> getting special permission from the operating system.
> But at least I know the inline assembly code does
> indeed work properly by themselves.  My goal is to
> learn how to achieve this 
> success with Linux.
> 
> Thank you.
> 
> //Rich//
> 
> 
> 
> 
>  
> ____________________________________________________________________________________
> Sponsored Link
> 
> Get an Online or Campus degree
> Associate's, Bachelor's, or Master's - in less than one year.
> http://www.findtherightschool.com
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup

-- 

Janina Sajka				Phone: +1.202.595.7777
Partner, Capital Accessibility LLC	http://CapitalAccessibility.Com

Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more.

Chair, Accessibility Workgroup		Free Standards Group (FSG)
janina@freestandards.org		http://a11y.org


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming
           ` Luke Yelavich
@            ` Radical NetSurfer
               ` installing remotely Butch Bussen
             ` Linux Programming (DecTalk) Radical NetSurfer
  1 sibling, 1 reply; 20+ messages in thread
From: Radical NetSurfer @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.; +Cc: RadSurfer

With the advice given to me so far, I have been
able to accomplish the following:

echo 'Now is the time for all good men to come to the
aid of your country' >/dev/dtlk

now works.

My original gcc program to send text data to the
Doubletalk now functions.  My Xchat plugin should work
now.

It comes down to knowing the proper arguments to
mknod, and also the proper order of doing things.

I would still love to learn how to directly access the
ISA card just to prove I can do it.

SeLinux apparently was never an issue.

Thanks everyone!

//Rich//

--- Luke Yelavich <themuso@themuso.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> On Thu, Nov 09, 2006 at 10:43:27AM EST, Radical
> NetSurfer wrote:
> > I read both the man page and info page on mknod,
> > the only problem is I have no idea exactly what
> the
> > major/minor version of this doubletalk should be
> > offhand.
> 
> Check the output of dmesg. As far as I can remember,
> the dtlk driver 
> uses major 253, and I think you use minor 0. SO the
> command would look 
> something like the following:
> 
> mknod /dev/dtlk c 253 0
> 
> Hope this helps.
> - -- 
> Luke Yelavich
> GPG key: 0xD06320CE 
> 	 (http://www.themuso.com/themuso-gpg-key.txt)
> Email & MSN: themuso@themuso.com
> Jabber: themuso@jabber.org.au
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.3 (GNU/Linux)
> 
>
iD8DBQFFUm1kjVefwtBjIM4RAiq6AKC7+M7NJncI8r+BUrSzu5kdEfJ0ewCfdUPn
> 0ywIc+yIM4I25ttK/GhbZKA=
> =dMG4
> -----END PGP SIGNATURE-----
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
>
http://speech.braille.uwo.ca/mailman/listinfo/speakup
> 



 
____________________________________________________________________________________
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com


^ permalink raw reply	[flat|nested] 20+ messages in thread

* installing remotely
             ` Radical NetSurfer
@              ` Butch Bussen
                 ` Tom Moore
  0 siblings, 1 reply; 20+ messages in thread
From: Butch Bussen @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.; +Cc: RadSurfer

I've seen references on thist occasionally on either using telnet or a 
"serial console" to install from another machine.  What do I type at the 
first prompt to do this?
I run an i r l p ham radio Linux box and have done four of these, but 
always needed sighted help to do the initial install.  Once I get up and 
running I can use my windows machine witha terminal program and winscp to 
do what I need.  Hoping there is a way to do this without sighted help.
73s
Butch Bussen
wa0vjr



^ permalink raw reply	[flat|nested] 20+ messages in thread

* RE: installing remotely
               ` installing remotely Butch Bussen
@                ` Tom Moore
                   ` Butch Bussen
                   ` Janina Sajka
  0 siblings, 2 replies; 20+ messages in thread
From: Tom Moore @  UTC (permalink / raw)
  To: 'Speakup is a screen review system for Linux.'

If my memory serves me right the instructions are:
At the boot prompt once you put the cd in the drive type:
Text telnet ksdev=/dev/eth0 ip=www.xxx.yyy.zzz netmask=www.xxx.yyy.zzz
gateway=www.xxx.yyy.zzz
/dev/eth0 being the first network card in the machine that Fedora detects.
I believe you can use dhcp as well, but if you do that then you'll have to
hunt around for the machine to see what ip it was given by the dhcp server
so when I do an install like this I can always know where the machine is.

Tom
 
-----Original Message-----
From: speakup-bounces@braille.uwo.ca [mailto:speakup-bounces@braille.uwo.ca]
On Behalf Of Butch Bussen
Sent: Thursday, November 09, 2006 7:34 AM
To: Speakup is a screen review system for Linux.
Cc: RadSurfer@yahoo.com
Subject: installing remotely

I've seen references on thist occasionally on either using telnet or a 
"serial console" to install from another machine.  What do I type at the 
first prompt to do this?
I run an i r l p ham radio Linux box and have done four of these, but 
always needed sighted help to do the initial install.  Once I get up and 
running I can use my windows machine witha terminal program and winscp to 
do what I need.  Hoping there is a way to do this without sighted help.
73s
Butch Bussen
wa0vjr


_______________________________________________
Speakup mailing list
Speakup@braille.uwo.ca
http://speech.braille.uwo.ca/mailman/listinfo/speakup

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* RE: installing remotely
                 ` Tom Moore
@                  ` Butch Bussen
                   ` Janina Sajka
  1 sibling, 0 replies; 20+ messages in thread
From: Butch Bussen @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

Thanks.  I'd probably use dhcp as this seems easier.  I know where my 
router starts numbering machines, so it isn't hard to find as I have the 
other machines on the network set to static ip addresses.
73s
Butch Bussen
wa0vjr

On Thu, 9 Nov 
2006, Tom Moore wrote:

> If my memory serves me right the instructions are:
> At the boot prompt once you put the cd in the drive type:
> Text telnet ksdev=/dev/eth0 ip=www.xxx.yyy.zzz netmask=www.xxx.yyy.zzz
> gateway=www.xxx.yyy.zzz
> /dev/eth0 being the first network card in the machine that Fedora detects.
> I believe you can use dhcp as well, but if you do that then you'll have to
> hunt around for the machine to see what ip it was given by the dhcp server
> so when I do an install like this I can always know where the machine is.
>
> Tom
>
> -----Original Message-----
> From: speakup-bounces@braille.uwo.ca [mailto:speakup-bounces@braille.uwo.ca]
> On Behalf Of Butch Bussen
> Sent: Thursday, November 09, 2006 7:34 AM
> To: Speakup is a screen review system for Linux.
> Cc: RadSurfer@yahoo.com
> Subject: installing remotely
>
> I've seen references on thist occasionally on either using telnet or a
> "serial console" to install from another machine.  What do I type at the
> first prompt to do this?
> I run an i r l p ham radio Linux box and have done four of these, but
> always needed sighted help to do the initial install.  Once I get up and
> running I can use my windows machine witha terminal program and winscp to
> do what I need.  Hoping there is a way to do this without sighted help.
> 73s
> Butch Bussen
> wa0vjr
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> -- 
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
>
>
> -- 
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
>
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Linux Programming (DecTalk)
           ` Luke Yelavich
             ` Radical NetSurfer
@            ` Radical NetSurfer
  1 sibling, 0 replies; 20+ messages in thread
From: Radical NetSurfer @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

Can you please provide me with the mknod values needed
for the DecTalk PC ISA card...
Since it didn't plug/play the DoubleTalk, I should be
ready with the proper values.

Another question:
Can I get someone to just send me the Compiled 
start-up package for DecTalk ISA for Fedora Core 5?
I am hoping I'll be most impressed to see that work
the first time.
Unlike the smart design of the DoubleTalk, DecTalk
requires these external files be loaded into it, which
is a mixed blessing as far as I'm concerned.
I have also discovered it does indeed use more
conventional memory then I think it should. 
DoubleTalk doesn't rob you of any conventional memory
whatsoever. But, I actually prefer the DecTalk voice,
DoubleTalk tens to slur just a tad, as excellent as it
is in many other respects.

//Rich//

--- Luke Yelavich <themuso@themuso.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> On Thu, Nov 09, 2006 at 10:43:27AM EST, Radical
> NetSurfer wrote:
> > I read both the man page and info page on mknod,
> > the only problem is I have no idea exactly what
> the
> > major/minor version of this doubletalk should be
> > offhand.
> 
> Check the output of dmesg. As far as I can remember,
> the dtlk driver 
> uses major 253, and I think you use minor 0. SO the
> command would look 
> something like the following:
> 
> mknod /dev/dtlk c 253 0
> 
> Hope this helps.
> - -- 
> Luke Yelavich
> GPG key: 0xD06320CE 
> 	 (http://www.themuso.com/themuso-gpg-key.txt)
> Email & MSN: themuso@themuso.com
> Jabber: themuso@jabber.org.au
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.3 (GNU/Linux)
> 
>
iD8DBQFFUm1kjVefwtBjIM4RAiq6AKC7+M7NJncI8r+BUrSzu5kdEfJ0ewCfdUPn
> 0ywIc+yIM4I25ttK/GhbZKA=
> =dMG4
> -----END PGP SIGNATURE-----
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
>
http://speech.braille.uwo.ca/mailman/listinfo/speakup
> 



 
____________________________________________________________________________________
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: installing remotely
                 ` Tom Moore
                   ` Butch Bussen
@                  ` Janina Sajka
                     ` Butch Bussen
  1 sibling, 1 reply; 20+ messages in thread
From: Janina Sajka @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

This is mostly correct. One suggestion:

Rather than ksdevice=eth0, use the mac address to be very certain telnet
will talk to the device you intend:

ksdevice=aa:bb:cc:dd:ee:ff

PS: The advice here references Fedora, none others.

Tom Moore writes:
> If my memory serves me right the instructions are:
> At the boot prompt once you put the cd in the drive type:
> Text telnet ksdev=/dev/eth0 ip=www.xxx.yyy.zzz netmask=www.xxx.yyy.zzz
> gateway=www.xxx.yyy.zzz
> /dev/eth0 being the first network card in the machine that Fedora detects.
> I believe you can use dhcp as well, but if you do that then you'll have to
> hunt around for the machine to see what ip it was given by the dhcp server
> so when I do an install like this I can always know where the machine is.
> 
> Tom
>  
> -----Original Message-----
> From: speakup-bounces@braille.uwo.ca [mailto:speakup-bounces@braille.uwo.ca]
> On Behalf Of Butch Bussen
> Sent: Thursday, November 09, 2006 7:34 AM
> To: Speakup is a screen review system for Linux.
> Cc: RadSurfer@yahoo.com
> Subject: installing remotely
> 
> I've seen references on thist occasionally on either using telnet or a 
> "serial console" to install from another machine.  What do I type at the 
> first prompt to do this?
> I run an i r l p ham radio Linux box and have done four of these, but 
> always needed sighted help to do the initial install.  Once I get up and 
> running I can use my windows machine witha terminal program and winscp to 
> do what I need.  Hoping there is a way to do this without sighted help.
> 73s
> Butch Bussen
> wa0vjr
> 
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> 
> -- 
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
>  
> 
> -- 
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
>  
> 
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup

-- 

Janina Sajka				Phone: +1.202.595.7777
Partner, Capital Accessibility LLC	http://CapitalAccessibility.Com

Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more.

Chair, Accessibility Workgroup		Free Standards Group (FSG)
janina@freestandards.org		http://a11y.org


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: installing remotely
                   ` Janina Sajka
@                    ` Butch Bussen
                       ` Chris Norman
  0 siblings, 1 reply; 20+ messages in thread
From: Butch Bussen @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

What would you type if you wanted to use dhcp?
73s
Butch Bussen
wa0vjr

On Sat, 11 Nov 2006, 
Janina Sajka wrote:

> This is mostly correct. One suggestion:
>
> Rather than ksdevice=eth0, use the mac address to be very certain telnet
> will talk to the device you intend:
>
> ksdevice=aa:bb:cc:dd:ee:ff
>
> PS: The advice here references Fedora, none others.
>
> Tom Moore writes:
>> If my memory serves me right the instructions are:
>> At the boot prompt once you put the cd in the drive type:
>> Text telnet ksdev=/dev/eth0 ip=www.xxx.yyy.zzz netmask=www.xxx.yyy.zzz
>> gateway=www.xxx.yyy.zzz
>> /dev/eth0 being the first network card in the machine that Fedora detects.
>> I believe you can use dhcp as well, but if you do that then you'll have to
>> hunt around for the machine to see what ip it was given by the dhcp server
>> so when I do an install like this I can always know where the machine is.
>>
>> Tom
>>
>> -----Original Message-----
>> From: speakup-bounces@braille.uwo.ca [mailto:speakup-bounces@braille.uwo.ca]
>> On Behalf Of Butch Bussen
>> Sent: Thursday, November 09, 2006 7:34 AM
>> To: Speakup is a screen review system for Linux.
>> Cc: RadSurfer@yahoo.com
>> Subject: installing remotely
>>
>> I've seen references on thist occasionally on either using telnet or a
>> "serial console" to install from another machine.  What do I type at the
>> first prompt to do this?
>> I run an i r l p ham radio Linux box and have done four of these, but
>> always needed sighted help to do the initial install.  Once I get up and
>> running I can use my windows machine witha terminal program and winscp to
>> do what I need.  Hoping there is a way to do this without sighted help.
>> 73s
>> Butch Bussen
>> wa0vjr
>>
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@braille.uwo.ca
>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>>
>> --
>> No virus found in this incoming message.
>> Checked by AVG Free Edition.
>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
>>
>>
>> --
>> No virus found in this outgoing message.
>> Checked by AVG Free Edition.
>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 11/8/2006
>>
>>
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@braille.uwo.ca
>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> -- 
>
> Janina Sajka				Phone: +1.202.595.7777
> Partner, Capital Accessibility LLC	http://CapitalAccessibility.Com
>
> Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more.
>
> Chair, Accessibility Workgroup		Free Standards Group (FSG)
> janina@freestandards.org		http://a11y.org
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: installing remotely
                     ` Butch Bussen
@                      ` Chris Norman
                         ` Butch Bussen
                         ` Janina Sajka
  0 siblings, 2 replies; 20+ messages in thread
From: Chris Norman @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

What would be the point? You wouldn't know where the DHCP had put the 
computer... :-D

Cheers,

Chris Norman
<!-- cnorman@rnibncw.ac.uk -->
----- Original Message ----- 
From: "Butch Bussen" <butchb@shellworld.net>
To: "Speakup is a screen review system for Linux." <speakup@braille.uwo.ca>
Sent: Saturday, November 11, 2006 11:37 PM
Subject: Re: installing remotely


> What would you type if you wanted to use dhcp?
> 73s
> Butch Bussen
> wa0vjr
>
> On Sat, 11 Nov 2006,
> Janina Sajka wrote:
>
>> This is mostly correct. One suggestion:
>>
>> Rather than ksdevice=eth0, use the mac address to be very certain telnet
>> will talk to the device you intend:
>>
>> ksdevice=aa:bb:cc:dd:ee:ff
>>
>> PS: The advice here references Fedora, none others.
>>
>> Tom Moore writes:
>>> If my memory serves me right the instructions are:
>>> At the boot prompt once you put the cd in the drive type:
>>> Text telnet ksdev=/dev/eth0 ip=www.xxx.yyy.zzz netmask=www.xxx.yyy.zzz
>>> gateway=www.xxx.yyy.zzz
>>> /dev/eth0 being the first network card in the machine that Fedora 
>>> detects.
>>> I believe you can use dhcp as well, but if you do that then you'll have 
>>> to
>>> hunt around for the machine to see what ip it was given by the dhcp 
>>> server
>>> so when I do an install like this I can always know where the machine 
>>> is.
>>>
>>> Tom
>>>
>>> -----Original Message-----
>>> From: speakup-bounces@braille.uwo.ca 
>>> [mailto:speakup-bounces@braille.uwo.ca]
>>> On Behalf Of Butch Bussen
>>> Sent: Thursday, November 09, 2006 7:34 AM
>>> To: Speakup is a screen review system for Linux.
>>> Cc: RadSurfer@yahoo.com
>>> Subject: installing remotely
>>>
>>> I've seen references on thist occasionally on either using telnet or a
>>> "serial console" to install from another machine.  What do I type at the
>>> first prompt to do this?
>>> I run an i r l p ham radio Linux box and have done four of these, but
>>> always needed sighted help to do the initial install.  Once I get up and
>>> running I can use my windows machine witha terminal program and winscp 
>>> to
>>> do what I need.  Hoping there is a way to do this without sighted help.
>>> 73s
>>> Butch Bussen
>>> wa0vjr
>>>
>>>
>>> _______________________________________________
>>> Speakup mailing list
>>> Speakup@braille.uwo.ca
>>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>>>
>>> --
>>> No virus found in this incoming message.
>>> Checked by AVG Free Edition.
>>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 
>>> 11/8/2006
>>>
>>>
>>> --
>>> No virus found in this outgoing message.
>>> Checked by AVG Free Edition.
>>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 
>>> 11/8/2006
>>>
>>>
>>>
>>> _______________________________________________
>>> Speakup mailing list
>>> Speakup@braille.uwo.ca
>>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>>
>> -- 
>>
>> Janina Sajka Phone: +1.202.595.7777
>> Partner, Capital Accessibility LLC http://CapitalAccessibility.Com
>>
>> Marketing the Owasys 22C talking screenless cell phone in the U.S. and 
>> Canada--Go to http://ScreenlessPhone.Com to learn more.
>>
>> Chair, Accessibility Workgroup Free Standards Group (FSG)
>> janina@freestandards.org http://a11y.org
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@braille.uwo.ca
>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: installing remotely
                       ` Chris Norman
@                        ` Butch Bussen
                         ` Janina Sajka
  1 sibling, 0 replies; 20+ messages in thread
From: Butch Bussen @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

I would have a fairly good idea.  I've done it with windows machines.  I 
have my router set to start numbering at 100,  and my other machines on 
the network are numbered with static addresses below this, so first is 
101.  It comes up this way at firs anyhow when I install it with sighted 
help and do my first login as root.  Should work the same.
73s
Butch Bussen
wa0vjr

On Mon, 13 Nov 
2006, Chris Norman wrote:

> What would be the point? You wouldn't know where the DHCP had put the
> computer... :-D
>
> Cheers,
>
> Chris Norman
> <!-- cnorman@rnibncw.ac.uk -->
> ----- Original Message -----
> From: "Butch Bussen" <butchb@shellworld.net>
> To: "Speakup is a screen review system for Linux." <speakup@braille.uwo.ca>
> Sent: Saturday, November 11, 2006 11:37 PM
> Subject: Re: installing remotely
>
>
>> What would you type if you wanted to use dhcp?
>> 73s
>> Butch Bussen
>> wa0vjr
>>
>> On Sat, 11 Nov 2006,
>> Janina Sajka wrote:
>>
>>> This is mostly correct. One suggestion:
>>>
>>> Rather than ksdevice=eth0, use the mac address to be very certain telnet
>>> will talk to the device you intend:
>>>
>>> ksdevice=aa:bb:cc:dd:ee:ff
>>>
>>> PS: The advice here references Fedora, none others.
>>>
>>> Tom Moore writes:
>>>> If my memory serves me right the instructions are:
>>>> At the boot prompt once you put the cd in the drive type:
>>>> Text telnet ksdev=/dev/eth0 ip=www.xxx.yyy.zzz netmask=www.xxx.yyy.zzz
>>>> gateway=www.xxx.yyy.zzz
>>>> /dev/eth0 being the first network card in the machine that Fedora
>>>> detects.
>>>> I believe you can use dhcp as well, but if you do that then you'll have
>>>> to
>>>> hunt around for the machine to see what ip it was given by the dhcp
>>>> server
>>>> so when I do an install like this I can always know where the machine
>>>> is.
>>>>
>>>> Tom
>>>>
>>>> -----Original Message-----
>>>> From: speakup-bounces@braille.uwo.ca
>>>> [mailto:speakup-bounces@braille.uwo.ca]
>>>> On Behalf Of Butch Bussen
>>>> Sent: Thursday, November 09, 2006 7:34 AM
>>>> To: Speakup is a screen review system for Linux.
>>>> Cc: RadSurfer@yahoo.com
>>>> Subject: installing remotely
>>>>
>>>> I've seen references on thist occasionally on either using telnet or a
>>>> "serial console" to install from another machine.  What do I type at the
>>>> first prompt to do this?
>>>> I run an i r l p ham radio Linux box and have done four of these, but
>>>> always needed sighted help to do the initial install.  Once I get up and
>>>> running I can use my windows machine witha terminal program and winscp
>>>> to
>>>> do what I need.  Hoping there is a way to do this without sighted help.
>>>> 73s
>>>> Butch Bussen
>>>> wa0vjr
>>>>
>>>>
>>>> _______________________________________________
>>>> Speakup mailing list
>>>> Speakup@braille.uwo.ca
>>>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>>>>
>>>> --
>>>> No virus found in this incoming message.
>>>> Checked by AVG Free Edition.
>>>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date:
>>>> 11/8/2006
>>>>
>>>>
>>>> --
>>>> No virus found in this outgoing message.
>>>> Checked by AVG Free Edition.
>>>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date:
>>>> 11/8/2006
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> Speakup mailing list
>>>> Speakup@braille.uwo.ca
>>>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>>>
>>> --
>>>
>>> Janina Sajka Phone: +1.202.595.7777
>>> Partner, Capital Accessibility LLC http://CapitalAccessibility.Com
>>>
>>> Marketing the Owasys 22C talking screenless cell phone in the U.S. and
>>> Canada--Go to http://ScreenlessPhone.Com to learn more.
>>>
>>> Chair, Accessibility Workgroup Free Standards Group (FSG)
>>> janina@freestandards.org http://a11y.org
>>>
>>> _______________________________________________
>>> Speakup mailing list
>>> Speakup@braille.uwo.ca
>>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>>>
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@braille.uwo.ca
>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: installing remotely
                       ` Chris Norman
                         ` Butch Bussen
@                        ` Janina Sajka
  1 sibling, 0 replies; 20+ messages in thread
From: Janina Sajka @  UTC (permalink / raw)
  To: Speakup is a screen review system for Linux.

Chris Norman writes:
> What would be the point? You wouldn't know where the DHCP had put the 
> computer... :-D

You should be able to find it pretty easily by pinging the broadcast
address.


> 
> Cheers,
> 
> Chris Norman
> <!-- cnorman@rnibncw.ac.uk -->
> ----- Original Message ----- 
> From: "Butch Bussen" <butchb@shellworld.net>
> To: "Speakup is a screen review system for Linux." <speakup@braille.uwo.ca>
> Sent: Saturday, November 11, 2006 11:37 PM
> Subject: Re: installing remotely
> 
> 
> > What would you type if you wanted to use dhcp?
> > 73s
> > Butch Bussen
> > wa0vjr
> >
> > On Sat, 11 Nov 2006,
> > Janina Sajka wrote:
> >
> >> This is mostly correct. One suggestion:
> >>
> >> Rather than ksdevice=eth0, use the mac address to be very certain telnet
> >> will talk to the device you intend:
> >>
> >> ksdevice=aa:bb:cc:dd:ee:ff
> >>
> >> PS: The advice here references Fedora, none others.
> >>
> >> Tom Moore writes:
> >>> If my memory serves me right the instructions are:
> >>> At the boot prompt once you put the cd in the drive type:
> >>> Text telnet ksdev=/dev/eth0 ip=www.xxx.yyy.zzz netmask=www.xxx.yyy.zzz
> >>> gateway=www.xxx.yyy.zzz
> >>> /dev/eth0 being the first network card in the machine that Fedora 
> >>> detects.
> >>> I believe you can use dhcp as well, but if you do that then you'll have 
> >>> to
> >>> hunt around for the machine to see what ip it was given by the dhcp 
> >>> server
> >>> so when I do an install like this I can always know where the machine 
> >>> is.
> >>>
> >>> Tom
> >>>
> >>> -----Original Message-----
> >>> From: speakup-bounces@braille.uwo.ca 
> >>> [mailto:speakup-bounces@braille.uwo.ca]
> >>> On Behalf Of Butch Bussen
> >>> Sent: Thursday, November 09, 2006 7:34 AM
> >>> To: Speakup is a screen review system for Linux.
> >>> Cc: RadSurfer@yahoo.com
> >>> Subject: installing remotely
> >>>
> >>> I've seen references on thist occasionally on either using telnet or a
> >>> "serial console" to install from another machine.  What do I type at the
> >>> first prompt to do this?
> >>> I run an i r l p ham radio Linux box and have done four of these, but
> >>> always needed sighted help to do the initial install.  Once I get up and
> >>> running I can use my windows machine witha terminal program and winscp 
> >>> to
> >>> do what I need.  Hoping there is a way to do this without sighted help.
> >>> 73s
> >>> Butch Bussen
> >>> wa0vjr
> >>>
> >>>
> >>> _______________________________________________
> >>> Speakup mailing list
> >>> Speakup@braille.uwo.ca
> >>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >>>
> >>> --
> >>> No virus found in this incoming message.
> >>> Checked by AVG Free Edition.
> >>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 
> >>> 11/8/2006
> >>>
> >>>
> >>> --
> >>> No virus found in this outgoing message.
> >>> Checked by AVG Free Edition.
> >>> Version: 7.1.409 / Virus Database: 268.14.0/524 - Release Date: 
> >>> 11/8/2006
> >>>
> >>>
> >>>
> >>> _______________________________________________
> >>> Speakup mailing list
> >>> Speakup@braille.uwo.ca
> >>> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >>
> >> -- 
> >>
> >> Janina Sajka Phone: +1.202.595.7777
> >> Partner, Capital Accessibility LLC http://CapitalAccessibility.Com
> >>
> >> Marketing the Owasys 22C talking screenless cell phone in the U.S. and 
> >> Canada--Go to http://ScreenlessPhone.Com to learn more.
> >>
> >> Chair, Accessibility Workgroup Free Standards Group (FSG)
> >> janina@freestandards.org http://a11y.org
> >>
> >> _______________________________________________
> >> Speakup mailing list
> >> Speakup@braille.uwo.ca
> >> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >>
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup 
> 
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup

-- 

Janina Sajka				Phone: +1.202.595.7777
Partner, Capital Accessibility LLC	http://CapitalAccessibility.Com

Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more.

Chair, Accessibility Workgroup		Free Standards Group (FSG)
janina@freestandards.org		http://a11y.org


^ permalink raw reply	[flat|nested] 20+ messages in thread

* re: linux programming
@  Jude DaShiell
  0 siblings, 0 replies; 20+ messages in thread
From: Jude DaShiell @  UTC (permalink / raw)
  To: speakup

users need access to the audio group for them to be able to use audio 
resources on linux systems.  Something like usermod <user> -G audio if I 
remember the command format correctly should solve that problem.




^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~ UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
 Linux Programming Radical NetSurfer
 ` Luke Yelavich
   ` Kirk Reiser
   ` Radical NetSurfer
     ` Igor Gueths
     ` Igor Gueths
       ` Radical NetSurfer
         ` Luke Yelavich
           ` Radical NetSurfer
             ` installing remotely Butch Bussen
               ` Tom Moore
                 ` Butch Bussen
                 ` Janina Sajka
                   ` Butch Bussen
                     ` Chris Norman
                       ` Butch Bussen
                       ` Janina Sajka
           ` Linux Programming (DecTalk) Radical NetSurfer
 ` Linux Programming Janina Sajka
 linux programming Jude DaShiell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).