From: swertz@scruznet.com Subject: Re: cron and tty Newsgroups: comp.unix.sco.misc References: <8262j5$c2l$1@nnrp1.deja.com>
<3846929C.5B0C5B71@aplawrence.com> Message-ID: <ZHc24.7111$Tp.151637@typ11.nn.bcandid.com> Date: Sat, 04 Dec 1999 18:03:37 GMT Tony Lawrence <tony@aplawrence.com> wrote: > matt_kressel@my-deja.com wrote: >> >> Hello, >> >> I am getting the following error when running a job from the cron: >> stty: tcgetattr failed: No such device (error 19) >> >> I believe this to be because the application is trying to set tty >> attributes and the cron does not attach to a tty. I can not change the >> call to "tcgetattr" because this is from a precompiled binary. Does >> anyone know how I can resolve this problem? TIA. Does this cause the application to stop running, or is this just an annoying mesaage (in root's mailbox, I assume).
> Well, cron doesn't have a tty, but is there any reason you > can't associate the app with a tty? > binaryapp < /dev/someunusedtty > /dev/someunusedtty ? > It still may not like this for other reasons. I'd bet he redirected standard output/input to/from /dev/null in his cron-job :-) I'm going to attempt to prove it. cron does have a place to stash stdout and stderr if you don't tell it otherwise (I can't find any documentation, but I think its those /tmp/crout* files). # stty ixon ixoff < /dev/null stty: tcgetattr failed: No such device (error 19) # stty ixon ixoff < /tmp/foo167 ksh: /tmp/foo167: cannot open # stty ixon ixoff < /dev/root stty: tcgetattr failed: Inappropriate I/O control operation (error 25) # at now + 1 minute stty ixon ixoff ^D >From root's mailbox: stty: tcgetattr failed: Inappropriate I/O control operation (error 25)
I was looking for way out of writing a short C program to see what the effect of calling tcgetattr with an unopened filedes, and I'm in luck; Your original error message includes the word 'stty'. An application that shells out to an 'stty' command is poorly designed (it should just call tc[get|set]attr directly). Are you sure there isn't a shell-script wrapper that invokes the real binary? if so, you could fix it in there. If it really does shell out to stty, copy and edit the binary and change the phrase 'stty' to some other meaningless four-letter command. Use that copy of the binary for cron jobs. -sw
Have you tried Searching this site?
Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates
This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.
Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.
Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.
We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.
Click here to add your comments
Don't miss responses! Subscribe to Comments by RSS or by Email
Click here to add your comments
If you want a picture to show with your comment, go get a Gravatar