Unix Technical Forum

busying out a pseudo tty

This is a discussion on busying out a pseudo tty within the Sco Unix forums, part of the Unix Operating Systems category; --> Hi, I've got a weird problem with an old un-supported dentist program that runs on Openserver 5.0.4. For some ...


Go Back   Unix Technical Forum > Unix Operating Systems > Sco Unix

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-15-2008, 11:43 AM
PW Herman
 
Posts: n/a
Default busying out a pseudo tty

Hi, I've got a weird problem with an old un-supported dentist program
that runs on Openserver 5.0.4. For some reason, it gives error
messages in certain menus if the user logs in on ttyp2, ttyp3, ttyp4
or ttyp5. Is there any way to make these 4 pseudo ttys appear to be
busy so nobody ever connects on them???

Thanks,
PW
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-15-2008, 11:43 AM
Bela Lubkin
 
Posts: n/a
Default Re: busying out a pseudo tty

PW Herman wrote:

> Hi, I've got a weird problem with an old un-supported dentist program
> that runs on Openserver 5.0.4. For some reason, it gives error
> messages in certain menus if the user logs in on ttyp2, ttyp3, ttyp4
> or ttyp5. Is there any way to make these 4 pseudo ttys appear to be
> busy so nobody ever connects on them???


If you open the master sides (/dev/ptyp2 etc.), they will be busied out.
You can do that with a very simple shell script that you could e.g. run
as an rc script. For example,

#!/bin/sh

# Busy out ports ttyp2, 3, 4, 5 because "un-supported dentist program"
# is allergic to them...

sleep 1000000000 < /dev/ptyp2 &
sleep 1000000000 < /dev/ptyp3 &
sleep 1000000000 < /dev/ptyp4 &
sleep 1000000000 < /dev/ptyp5 &

Save as /etc/rc2.d/S99pty-hold or something like that.

You can save a few processes if you wish (but this gets messy if you
want to busy out dozens of ports):

cd /dev
sleep 1000000000 2<ptyp2 3<ptyp3 4<ptyp4 5<ptyp5 &
# Note that shell syntax allows redirecting fd's 0-9, no higher: 10<
# does not work.

>Bela<

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-15-2008, 11:43 AM
John DuBois
 
Posts: n/a
Default Re: busying out a pseudo tty

In article <c5a0626d.0310021152.1e7ec391@posting.google.com >,
PW Herman <pagingmrherman@hotmail.com> wrote:
>Hi, I've got a weird problem with an old un-supported dentist program
>that runs on Openserver 5.0.4. For some reason, it gives error
>messages in certain menus if the user logs in on ttyp2, ttyp3, ttyp4
>or ttyp5. Is there any way to make these 4 pseudo ttys appear to be
>busy so nobody ever connects on them???


I'd look at the permissions & ownership of the master & slave devices
associated with those.

But in any case, sure, to busy them out just open the master side:

cd /dev && sleep 1000000000 <ptyp2 1<ptyp3 2<ptyp4 3<ptyp5 &

John
--
John DuBois spcecdt@armory.com KC6QKZ/AE http://www.armory.com/~spcecdt/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-15-2008, 11:44 AM
PW Herman
 
Posts: n/a
Default Re: busying out a pseudo tty

Bela Lubkin <belal@sco.com> wrote in message news:<20031002213417.GL11780@sco.com>...
> PW Herman wrote:
>
> > Hi, I've got a weird problem with an old un-supported dentist program
> > that runs on Openserver 5.0.4. For some reason, it gives error
> > messages in certain menus if the user logs in on ttyp2, ttyp3, ttyp4
> > or ttyp5. Is there any way to make these 4 pseudo ttys appear to be
> > busy so nobody ever connects on them???

>
> If you open the master sides (/dev/ptyp2 etc.), they will be busied out.
> You can do that with a very simple shell script that you could e.g. run
> as an rc script. For example,
>
> #!/bin/sh
>
> # Busy out ports ttyp2, 3, 4, 5 because "un-supported dentist program"
> # is allergic to them...
>
> sleep 1000000000 < /dev/ptyp2 &
> sleep 1000000000 < /dev/ptyp3 &
> sleep 1000000000 < /dev/ptyp4 &
> sleep 1000000000 < /dev/ptyp5 &
>
> Save as /etc/rc2.d/S99pty-hold or something like that.
>
> You can save a few processes if you wish (but this gets messy if you
> want to busy out dozens of ports):
>
> cd /dev
> sleep 1000000000 2<ptyp2 3<ptyp3 4<ptyp4 5<ptyp5 &
> # Note that shell syntax allows redirecting fd's 0-9, no higher: 10<
> # does not work.
>
> >Bela<


Thanks, that's just what the doctor ordered!!!

PW
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 11:49 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com