home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / unix / question / 13889 < prev    next >
Encoding:
Internet Message Format  |  1992-11-24  |  69.7 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!darwin.sura.net!lhc!adm!news
  2. From: postmaster@starlab.csc.com (SMTP MAILER)
  3. Newsgroups: comp.unix.questions
  4. Subject: Mail not delivered yet, still trying
  5. Message-ID: <34240@adm.brl.mil>
  6. Date: 23 Nov 92 22:18:56 GMT
  7. Sender: news@adm.brl.mil
  8. Lines: 1929
  9.  
  10.  
  11.  ----Mail status follows----
  12. Have been unable to send your mail to <DGRAY@STARLAB.CSC.COM>,
  13. will keep trying for a total of eight days.
  14. At that time your mail will be returned.
  15.  
  16.  ----Transcript of message follows----
  17. Date: 22 Nov 92 03:27:00 EST
  18. From: INFO-UNIX@BRL.MIL
  19. Subject: INFO-UNIX Digest  V17#005
  20. To: "DGRAY" <DGRAY@STARLAB.CSC.COM>
  21.  
  22. Return-Path: <info-unix-request@sem.brl.mil>
  23. Received: from SEM.BRL.MIL by milo.starlab.csc.com with SMTP ; 
  24.           Sun, 22 Nov 92 03:18:51 EST
  25. Received: from SEM.BRL.MIL by SEM.BRL.MIL id aa24370; 21 Nov 92 6:37 EST
  26. Received: from sem.brl.mil by SEM.BRL.MIL id aa24241; 21 Nov 92 6:18 EST
  27. Date:       Sat, 21 Nov 92 11:18:28 EST
  28. From:       The Moderator (Mike Muuss) <Info-Unix-Request@BRL.MIL>
  29. To:         INFO-UNIX@BRL.MIL
  30. Reply-To:   INFO-UNIX@BRL.MIL
  31. Subject:    INFO-UNIX Digest  V17#005
  32. Message-ID:  <9211210618.aa24241@SEM.BRL.MIL>
  33.  
  34. INFO-UNIX Digest          Sat, 21 Nov 1992              V17#005
  35.  
  36. Today's Topics:
  37.                           Re: C-Shell question
  38.                 Summary 2 :benchmark for file systems !
  39.                              "find" problem
  40.                         Running pgm's from INIT
  41.                                  groups
  42.                            Re: IS UNIX DEAD?
  43.              HELP! needed identifying ethernet board needed
  44.                             Re: unix for 386
  45.                      REMAPPING KEYS WITHIN BASH/SH
  46.                             grammer checker
  47.                           Re: grammer checker
  48.                    Re: Overflow warnings (SCO SV3.2)
  49.                        IS UNIX DEAD?  (12 of 22)
  50.                         Re: IS UNIX DEAD? (long)
  51.                   Re: Needle in a hay stack - nslookup
  52.                          HELP!!! MAJOR DILEMMA!
  53.                       Searching for E-mail package
  54.                       Re: Mail - signature files.
  55.                      Re: IS UNIX DEAD? (very long)
  56.                         Re: IS UNIX DEAD (long)
  57.                        Re: diff in scripts again
  58.          Re: Whence Unix? (was Re: IS UNIX DEAD?) (New Thread?)
  59.                      automating anonymous ftp login
  60.                    Re: automating anonymous ftp login
  61.                             Re: Vi-question
  62.          Re: Getting a file's size with the FILE data structure
  63.                                 Re grep
  64.                         Info wanted on UNIX std?
  65.                  How to give root permission to user??
  66.                Re: How to give root permission to user??
  67.                      CFP: CSAM93 Computer Congress
  68.                         sum -r source/algorithm
  69.      Re: net.views - mainframe programmers in an open systems world
  70.                              MDBM and PCOMM
  71.         Help wanted with Thompson Toolkit (Thompson Automation)
  72.                       *** HELP:: Linux Xserver ***
  73.                           Unattended execution
  74.                      Public domain src for "ttype"
  75.                             C Program error
  76. -----------------------------------------------------------------
  77.  
  78. From: Bertil Engelholm <euabem@eua.ericsson.se>
  79. Subject: Re: C-Shell question
  80. Date: 4 Nov 92 08:03:38 GMT
  81. Sender: news@eua.ericsson.se
  82. Nntp-Posting-Host: euas39c40.eua.ericsson.se
  83. To:       info-unix@sem.brl.mil
  84.  
  85. In article 27280@eua.ericsson.se, euabem@eua.ericsson.se (Bertil Engelholm) writes:
  86. >Hi,
  87. >
  88. >I am having a problem with a small script I have written.
  89. >
  90. >#!/bin/csh
  91. >
  92. >/usr/bin/rm $1
  93. >
  94. >if ( $status != 0 ) then
  95. >    exit 1
  96. >endif
  97. >
  98. >exit 0
  99. >
  100. >If I execute this script in a shelltool I get the right actions, that is,
  101. >if the file is removed the exit code is 0 and if the file doesn't exists
  102. >the exit code is 1. Now to the problem :
  103. >If I execute the script with rsh, that is, (rsh 'hostname' 'scriptname' 'filename')
  104. >I always get exit code 0 independent of the existance of the file.
  105. >It seems like the variable $status is not set correctly in that case.
  106. >(not in the way I expects anyway)
  107. >Can anyone out there explain that ?? 
  108. >
  109. >/Bertil
  110.  
  111. Thank's a lot for all the answers, but I am not shure I understand them.
  112. All the answers is saying that the exit-code stored in $status is the result
  113. code of rsh. But how can that happen ? How can the result code of rsh be stored
  114. in the $status variable before rsh has executed all of the script ?
  115. I thought that executing rsh would mean that rsh is making something like
  116. rlogin and then executing the program (in my case the script) and when the
  117. program has ended rsh returns with a exit code. If that is so how can it be
  118. that the result of rsh is stored in $status before rsh has ended. 
  119.  
  120. (Confused script writer)
  121.  
  122. /Bertil
  123.  
  124. -----------------------------
  125.  
  126. From: Dennis Cheng-Zen Yang <dennis@solar.csie.ntu.edu.tw>
  127. Subject: Summary 2 :benchmark for file systems !
  128. Date: 9 Nov 92 02:55:59 GMT
  129. Sender: USENET PROXY ACCOUNT <usenet@ccds3.ntu.edu.tw>
  130. Nntp-Posting-Host: pluto.csie.ntu.edu.tw
  131. X-Newsreader: TIN [version 1.1 PL6]
  132. To:       info-unix@sem.brl.mil
  133.  
  134.  
  135. There are two additional replies. Thanks to :
  136. schreib@fzi.de (Hartmut Schreibe) and
  137. tbray@watsol.uwaterloo.ca (Tim Bray)
  138.  
  139.  ----------------------------------------------------------------------
  140. schreib@fzi.de  (Hartmut Schreibe) writes :
  141.  
  142. Ni hao!
  143.  
  144. There IS! The name is nfsstone but I don't know, where to find sources for it,
  145. so if you get more answers, please forward them to me.
  146.  
  147. Yours sincerely,
  148.  
  149.   Hartmut
  150.  ----------------------------------------------------------------------
  151. tbray@watsol.uwaterloo.ca (Tim Bray) writes :
  152.  
  153. Here is a very general purpose file-system benchmark named 'Bonnie', 
  154. which has been widely used around the Unix community to perform a
  155. variety of filesystem measurements.
  156.  ----------------------------------------------
  157.  .....
  158.  [program deleted, you can email to tim for request]
  159.  .....
  160.  
  161. Thanks !
  162.  
  163. --
  164. Dennis Cheng-Zen Yang                    Inter: dennis@solar.csie.ntu.edu.tw
  165. Computer System Lab.                     Tel  : 886-2-3630231 ext 3236 or 3016
  166. Dep. of Computer Sci. and Info. Eng.        ___  ___      ,   __  .  
  167. National Taiwan University                 /    <__      /    __> |__
  168.                           <___  ___>    <___ <__| |__>     
  169.  
  170. -----------------------------
  171.  
  172. From: Chun-Hung Lin <r0506048@csman.csie.ntu.edu.tw>
  173. Subject: "find" problem
  174. Date: 9 Nov 92 05:38:50 GMT
  175. Sender: USENET PROXY ACCOUNT <usenet@ccds3.ntu.edu.tw>
  176. Nntp-Posting-Host: cml4.csie.ntu.edu.tw
  177. To:       info-unix@sem.brl.mil
  178.  
  179. Hello,
  180.  
  181.   I found that the UNIX command "find" cannot find the file
  182. across the file system, i.e. I cannot find the file on file
  183. system B when I am now on file system A. Is it true?
  184. If it is true, how can I do this job? Any utility or command
  185. is available?
  186.  
  187. =================================================================
  188. Chun-Hung Lin                     
  189. r0506048@csman.csie.ntu.edu.tw    
  190. Communication & Multimedia Lab.
  191. Dept. of Comp. Sci. & Info. Eng.
  192. National Taiwan University, Taipei, Taiwan, R.O.C.
  193.  
  194. -----------------------------
  195.  
  196. From: Steve Kearns <kearns@actcon.canton.oh.us>
  197. Subject: Running pgm's from INIT
  198. Keywords: unix, init
  199. Date: 11 Nov 92 00:33:17 GMT
  200. To:       info-unix@sem.brl.mil
  201.  
  202. A friend of mine has the following scenario:  he has three terminals 
  203. without keyboards; the terminals have bar code scanners instead.
  204. He wants to run a time card/clocking program at each of these 
  205. terminals at all times (automatically when the system boots).
  206.  
  207. Can anyone tell me how to set this up using either /etc/inittab
  208. or an entry in /etc/rc2.d?  If I put the entries in inittab, how
  209. should I go about setting the terminal's stty parameters (since there
  210. won't be a getty)? 
  211.  
  212. Any suggestions or ideas are greatly appreciated.  Thanks in
  213. advance.
  214.  
  215. steve
  216. -- 
  217. Steve Kearns              A.C.T. Consulting, Inc.                  216-455-1444
  218.  
  219. Internet: kearns@actcon.canton.oh.us                
  220. UUCP    : uunet!aablue!redpoll!mrsmouse!actcon!kearns
  221.  
  222. -----------------------------
  223.  
  224. From: "Jethro H. Greene" <jhgreen@cs.sandia.gov>
  225. Subject: groups
  226. Date: 12 Nov 92 02:49:32 GMT
  227. Sender: jhgreen@cs.sandia.gov
  228. Followup-To: poster
  229. Originator: jhgreen@cs.sandia.gov
  230. To:       info-unix@sem.brl.mil
  231.  
  232. Where are the names of groups defined?  I couldn't find a field in /etc/passwd.
  233. Also, what is a root group?  What priviledges does it have?
  234.  
  235. Finally, on another note, would someone tell me my options for "Followup-To:"?
  236.  
  237. Thanks in advance,
  238.  
  239.  --------------------------- |\_/| --------------------------------------------
  240. | Jethro H. Greene (Jed) | \`0.0'/ | Massively Parallel Comp. Research Lab., |
  241. | jhgreen@cs.sandia.gov  | =(_-_)= | Sandia National Lab., Albuquerque, NM   |
  242.  ---------------------------   U   --------------------------------------------
  243.  
  244. -----------------------------
  245.  
  246. From: Peter Busser <peter@global.hacktic.nl>
  247. Subject: Re: IS UNIX DEAD?
  248. Date: 12 Nov 92 13:28:29 GMT
  249. To:       info-unix@sem.brl.mil
  250.  
  251. >left cursor right and insert text simply. This is a drawback with unix : if
  252. >you don't know how to use vi or emacs you cant edit your command line.
  253.  
  254. Hmm, I always use bash and in emacs mode it understands cursor keys...
  255.  
  256. >>Most DOS editors have a help key, they often show which commands are availlable
  257. >>on the screen, have mouse support, pull-down menus or WordStar commands.
  258. >Mouse support is certainly tricky under unix if you are connected with a
  259. >vt100 and a modem :-)
  260.  
  261. But not for a graphical screen.
  262.  
  263. >>And emacs is easier to learn than vi? <grin> Besides that, the programs you
  264. >>mention are editors. A typical programmer's tool. What about a decent word
  265. >>processor? (Oh please, inform me about the 'user friendliness' of troff and
  266. >>(La)TeX... :)
  267.  
  268. >I don't see your point here. Wordperfect and Microsoft word exist under unix,
  269. >amongst other.
  270.  
  271. For WHICH UNIX?
  272.  
  273. >>Now you're talking. Let's face it, most users know DOS and not UNIX.
  274. >I wonder what you understand by the word "know". I agree that there are more
  275. >people who use programs on ms/dos machines that there are people who use
  276. >programs on  unix machines. But I wouldnt say that they have a knowledge of
  277. >ms/dos. 
  278.  
  279. They for instance know to type 'dir' and what it does.
  280.  
  281. >>Without changing Makefiles??? Gee!
  282. >Major unixes have an option in many makefiles (there is always a make sco or
  283. >make sysv or make bsd).
  284.  
  285. Most programs I've seen don't have a 'make sco'. Most have a 'make sysv' or
  286. 'make bsd', but unfortunately SysV isn't always SysV and BSD isn't always BSD.
  287. Compare for instance the wait3() function on a Sun and on other BSD systems...
  288.  
  289. >>Yep, but the problem is that even on the same processor it's not always
  290. >>possible to exchange executables. Ever tried to run BSD/386 executables under
  291. >>System V.4?
  292. >Ever tried to run a windows programm under dos?
  293.  
  294. Ever tried to run X binaries without running X? I just did (xterm): Error:
  295. can't open Display. Anyway, I can run a DOS executable under DR DOS, which is
  296. a DOS clone. Many UNIXes don't allow this.
  297.  
  298. >and even sometimes no backups). I think we go back to your airplane example :
  299. >under dos there is less to administer but the user is in charge of the whole
  300. >machine, under unix the user doesnt have the hassle to administrate and can
  301. >enjoy his programs fully.
  302.  
  303. We can have a UNIX which has UUCP, TCP/IP and such features disabled (note: NOT
  304. removed). If someone wants to use those features, (s)he has to learn the
  305. difficult part of using UNIX. But (s)he doesn't need to do that right from the
  306. beginning.
  307.  
  308. -----------------------------
  309.  
  310. From: Peter Busser <peter@global.hacktic.nl>
  311. Subject: Re: IS UNIX DEAD?
  312. Date: 12 Nov 92 13:45:10 GMT
  313. To:       info-unix@sem.brl.mil
  314.  
  315.  
  316. mbarkah@slate.mines.colorado.edu (Ade Barkah) writes:
  317.  
  318. >: BUT THEY HAVEN'T.  SO WHO CARES!  Sure the world would be a better place
  319. >: if everyone had CD-ROMs.  But if they *DON'T* then selling an OS only
  320. >: on CD-ROM is sorta silly, isn't it!
  321.  
  322. >No, not really. The Grolier Electronic Encyclopaedia is available only
  323. >in CD-ROM, but would you expect them to ship in 500 floppies ? With
  324. >your argument, it's silly for any company to sell their programs in
  325. >CD-ROM, because not everyone has CD-ROMs.
  326.  
  327. And not everyone needs/wants The Grolier Electronic Encyclopedia, not on CD and
  328. not on floppy. That's why not everyone has a CD-ROM (yet). Besides, I didn't
  329. say that it's silly to sell software on CD-ROM, it's silly if your intent is
  330. to sell large volumes in the present low-end market (for which Windows 3.x and
  331. OS/2 are targeted). OS/2 is supplied on 20 floppies I guess, the Linux SLS
  332. distribution is about the same size. So I'm definetly not talking about 500
  333. floppies.
  334.  
  335. >Another argument is that you point out that not everyone has CD-ROMs.
  336. >Well, obviously one could see that the operating system was NOT MEANT
  337. >for every Joe-User.
  338.  
  339. That it wasn't meant for Joe User is the weakest argument I've heard in this
  340. discussion. That only clarifies why it has worked that way in the past, but
  341. it doesn't prove that it can't be done in the future. I agree that UNIX today
  342. is too difficult to administer for most people. However, I think that it CAN
  343. be made easy. UNIX wasn't meant for graphics and yet many UNIX systems are
  344. devoted to graphics. It still evolves and it won't stop here.
  345.  
  346. >It's meant to be run on high-powered systems,
  347. >and those with enough beaucoup-money support to buy CD-ROM drives 
  348. >(which, for companies, big organizations, are pretty cheap nowadays.)
  349.  
  350. CD-ROMs are even affordable by many hobbyists. The market at this moment is
  351. rather small. If someone is going to sell a cheap UNIX on CD-ROM onl , it will
  352. therefore have a small market. It could have had a bigger market if it was also
  353. sold on floppies and tapes. If users choose to install it from floppy, then
  354. why force them to buy a CD-ROM?
  355.  
  356. -----------------------------
  357.  
  358. From: Peter Busser <peter@global.hacktic.nl>
  359. Subject: Re: IS UNIX DEAD?
  360. Date: 12 Nov 92 14:48:57 GMT
  361. To:       info-unix@sem.brl.mil
  362.  
  363. sfkaplan@unix.amherst.edu (Scott Kaplan) writes:
  364.  
  365. >Peter Busser seems insistant in his response that UNIX has the ability to be
  366. >all things to all people, if only programmers would make it as such.  Then all
  367. >the UNIX world has to do is make it commercially feasible.
  368.  
  369. No, not all things to all people. It's just a matter of interfacing. As long as
  370. you hide the details, then it doesn't matter if these details change. That is
  371. for instance why C is such a popular language. The library hides (most of) the
  372. details of the underlying operating system. I.e. the fopen() are implemented
  373. differently under MeSs-DOS and under UNIX, but they have the same result. We
  374. can consider fopen() to be a black box. A good user interface can do that for a
  375. system. If programmers want to change the details, FINE! As long as they don't
  376. change the interface.
  377.  
  378. >does not need to be ease of use.  The crowd that uses UNIX now will continue
  379. >to do so, because they will make it more powerful and push its flexibility.
  380.  
  381. Of course.
  382.  
  383. >So both types of OS's will continue to grow
  384. >in different directions.  There's little wrong with that.
  385.  
  386. Read on.
  387.  
  388. >maliable (sp?) OS.  If you make UNIX something that programmers don't want to
  389. >use, THEN it will die, because nobody else will want to push it forward.
  390.  
  391. But... the largest market is the user market. If some system can dominate that
  392. market, then that means that programmers are forced to write programs for that
  393. system (or they lose their jobs) instead of writing programs for UNIX. What I
  394. want to say is that it might be better to provide the user with 'our' system
  395. then wait until the users provide us with his system (which 'we' know 'we'
  396. probably don't like).
  397.  
  398. >Oh, and as much fun as we all like to make of MS-DOS, Mac OS, Windows...I do
  399. >some tasks, some of them very simple, some of them moderately demanding, on
  400. >such machines.  They're capable of some tough tasks...So let's not make them
  401. >sound like their for simpletons only.
  402.  
  403. I'm not saying that. It's just that I'm used to worst case design... ;-)
  404.  
  405. >I would just cringe to think, though,
  406. >what kind of mess my Mac interface would be if it contained the power of UNIX.
  407.  
  408. That would be monstrous! It's not what I would consider to be 'user friendly'.
  409. What I want is a powerful user interface a la Windows or OS/2, with applications
  410. that use the same user interface, with many system defaults (e.g. startup with
  411. X, UUCP disabled (not removed!), etc.), and everything else exactly as we have
  412. now in UNIX. IMHO, only the way a system is setup and the user interface stink
  413. (from a user's point of view).
  414.  
  415. >Pull down menus that go on forever both down and accross, and some terrible
  416. >way of mixing mouse selections to simulate what the UNIX command line does with
  417. >pipes and such.  Bleah.
  418.  
  419. YUCK!
  420.  
  421. >Both kinds of OS can be better, and maybe something better will be developed...
  422. >but strictly speaking, UNIX as the EveryThingOS doesn't seem such a wonderful
  423. >idea.
  424.  
  425. I don't see much difference with a normal UNIX system we now know and a
  426. polished UNIX. It's just that the disadvantages should be removed, otherwise
  427. UNIX is a nice system.
  428.  
  429. -----------------------------
  430.  
  431. From: Ian Leonard <ian@eonsw.demon.co.uk>
  432. Subject: Re: IS UNIX DEAD?
  433. Date: 12 Nov 92 21:02:21 GMT
  434. To:       info-unix@sem.brl.mil
  435.  
  436. In article <1992Nov10.212013.6590@avernus.com> mgfrank@avernus.com (Marc G. Frank) writes:
  437. >In article <BxGu2H.A62@undergrad.math.waterloo.edu> papresco@napier.uwaterloo.ca (Paul Prescod) writes:
  438. >
  439. >>Why don't Unix "tools" have a convention about help and exit keys AT THE
  440. >>VERY LEAST.  
  441.  
  442. Like the F1 = Help and F10 = Exit (with the exception of Wordperfect)?
  443. Probably because it's a stupid convention. Can somebody tell me why,
  444. when IBM were searching for the ultimate user friendly keyboard, didn't
  445. they put a HELP key on it. Why does it have an ESC key? To confuse poor
  446. DOS programmers when they try to port to Unix? Why did someone pick
  447. one of the handiest keys (F1) and use it for one of the most least
  448. used functions (HELP) while burying the EXIT key (F10)? Have you ever
  449. seen a genuine VT100 keyboard? It'll put you off function keys for life.
  450.  
  451. Unix tools predate the AT keyboard. Many old keyboards didn't have 
  452. function keys. 
  453.  
  454. -- 
  455. Ian
  456.  
  457. Ian Leonard                        ian@eonsw.demon.co.uk
  458. EON Software                       +44 (0)865 741452
  459.  
  460. -----------------------------
  461.  
  462. From: Peter Busser <peter@global.hacktic.nl>
  463. Subject: Re: IS UNIX DEAD?
  464. Date: 12 Nov 92 22:11:18 GMT
  465. To:       info-unix@sem.brl.mil
  466.  
  467. rahardj@ccu.umanitoba.ca (Budi Rahardjo) writes:
  468.  
  469. >Then buy UnixWorld magazine, look at the ads.
  470.  
  471. >If Joe User prefers a comercial program why not go with SCO or NeXTstep.
  472.  
  473. You can find that answer in the same magazines. A small hint: $$$$.
  474.  
  475. Greetings,
  476. Peter Busser
  477.  
  478. -----------------------------
  479.  
  480. From: "Peter F. Couvares" <pfcouvar@unix.amherst.edu>
  481. Subject: Re: IS UNIX DEAD?
  482. Date: 13 Nov 92 00:03:58 GMT
  483. To:       info-unix@sem.brl.mil
  484.  
  485. peter@global.hacktic.nl (Peter Busser) writes:
  486. >dmcquaid@csws19.ic.sunysb.edu (Devin McQuaid) writes:
  487.  
  488. >>>Where can I get toll-free support for Linux?
  489. >>
  490. >>comp.os.linux
  491. >>you won't get an answer in 20 min. but you will get your answer
  492. >
  493. >USENET costs $$$ too. And administration.
  494.  
  495.     That's a dumb response--so does a phone. The support itself is free,
  496. which is what was initially asked for. Any kind of free support, be it via
  497. phone, mail, or net account, will cost something to access.
  498.  
  499. -Peter
  500.  
  501. -----------------------------
  502.  
  503. From: "Peter F. Couvares" <pfcouvar@unix.amherst.edu>
  504. Subject: Re: IS UNIX DEAD?
  505. Date: 13 Nov 92 00:13:47 GMT
  506. To:       info-unix@sem.brl.mil
  507.  
  508. peter@global.hacktic.nl (Peter Busser) writes:
  509.  
  510. >>>If you want a nice graphical interface
  511. >>>like Windows or Os/2, you have to ftp and make that too.
  512. >>
  513. >>Um, no ... you just install X from the SLS disks, I believe.
  514. >
  515. >Yep. But then, how do I know to type in 'startx' on the command line?
  516.  
  517.     The same way you know to type "win" to start MSWindows or to
  518. double-click to start a Mac application -- you read the short intro
  519. documentation. It's not the least bit difficult.
  520.  
  521. -Peter
  522.  
  523. -----------------------------
  524.  
  525. From: The Golden Gryphon <gryphon@openage.openage.com>
  526. Subject: HELP! needed identifying ethernet board needed
  527. Date: 12 Nov 92 14:42:11 GMT
  528. To:       info-unix@sem.brl.mil
  529.  
  530.  
  531.  
  532. Hi All,
  533.  
  534. A customer of mine has an AT&T 6386 WGS UNIX Box.  He wants to add TCP/IP to
  535. the box, so he purchased the WIN TCP/IP from AT&T.  This package is now
  536. installed, but the customers SMC ethernet board does not seem to be the one
  537. required by the software.  
  538.  
  539. The documentation references an AT&T StarLan NI board, and a StarLan NP600A
  540. board.  These look like Racal-Datacomm boards that were OEMed by AT&T.  I would
  541. like to get some verification on which ethernet boards my customer needs to
  542. purchase.  I will try talking to AT&T and R-D today, but AT&T has a great game
  543. of 800-it's-not-my-department phone tag.  I spend over an hour on hold
  544. yesterday with AT&T as employee after employee gave me 800 number after 800
  545. number.  No one was able to answer my question.  When I finally got to a
  546. support line where they thought they could help I was told I would be called
  547. back.  No time was given for the call back, and it did not come.
  548.  
  549. Please help me identify the board I need to buy.
  550.  
  551. -- 
  552. The Golden Gryphon                 gryphon@openage.COM
  553. Solve a man's problem and he has 1 less.        No incumbents in 92.
  554. "Mad Scientists seeks mindless brawny assistants, good pay, quite location."
  555. Openage - The Premier SCO UNIX integrator in the Washington D.C. area
  556.  
  557. -----------------------------
  558.  
  559. From: Peter Busser <peter@global.hacktic.nl>
  560. Subject: Re: unix for 386
  561. Date: 12 Nov 92 14:50:54 GMT
  562. To:       info-unix@sem.brl.mil
  563.  
  564. bill@bilver.uucp (Bill Vermillion) writes:
  565.  
  566. >'proprietary hardware' means hardware from one vendor.
  567.  
  568.  ... and keeping vital information for themselves.
  569.  
  570. -----------------------------
  571.  
  572. From: Steve Franklin <franklin@thans.cs.dal.ca>
  573. Subject: REMAPPING KEYS WITHIN BASH/SH
  574. Date: 12 Nov 92 16:13:22 GMT
  575. Sender: USENET News <usenet@cs.dal.ca>
  576. Nntp-Posting-Host: thans.cs.dal.ca
  577. To:       info-unix@sem.brl.mil
  578.  
  579.  
  580. It would be wholly to my benefit to be able to remap keys within the
  581. bash or sh shell, but I'm not quite sure to go about doing this. First of
  582. all, I would like to be able to remap control sequences such as 
  583. ESC-8 to -> (right arrow Key). But, can I take this a step further?
  584. Can I map Character sequences to the execution of scripts? I don't see
  585. why not, but I'm not quite sure how I would go about doing this...
  586.    any clues?
  587. Thanks in advance...
  588. steve
  589. -- 
  590. aasdSteveFranklin-Subliminal Psychology Major.ks;dlasBlueJaysRULEkasdfeahsdbfl
  591. sd;lfaswoq[eBuyMeAQuadra!!!mbnZMXCNdfsba;KdSPAMiuroqiyetIBMSuxiweuryth'ewr;mxn
  592. qpuepriuPartyOneqtuj;,n.,xnc,kjasFlameMeNot!;lkj;lkgkjd;askElvisLivesjhfquweru
  593. zx.cfranklin@ug.cs.dal.ca,sk;t;lrut[Superboy@ac.dal.cav.zx,Physics!eq3rwkh;oHA
  594.  
  595. -----------------------------
  596.  
  597. From: SW International <swispl@solomon.technet.sg>
  598. Subject: grammer checker
  599. Date: 12 Nov 92 17:00:33 GMT
  600. Sender: news@lincoln.technet.sg
  601. Nntp-Posting-Host: solomon.technet.sg
  602. X-Newsreader: TIN [version 1.1 PL6]
  603. To:       info-unix@sem.brl.mil
  604.  
  605. looking for a grammer checker to complement spell (preferably free!).
  606. using SVR4.
  607. - bkheng@swispl
  608. --
  609. SW International Systems Pte Ltd     |  "I've got a plan so cunning 
  610.     14, Science Park Drive           | you could put a tail on it and
  611.     Singapore Science Park           | call it a weasel".. Black Adder
  612.     Singapore 0511                   | 
  613.     Tel: (65) 778-0066               |
  614.     Fax: (65) 777-9401               | swispl@solomon.technet.sg
  615.  
  616. -----------------------------
  617.  
  618. From: "Harley Hahn,,,HAHN,personal" <harley@engrhub.ucsb.edu>
  619. Subject: Re: grammer checker
  620. Date: 14 Nov 92 04:09:03 GMT
  621. Sender: root@ucsbcsl.ucsb.edu
  622. To:       info-unix@sem.brl.mil
  623.  
  624. In article <BxM4Ky.u5@lincoln.technet.sg> swispl@solomon.technet.sg (SW International) writes:
  625. looking for a grammer checker to complement spell (preferably free!). using SVR4
  626. ^                  ^                             ^                  ^
  627. |                  |                             |                  |
  628. |                  |                             |                  |
  629.  
  630. You should have told us it was an emergency :-)
  631.  
  632. -----------------------------
  633.  
  634. From: The Golden Gryphon <gryphon@openage.openage.com>
  635. Subject: Re: Overflow warnings (SCO SV3.2)
  636. Date: 12 Nov 92 17:50:16 GMT
  637. To:       info-unix@sem.brl.mil
  638.  
  639. dmunday@miavx1.acs.muohio.edu writes:
  640.  
  641. >I have just started getting the fallowing two messages on our 486
  642. >SCO Unix System V/3.2 box
  643. >WARNING: Region table overflow
  644. >NOTICE: File table overflow
  645. >I suspect the second to be associated with too many file hungry background
  646. >tasks running at the same time.
  647. >Can anyone tell me briefly what this means and how to get rid of it
  648. >do I need to change the size of some system table?
  649.  
  650. You need to increase NFILE and NREGION in the kernel.
  651.  
  652. cd /etc/conf/cf.d
  653.  ./configure
  654.  
  655. find NREGION and NFILE, and increase their size quite a bit.  I would recommend
  656. doubling them.  Then relink the kernel.  DO THIS IN SINGLE USER MODE!  Back the
  657. system up first.
  658.  
  659.  
  660. -- 
  661. The Golden Gryphon                 gryphon@openage.COM
  662. Solve a man's problem and he has 1 less.        No incumbents in 92.
  663. "Mad Scientists seeks mindless brawny assistants, good pay, quite location."
  664. Openage - The Premier SCO UNIX integrator in the Washington D.C. area
  665.  
  666. -----------------------------
  667.  
  668. From: Anthony P Lawrence <apl@world.std.com>
  669. Subject: Re: Overflow warnings (SCO SV3.2)
  670. Date: 13 Nov 92 11:43:06 GMT
  671. X-Newsreader: Tin 1.1 PL3
  672. To:       info-unix@sem.brl.mil
  673.  
  674. gryphon@openage.openage.com (The Golden Gryphon) writes:
  675. :cd /etc/conf/cf.d
  676. :./configure
  677. :find NREGION and NFILE, and increase their size quite a bit.  I would recommend
  678. :doubling them.  Then relink the kernel.  DO THIS IN SINGLE USER MODE!  Back the
  679. :system up first.
  680.  
  681. While this is certainly not bad advice, isn't backing up the system somewhat 
  682. like cautioning the use of seatbelts while vacuuming the car?  All that's
  683. really going to be affected is /unix.  I could see making a /unix.good, and
  684. he certainly should have backups anyway, but this makes it all sound very
  685. scary and system-threatening!
  686.  
  687. What is the point of single user mode? Increasing these parameters doesn't
  688. affect anything but the space in the new kernel, so how is it going to
  689. cause any problems for the running system?
  690.  
  691. Just wondering why we're being so cautious here.
  692.  
  693.  
  694.  
  695.         Tony
  696.  
  697. Lawrence & Clark, Inc        (617) 762-0707    (206) 323-2864
  698. Xenix/Unix support,etc           Boston         Seattle
  699.  
  700. -----------------------------
  701.  
  702. From: Aris Stathakis <aris@lasernet.co.za>
  703. Subject: Re: Overflow warnings (SCO SV3.2)
  704. Date: 13 Nov 92 21:40:36 GMT
  705. To:       info-unix@sem.brl.mil
  706.  
  707. In <1992Nov11.014226.14160@miavx1.acs.muohio.edu> dmunday@miavx1.acs.muohio.edu writes:
  708.  
  709. >I have just started getting the fallowing two messages on our 486
  710. >SCO Unix System V/3.2 box
  711. >WARNING: Region table overflow
  712. >NOTICE: File table overflow
  713. >I suspect the second to be associated with too many file hungry background
  714. >tasks running at the same time.
  715. >Can anyone tell me briefly what this means and how to get rid of it
  716. >do I need to change the size of some system table?
  717.  
  718. Here is something from the SCO it scripts that may be of use:
  719.  
  720. Kernel tunable parameters and their corresponding error messages.
  721.  
  722. RELEASE:   SCO UNIX System V/386 Operating System Release Generic
  723.  
  724. PROBLEM:   The following error messages can be fixed with the
  725.        corresponding kernel tunable parameters.
  726.        
  727. SOLUTION:
  728.  
  729.         Kernel Error Message        Parameter
  730.       ----------------------------------------------------------
  731.       iget - inode table overflow        NINODE *
  732.  
  733.       Timeout table overflow        NCALL
  734.  
  735.       File table overflow            NFILE *
  736.  
  737.       mfree map overflow            SPTMAP
  738.  
  739.       Region table overflow            NREGION
  740.  
  741.       Configured value of NOFILES is less    NOFILES
  742.          than minimum (greater than max)
  743.  
  744.       swapdel - too few free pages        MINASMEM
  745.  
  746.       stropen: out of streams        NSTREAM
  747.  
  748.       stropen: out of queues        NQUEUE
  749.  
  750. * = Note that NFILE must be equal to or greater than NINODE,
  751.     contrary to what is in the documentation. Generally, 
  752.     they should be about equal. 
  753.  
  754.     Also, NS5INODE must always be equal to or greater than NINODE. 
  755.     NS5INODE is the number of System V dependent inodes. NS5INODE
  756.     is not used for DOS filesystems, CD-ROM filesystems, etc. 
  757.  
  758.     In the case of UNIX 3.2v4, NS5INODE is not configurable and
  759.     is automatically set to NINODE.
  760.  
  761. REFERENCES:  SCO UNIX System V/386 Release 3.2.0 System Administrators Guide
  762.              Chapter 8
  763.  
  764.              SCO UNIX System V/386 Release 3.2v2 System Administrators Guide
  765.              Chapter 18
  766.             
  767.  
  768. -- 
  769. Aris Stathakis        Tel:+27 11 887 4220 |Gimme a beer and money sandwich -  
  770. SCO Unix Support      Fax:+27 11 887 1141 |Hold the bread. - Waldo D.R. Dobbs
  771. Lasernet (Pty) Ltd    X25: 06550 11642692 |_________________________________
  772. P.O. Box 78446, Sandton, 2146, R.S.A       Internet: aris@lasernet.co.za
  773.  
  774. -----------------------------
  775.  
  776. From: Hahn <harley@engrhub.ucsb.edu>
  777. Subject: IS UNIX DEAD?  (12 of 22)
  778. Date: 12 Nov 92 21:36:04 GMT
  779. Sender: root@hub.ucsb.edu
  780. To:       info-unix@sem.brl.mil
  781.  
  782. This is number 12 in a series of 22 responses to the question:
  783.  
  784. What do you think about the Byte magazine cover that asked:
  785. IS UNIX DEAD?
  786.  
  787. (moderated by Harley Hahn)
  788.  
  789.  ----------
  790. From: lllowen@netcom.com (Lon Lowen Jr)
  791.  
  792. > What do you think about the question "Is Unix Dead?"
  793. > What would you tell someone who asks if this is true?
  794.  
  795. I'd calmly and politely tell them no.  Since Unix's creation, 
  796. it's been steadily growing.  Obviously you know this.  If your 
  797. publisher's long distance communication company is AT&T, remind 
  798. him he is using Unix every time he makes a long distance call.  
  799. When he books a flight, luckily for Unix it is a relatively short 
  800. and painless procedure.  
  801.  
  802. I am not a computer scientist.  I am not an engineer or a 
  803. programmer.  I am just a guy who wanted to learn as much as I 
  804. could about Unix now because I know it is going to be a handy 
  805. tool of knowledge later down the career path. My father works for 
  806. our local township and told me a few days ago that next year the 
  807. township will be purchasing a few SunOS machines.  Unix. 
  808.  
  809. It might be a gamble, but Unix seem to be the only system that 
  810. has been consistently growing from day one with little changes-- 
  811. changes that are considered a 'major upgrade' on PCs.  I'm 
  812. gambling on the future of Unix, but I find difficulty losing the 
  813. bet.
  814.  
  815. Thank you.
  816.  
  817. (By the way, I loved your work on Norton's Unix Guide.  Read the 
  818. book cover to cover!) -- 
  819.  
  820. ==========
  821.  
  822.  
  823. -----------------------------
  824.  
  825. From: Peter Busser <peter@global.hacktic.nl>
  826. Subject: Re: IS UNIX DEAD? (long)
  827. Date: 12 Nov 92 22:23:29 GMT
  828. To:       info-unix@sem.brl.mil
  829.  
  830. rahardj@ccu.umanitoba.ca (Budi Rahardjo) writes:
  831.  
  832. >have you ever used 'lvi' (or 'nvi') ?
  833.  
  834. Where can I FTP the sources?
  835.  
  836. Greetings,
  837. Peter Busser
  838.  
  839. -----------------------------
  840.  
  841. From: Fergason <zklf0b@gs144.uucp>
  842. Subject: Re: IS UNIX DEAD? (long)
  843. Keywords: n
  844. Date: 12 Nov 92 22:49:08 GMT
  845. Sender: news@hou.amoco.com
  846. To:       info-unix@sem.brl.mil
  847.  
  848.  
  849. In article <BxKtvw.J7v@unix.amherst.edu> djweisbe@unix.amherst.edu (David Weisberger) writes:
  850. >Paul Prescod (papresco@napier.uwaterloo.ca) wrote:
  851. >
  852. >: If you launch an editor from VI, that editor should be a wordprocessor.  If
  853. >: it is vi, vi should be in wordprocess mode.  If it doesn't, that is a flaw.
  854. >: 
  855. >Not to split hairs, but ha ir we go: there is a difference between an
  856. >editor and a wordprocessor.  vi is an editor.  Hey, I even found DOS's
  857. >edlin rapid and effective for making specific, small-scale changes.
  858. >vi and other editors have that advantage, among others.
  859. >
  860. >: If help does nothing at the command prompt.  That is a flaw.
  861. >: 
  862. >This is true.
  863.  
  864. Jumping in the discussion like any true Usenet reader, usually
  865. in the middle of the thread, in which I missed the beginning
  866. and will probably miss the end:
  867.  
  868. I disagree.  Not having used too many OS's, I can only recall 2 
  869. that the help command did something.  Vax VMS, and Microsoft Dos 5.
  870. I take that back, i just thought of Wylbur/MVSX, and VM/CMS.  I believe
  871. help does something on those systems.  
  872.  
  873. Why should help do something at the command prompt?  I would much, much
  874. rather have the hardcopy manual in my hand.  While online help might
  875. be nice, I really just do not see its absence as an inherent flaw.
  876.  
  877.  
  878. Kelly
  879.  
  880. -----------------------------
  881.  
  882. From: "Seng-Poh Lee, Speedy" <splee@pd.org>
  883. Subject: Re: Needle in a hay stack - nslookup
  884. Date: 12 Nov 92 22:52:40 GMT
  885. Sender: news@emory.edu
  886. Nntp-Posting-Host: noel.pd.org
  887. X-Newsreader: TIN [version 1.1 PL6]
  888. To:       info-unix@sem.brl.mil
  889.  
  890. Mike Sidler (sidler@smurf.ssc.gov) wrote:
  891. > Given just a hostname, I'm trying to find its Internet address. I know that
  892. > I could do this manually by getting a list of all the domainnames in North America
  893. > and one by one grep nslookup for the hostname. (Haven't been able to get a list
  894. > of domainnames yet).  However, I'm hoping there is a much easier way of doing this.
  895. > I'm trying to get the Internet address so I can email this person. But I don't have
  896. > his phone number or address, only the name of his machine!
  897. When you say hostname, I assume you mean just the hostname without the domain
  898. part of it. You could try 'netfind', which allows you to search for hosts and
  899. users based on general information. Telnet to bruno.cs.colorado.edu and 
  900. login as netfind. Follow the instructions.
  901.  
  902. --
  903. Seng-Poh Lee    <splee@pd.org>
  904.  
  905. -----------------------------
  906.  
  907. From: Big.Fun@debug.cuc.ab.ca
  908. Subject: HELP!!! MAJOR DILEMMA!
  909. Date: 13 Nov 92 00:53:58 GMT
  910. To:       info-unix@sem.brl.mil
  911.  
  912. I have a major problem.  I was doing some programming on this application
  913. in Unix.  When I logged out Wednesday night, that was the last time I was
  914. inside the Unix Shell.  It won't let me log in anymore, as root or any
  915. other of the accounts on the system.
  916.  
  917. So, I booted up the install disk for Unix.  I wanted to use the ua
  918. program, that I knew I could access from there.  But it wouldn't allow me
  919. to use it, it said something like bad grp id.  
  920.  
  921. Help!!!!  Emergency.. if you think you may know the problem let me know.
  922.  
  923. big.fun@Debug.cuc.ab.ca
  924.  Thanks in advance
  925.  
  926. -----------------------------
  927.  
  928. From: ANDY KUMEDA <kumeda@beach.csulb.edu>
  929. Subject: Searching for E-mail package
  930. Date: 13 Nov 92 02:05:12 GMT
  931. To:       info-unix@sem.brl.mil
  932.  
  933.  
  934.  
  935.  
  936. We are currently searching for E-mail/Office Automation packages that will
  937. serve several thousand users based on the following criteria:
  938.  
  939.   1) Must support X-Window (OpenLook or Motif) either through an X-terminal
  940.      or a PC running an X-server.
  941.   2) Must also support PCs running DOS, with a TCP/IP network connection.
  942.   3) In addition, a non-X version (character-based -- ASCII terminals) is 
  943.      preferable, but not required.
  944.   4) Must be able to 'customize' -- ie original text to be replied or
  945.      forwarded should not be modifiable.
  946.   5) Must support SMTP.
  947.   6) Vendor must have good technical support.  
  948.  
  949. Is there some type of documentation that compares several different
  950. e-mail packages (features, GUI, customization, price, platforms, etc)?!?
  951.   
  952. This package must run on Solaris 1.1 or newer.  All clients will have
  953. TCP/IP software, an X-terminal, a PC X-server, an ASCII terminal, or
  954. a combination of the above. 
  955.  
  956. Since we must make a decision by the 20th of November, immediate replies
  957. will be appreciated.  (Please e-mail as I do not follow all newsgroups
  958. that I posted to.)  Thank you.
  959.  
  960. Andy Kumeda
  961. Naval Weapons Station, Seal Beach
  962. Information Technology Department
  963. (310) 594-7114
  964. kumeda@csulb.edu
  965. kumeda@hawk.nwac.sea06.navy.mil
  966.  
  967. -----------------------------
  968.  
  969. From: "Steven J. Sobol" <sjsobol@wariat.org>
  970. Subject: Re: Mail - signature files.
  971. Date: 13 Nov 92 03:22:56 GMT
  972. To:       info-unix@sem.brl.mil
  973.  
  974. nseth@desire.wright.edu writes:
  975. >Is there a way that you can have your signature file automatically appended
  976. >to all your mail messages.
  977. >
  978.  
  979. Tell me which mail program you're running, and I'll give you a definite
  980. answer.
  981.  
  982. Cheers, 
  983.   Steve    [ former U. of Dayton student! ]
  984.  
  985. -- 
  986. Steve Sobol, Prez. The Tiny Software Co * sjsobol@tiny.com * sjsobol@wariat.org
  987. CALL APK in Cleveland, Ohio: Telnet/FTP/BBS/Shell/More!   Info: info@wariat.org
  988. All for a Reasonable Monthly Rate. Telnet to wariat.org or pick up the phone...
  989. 216/481-9425 v.32bis/PEP; 216/481-9445 v.32bis/HST; 216/481-9436 2400 baud.....
  990.  
  991. -----------------------------
  992.  
  993. From: "Felix S. Gallo" <rhodesia@wixer.cactus.org>
  994. Subject: Re: IS UNIX DEAD? (very long)
  995. Date: 13 Nov 92 03:39:23 GMT
  996. Sender: "Felix S. Gallo" <rhodesia@wixer.cactus.org>
  997. Followup-To: comp.unix.questions
  998. To:       info-unix@sem.brl.mil
  999.  
  1000. papresco@napier.uwaterloo.ca (Paul Prescod) writes:
  1001. >>Hey, why doesn't my toaster ask me for confirmation if I press the little
  1002. >>bar without inserting any bread?
  1003. >
  1004. >Try it, it will usually pop up after a few seconds.
  1005.  
  1006. Mine popped up after 45 seconds (cheap Korean brand).  In the same
  1007. vein, my microwave doesn't ask for confirmation, my light switches
  1008. don't ask for confirmation, and my toilet definitely does not ask
  1009. "are you sure? (y/n)".
  1010.  
  1011. >>>Why is it, in VI that there is no way (I know of) to get help, or exit,
  1012. >>>without knowing the exit key?  What doesn't "h" in command mode present
  1013. >>>ANY kind of help?
  1014. >>
  1015. >>Why doesn't my hard drive realize that I didn't really want to delete
  1016. >>that data?  Why don't I have a team of ergonomics specialists sitting
  1017. >>at my desk doing all my typing by dictation?
  1018. >
  1019. >Two different things.  Asking for a help key is really not as 
  1020. >"pampered" as you would make it out.  As far as the hard drive:
  1021. >OS/2 and DOS both have reasonably good undelete procedures.  OS/2 just
  1022. >copies the file to a temporary directory in the background.
  1023.  
  1024. Asking for a help key under Unix is usually very pampered: the standard
  1025. Unix suite of tools are a bunch of non-interactive programs that execute
  1026. very simple procedures.  Asking for help under vi is not an issue, as
  1027. there are implementations of vi that do provide help and a perfectly fine
  1028. man page that supplies pointers on every Unix I've ever seen.
  1029.  
  1030. My pick-axe does not have a pop up help window.  My laundry basket does
  1031. not have a key I can press to get more information.  If I want to learn
  1032. how to use real life tools like those, I eye them critically, attempt
  1033. sample inputs, view the sample outputs, and if stumped proceed to the
  1034. library to research the topic.  More succinctly, the 'help key' for 
  1035. most Unix programs is 'man Unix_program'.  
  1036.  
  1037. >>Again, vi is not a drop-in replacement for Microsoft Write.  It's
  1038. >>an extremely powerful editor of text files.  If you want to whine,
  1039. >>consider asking Microsoft why they don't have a command line in
  1040. >>their editors.
  1041. >
  1042. >Microsoft has a  *PROGRAMMING LANGUAGE* built into word.  I can't
  1043. >imagine why someone would prefer a command line to keystrokes
  1044. >and requester windows.     
  1045.  
  1046. Hear me now and believe me later when I tell you that the ability to
  1047. type and keep typing is extremely important for people who want to get
  1048. work done.  Do I want pop up windows obscuring my text?  Do I want the
  1049. overhead of cheesy graphics?  No, thanks.  I'd rather have the ability
  1050. to make mass regexp changes quickly and efficiently and to pipe my text
  1051. through formatters, compilers and translators.
  1052.  
  1053. But then, we're arguing apples and oranges, as I said before.  You can't
  1054. do anything useful with a Microsoft Write file except print it, as far
  1055. as I can tell, and I haven't printed anything out in about a month.
  1056.  
  1057. >>>Why don't Unix "tools" have a convention about help and exit keys AT THE
  1058. >>>VERY LEAST.  
  1059. >>
  1060. >>Control-C works for me.  That, or Control-Z kill %1.
  1061. >
  1062. >And assembly is a high level language..right.  And your programming language
  1063. >of choice is binary.
  1064.  
  1065. No, assembly is a low level language, C is my favorite programming language,
  1066. and control-c is the de facto standard for process interruption on Unix
  1067. systems.  The bit about kill %1 was facetious, but everyone who intends to
  1068. use Unix seriously should have control-c pretty firmly imbedded in their
  1069. minds.
  1070.  
  1071. >>Your lack of attentiveness is simply not our problem.  The bottom of
  1072. >>every man page I've seen about 'vi' contains a pointer to the actual
  1073. >>vi manual.
  1074. >
  1075. >Would you like me to mail you our man pages or will you take my word for it
  1076. >that it says nothing about other man pages.
  1077.  
  1078. I'd like you to mail me your man page as well as the version and vendor
  1079. of Unix you're talking about.  I am quite confident that the 'see also'
  1080. section lists the actual vi manual itself -- which is not necessarily
  1081. a man page, since it's involved, large, and complicated.
  1082.  
  1083. >
  1084. >>>Why do I have 12 function keys on my keyboard that seem to do absolutely
  1085. >>>nothing?
  1086. >>
  1087. >>dumb question is this?  Are you blaming your keyboard manufacturer's
  1088. >>ills on Unix, or are you incoherently expecting that Unix assign some
  1089. >>sort of meaning to every key assignable?
  1090. >
  1091. >No it's not a dumb question.  There is no standard for help in the Unix
  1092. >world.  The f keys are seldom used in unix programs.  Most terminals
  1093. >have f keys.  It would seem this would be a good time to start convincing
  1094. >people to use F1 for help, n'est ce pas?
  1095.  
  1096. Definitely not.  My keyboard doesn't have an F1 key.  If it did, there
  1097. would be no guarantee that it would produce what your F1 key does.
  1098. There are good reasons why nobody uses F-keys -- their original purpose
  1099. was to be bindable to whatever the user felt appropriate.
  1100.  
  1101. > >>>Why doesn't VI use the jkl; keys for cursor movement, since your fingers
  1102. >>>are already on them.  Or why not use keys somewhere far from them.  A
  1103. >>>person can easily get confused.
  1104. >>
  1105. >>Whose fingers are already on them?  Not mine.  If you're having a hard
  1106. >>time moving your fingers one key away, might I recommend not using
  1107. >>a computer?  These things are dangerous.
  1108. >
  1109. >It's got nothing to do with difficulty.  It has to do with intelligence.
  1110. >With 95% of all keyboards having little bumps on the "home" key it makes
  1111. >absolutely NO SENSE to use keys one character right of the home keys
  1112. >as cursor keys.  None whatsoever.  Espeicially when h could be a help
  1113. >key, instead of wasted on the right arrow, when J should be the right
  1114. >arrow.
  1115.  
  1116. You mean one character left, but you're still terminally unconscious.
  1117. Little bumps on the keyboard don't mandate any sort of cursor control
  1118. arrangement whatsoever.  It makes perfect sense to not use ; for a
  1119. control key -- it's not right of l on all keyboards, for one thing.
  1120. It does NOT make perfect sense to have an unshifted help key in the
  1121. middle of the goddamn keyboard in an editor people are supposed to use.
  1122. Why don't you take some courses on human-computer interaction and
  1123. ergonomics and try to get back to Unix later?
  1124.  
  1125. >>>Why does VI default to beeping at you when you try to type as opposed to
  1126. >>>editing?
  1127. >>
  1128. >>Because you're Making a Mistake, and vi appropriately tells you so.
  1129. >
  1130. >Why is typing text into a text editor "a mistake."  VI should default
  1131. >to typing mode.  It would 100% or more user friendly, as well as compatible
  1132. >with the other 1000 programs out there that claim to be editors. 
  1133.  
  1134. Typing text into a text editor is a mistake if you type it while in
  1135. movement mode.  Similarly, typing text into Microsoft Windows Word is
  1136. a mistake if you type it into a dialogue box or onto the desktop.  So?
  1137.  
  1138. I'd like to know where you're going to put me into 'typing mode' when
  1139. I go to edit a file of code I'm writing.  At the beginning?  How nice.
  1140. At the end?  I don't want to see the end of the file.  Where I left off?
  1141. Sorry, that's not stored in ascii files.
  1142.  
  1143. >>Again, you're confused.  My vi, and every vi I have used, has dealt with
  1144. >>too-long lines in a rational manner.  All my vis also have word-wrap,
  1145. >>which you would discover if you took the time to read the man page and
  1146. >>read the manual listed at the end of the man page.
  1147. >
  1148. >Sigh.  See above.
  1149.  
  1150. If you think vi should default into word-wrap, you're beyond all hope.
  1151. People don't just use vi for the reasons you use vi.  That is why it
  1152. is minimally configured when you get your fine Unix system.  You configure
  1153. it to your own needs by creating a file called '.exrc' in your home
  1154. directory and putting appropriate lines in it.  Read the man page for
  1155. more information.
  1156.  
  1157. Your cries of agony are nonsensical when you admit to not having even
  1158. read the man page closely enough.
  1159.  
  1160. >>>Is there a wordwrap mode in VI?  And if so, why doesn't it kick in when I
  1161. >>>use VI from RN?
  1162. >>
  1163. >>a) yes.  b) because your .exrc file is not set up correctly.
  1164. >
  1165. >How often does someone want to edit news without word wrap?  Wouldn't that
  1166. >make it logical to put word wrap in the standard .exrc file?
  1167.  
  1168. Editting news is not all vi is used for, to let you in on the Big Secret.
  1169.  
  1170. >If you launch an editor from VI, that editor should be a wordprocessor.  If
  1171. >it is vi, vi should be in wordprocess mode.  If it doesn't, that is a flaw.
  1172.  
  1173. I assume that you meant "if you launch an editor from RN."  Pray tell,
  1174. how does vi figure out from where it was launched, and whether or not
  1175. that program would necessarily need word-wrap on?  Please go on to
  1176. inform me how you've determined that I want word-wrap when I write news --
  1177. I don't -- and how you've managed to instantiate artificial intelligence
  1178. on any other competing system that you're now comparing with Unix?
  1179.  
  1180. >If help does nothing at the command prompt.  That is a flaw.
  1181.  
  1182. For you, it's a flaw.  For enough other people, it's not.  Your systems
  1183. administrator has decided not to add a file that does something at the
  1184. prompt.  Contact him for further information.
  1185.  
  1186. >If the cursor keys are illogical that is a flaw.
  1187.  
  1188. If they were, then it would be.
  1189.  
  1190. >Anything can be improved if we discuss the flaws and discuss ways to improve
  1191. >them.  If we treat those that notice flaws as blasphemers, we all end up
  1192. >using 1970s text editors in 1992, and unix dies.
  1193.  
  1194. Programs do not decay.  vi is unchallenged as a small, powerful text editor;
  1195. that it was originally written years ago is just not important.
  1196. -- 
  1197.  ----------------------------------------------------------------------------
  1198. Felix Sebastian Gallo                              rhodesia@wixer.cactus.org
  1199.  ----------------------------------------------------------------------------
  1200.  
  1201. -----------------------------
  1202.  
  1203. From: Chris Siebenmann <cks@hawkwind.utcs.toronto.edu>
  1204. Subject: Re: IS UNIX DEAD (long)
  1205. Date: 13 Nov 92 04:13:12 GMT
  1206. To:       info-unix@sem.brl.mil
  1207.  
  1208. Nicholas Kramer <nk24+@andrew.cmu.edu> writes:
  1209. | Even though I'm a Unix person, I kinda like the idea of OS/2's case
  1210. | preservation but non-case sensitive. [...] I gotta admit I haven't
  1211. | found a whole lot of instances of case sensitivity being useful in file
  1212. | names.
  1213.  
  1214.  It isn't a question of preservation of case sensetivity; it is a
  1215. question of teaching the kernel about case insensetivity. Right now,
  1216. the kernel doesn't know anything about the character set you (or
  1217. anyone else on the system) is using; all it knows about are two
  1218. special 8-bit blobs, one for 'end of filepath' and another for
  1219. 'filepath sepperator'. If you teach it about case insensetivity,
  1220. it is now working in whatever character set you chose, and people
  1221. who wish to use it with other ones are out of luck.
  1222.  
  1223.  This is not academic; people use non-ASCII character sets on
  1224. Unix today (either augmented with extra characters or completely
  1225. replaced; JIS, for example). If you must do this, you had better
  1226. think *very* carefully about what character set you are going
  1227. to use and how much you are going to have to change. There are
  1228. some interesting Plan 9 papers that touch on this issue; interested
  1229. people are directed to /dist/plan9man on research.att.com for
  1230. more information.
  1231.  
  1232.  I am dubious that you could make the change to case sensetivity on a
  1233. system today and really be able to call the end result 'Unix'. Does
  1234. anyone know if POSIX.1 mandates the current Unix behavior?
  1235.  
  1236. --
  1237.     When we get calls from faculty and staff regarding problematic
  1238.     software, we always ask if they have a backup.  We got this
  1239.     *classic* response today "Well, I thought I had a backup, but
  1240.     she refused to type it in again..."    - Lou Anschuetz
  1241. cks@hawkwind.utcs.toronto.edu               ...!{utgpu,utzoo,watmath}!utgpu!cks
  1242.  
  1243. -----------------------------
  1244.  
  1245. From: Astria_Nicole PRICE <asni@ecr.mu.oz.au>
  1246. Subject: Re: diff in scripts again
  1247. Date: 13 Nov 92 07:14:41 GMT
  1248. Sender: news@cs.mu.oz.au
  1249. To:       info-unix@sem.brl.mil
  1250.  
  1251. In article <1992Nov9.102409.3369@gmuvax2.gmu.edu>, rwhelan@gmuvax2.gmu.edu (Ryan A. Whelan) writes:
  1252. > In article <ssuhook.720712389@reading> ssuhook@susssys1.reading.ac.uk (Roger Neil Hook) writes:
  1253. > >Why on earth have we got an article from this place in cs.general????
  1254. > what IS cs.general ANYWAY!?!?!?!?!
  1255. Well I always thought it was the newsgroup of the computer science
  1256. department at my university.
  1257.  
  1258. Obviously wrong.
  1259.  
  1260. A bit embarrassed really.
  1261.  
  1262.  
  1263.                 _________________________          asni@ecr.mu.oz.au ****
  1264.         ****** /  .  /  ___/     /  /  / ****     asni@mundil.cs.mu.oz.au
  1265.         **** /     /__   /  /  /  /  / *****     asni@munagin.ee.mu.oz.au
  1266.         ** /__/__/_____/__/_____/__/ ******     asni@mullauna.cs.mu.oz.au
  1267.  
  1268. -----------------------------
  1269.  
  1270. From: John 'Fritz' Lowrey <jlowrey@skat.usc.edu>
  1271. Subject: Re: Whence Unix? (was Re: IS UNIX DEAD?) (New Thread?)
  1272. Date: 13 Nov 92 07:36:13 GMT
  1273. NNTP-Posting-Host: skat.usc.edu
  1274. To:       info-unix@sem.brl.mil
  1275.  
  1276.  
  1277.     Folks,
  1278.     Since it is now fairly clear that text processing and/or game
  1279. playing became important uses for Unix early on.  I also seem to recall
  1280. that curses(3) was developed in part so that HACK could be made terminal
  1281. independent.
  1282.     So, a new thread perhaps: what other now-major (or was-major)
  1283. tools, operating systems, or hardware were developed for use in a 
  1284. sub-mission critical or downright frivilous application, and later
  1285. became standards far removed from the initial intent?
  1286.  
  1287.     My seed:
  1288.     Microsoft DOS    ->    Intended as a stepping stone while DR 
  1289.                 wrapped up CP/M-86, and now the program
  1290.                 loader of choice for countless millions. 
  1291.  
  1292.  
  1293. -- 
  1294.         "...now it is my karmic burden         | J. "Fritz" Lowrey
  1295.          to stack cat food..."                 | Internet: jlowrey@usc.edu
  1296.  
  1297. -----------------------------
  1298.  
  1299. From: Tod McQuillin <tm8t+@andrew.cmu.edu>
  1300. Subject: Re: Whence Unix? (was Re: IS UNIX DEAD?) (New Thread?)
  1301. Date: 13 Nov 92 21:57:49 GMT
  1302. To:       info-unix@sem.brl.mil
  1303.  
  1304. stevev@miser.uoregon.edu (Steve VanDevender) writes:
  1305. > curses(3) was developed for rogue(6).  hack, and then NetHack,
  1306. > came much later.
  1307.  
  1308. I don't think this is exactly right.
  1309.  
  1310. From a paper entitled "Screen Updating and Cursor Movement
  1311. Optimization: A Library Package", by Kenneth C. R. C. Arnold:
  1312.  
  1313.           Acknowledgements
  1314.  
  1315.                This package would not exist without the work  of  Bill
  1316.           Joy,  who,  in writing his editor, created the capability to
  1317.           generally describe terminals, wrote the routines which  read
  1318.           this  database, and, most importantly, those which implement
  1319.           optimal cursor movement, which routines I have simply lifted
  1320.           nearly  intact.   Doug Merritt and Kurt Shoens also were ex-
  1321.           tremely important,  as  were  both  willing  to  waste  time
  1322.           listening  to  me rant and rave.  The help and/or support of
  1323.           Ken Abrams, Alan Char, Mark Horton, and Joe Kalash, was, and
  1324.           is, also greatly appreciated.
  1325.  
  1326. This is the document from which I learned curses.  I don't know when
  1327. it was written, but it says it was revised 16 April 1986.
  1328.  
  1329. -----------------------------
  1330.  
  1331. From: Harley Hahn <harley@engrhub.ucsb.edu>
  1332. Subject: automating anonymous ftp login
  1333. Date: 13 Nov 92 07:42:58 GMT
  1334. Sender: news@hub.ucsb.edu
  1335. To:       info-unix@sem.brl.mil
  1336.  
  1337. I am trying to make ftp automatically default to a login of
  1338. anonymous.  I created an .netrc file with:
  1339.  
  1340. default login anonymous
  1341.  
  1342. but it doesn't work.  The default is still my userid.
  1343.  
  1344. What I am doing wrong?
  1345.  
  1346. -----------------------------
  1347.  
  1348. From: Shobhana <shobhana@shakti.ncst.ernet.in>
  1349. Subject: Re: automating anonymous ftp login
  1350. Date: 14 Nov 92 11:56:02 GMT
  1351. To:       info-unix@sem.brl.mil
  1352.  
  1353. In article <6681@ucsbcsl.ucsb.edu> harley@engrhub.ucsb.edu (Harley Hahn) writes:
  1354. >I am trying to make ftp automatically default to a login of
  1355. >anonymous.  I created an .netrc file with:
  1356. >
  1357. >default login anonymous
  1358. >
  1359. >but it doesn't work.  The default is still my userid.
  1360.  
  1361. Try using "user anonymous email-address"
  1362.  
  1363. -----------------------------
  1364.  
  1365. From: Michael Salmon <etxmesa@eos.ericsson.se>
  1366. Subject: Re: Vi-question
  1367. Date: 13 Nov 92 08:07:19 GMT
  1368. Sender: news@ericsson.se
  1369. Nntp-Posting-Host: eos6c02.ericsson.se
  1370. To:       info-unix@sem.brl.mil
  1371.  
  1372. In article <1992Nov12.180534.1819@ncar.ucar.edu>, 
  1373. tparker@music.scd.ucar.edu (Tom Parker) writes:
  1374. |> In article <34054@adm.brl.mil> 
  1375. |> yellow@judy.indstate.edu (S. Vemula) writes:
  1376. |> >Hi,
  1377. |> >   
  1378. |> >     Sometime back, somebody mailed on how to use arrow keys in insert mode
  1379. |> >     also, to move around in the document.  I think, it is by mapping the
  1380. |> >     arrow keys.  Could somebody mail me as how i have to set up my keys.
  1381. |> >
  1382. |> >     thanks,
  1383. |> >     Shank Vemula
  1384. |> 
  1385. |> 
  1386. |> I do it with these lines in my .exrc file:
  1387. |> 
  1388. |> " Allow arrow keys to work in VI "text insert" mode
  1389. |> :map! ^[OA ^[ka
  1390. |> :map! ^[OB ^[ja
  1391. |> :map! ^[OC ^[la
  1392. |> :map! ^[OD ^[ha
  1393.  
  1394. Under SunOS 4.1.1 I needed to insert ^V's before the ^[ in my .exrc, I
  1395. also think that it is better to map left arrow to ^[i as ^[ha will not
  1396. work in column 1.
  1397.  
  1398. -- 
  1399.  
  1400. Michael Salmon
  1401.  
  1402. #include    <standard.disclaimer>
  1403. #include    <witty.saying>
  1404. #include    <fancy.pseudo.graphics>
  1405.  
  1406. Ericsson Telecom AB
  1407. Stockholm
  1408.  
  1409. -----------------------------
  1410.  
  1411. From: Michael Salmon <etxmesa@eos.ericsson.se>
  1412. Subject: Re: Getting a file's size with the FILE data structure
  1413. Date: 13 Nov 92 08:21:44 GMT
  1414. Sender: news@ericsson.se
  1415. Nntp-Posting-Host: eos6c02.ericsson.se
  1416. To:       info-unix@sem.brl.mil
  1417.  
  1418. In article <l=r19z_@rpi.edu>, 
  1419. cecchinr@hornsby.cs.rpi.edu (Ron Cecchini) writes:
  1420. |> Hi again,
  1421. |> 
  1422. |>  I found that you can use the FILE ds to get a file's size.  However,
  1423. |> there seems to be a glitch with it.  For one, the data structure is
  1424. |> NOT initialized after the fopen().  So, thats no good.  And you can't try
  1425. |> to fseek() to the beginning and look at ->_cnt.  What I found you have to do
  1426. |> is: fgets() a line from the file and *THEN* fseek() back to the beginning
  1427. |> of the file.  *NOW* ->_cnt contains the size of the file.
  1428. |> 
  1429. |> Ron
  1430. |> 
  1431. |> p.s. I have received info on using the stat() command to also get the info.
  1432. |> 
  1433.  
  1434. You don't mention which system you are using and so perhaps this works
  1435. for you but I doubt that it is portable. ->_cnt is the number of
  1436. characters left in the buffer, for reads this is the number of
  1437. characters last read from the file minus the number of characters read
  1438. from the buffer. Hence when you use fgets() (getc is equally good) then
  1439. fseek() to the beginning you have filled the buffer, then reset the
  1440. pointers and _cnt to the beginning of the buffer. ->_cnt will hence
  1441. contain the file size if and only if the file is smaller than the
  1442. buffer. All of the above applies only if stdio uses read() and write(),
  1443. systems using mmap() will exhibit different characteristics and your
  1444. observations are then most likely correct.
  1445.  
  1446. -- 
  1447.  
  1448. Michael Salmon
  1449.  
  1450. #include    <standard.disclaimer>
  1451. #include    <witty.saying>
  1452. #include    <fancy.pseudo.graphics>
  1453.  
  1454. Ericsson Telecom AB
  1455. Stockholm
  1456.  
  1457. -----------------------------
  1458.  
  1459. From: Peter Allott <peter@serv2.essex.ac.uk>
  1460. Subject: Re grep
  1461. Date: 13 Nov 92 10:57:43 GMT
  1462. Sender: news@sersun1.essex.ac.uk
  1463. To:       info-unix@sem.brl.mil
  1464.  
  1465. Yesterday I ask why grep was so called?
  1466. Today I've had about a dozen replys
  1467.  
  1468. The best from Curt Tilmes <curt@vtucs.cc.vt.edu>
  1469. who quotes "The jargon file"
  1470.  
  1471. grep: /grep/ [from the qed/ed editor idiom g/re/p , where
  1472.    re stands for a regular expression, to Globally search for the
  1473.    Regular Expression and Print the lines containing matches to it,
  1474.    via {{UNIX}} `grep(1)'] vt. To rapidly scan a file or file set
  1475.    looking for a particular string or pattern.  By extension, to look
  1476.    for something by pattern.  "Grep the bulletin board for the system
  1477.    backup schedule, would you?"  See also {vgrep}.
  1478.  
  1479. Thank you all - Please stop!
  1480.  
  1481. -----------------------------
  1482.  
  1483. From: "Durrant;f110or89;[05306" <jmd6@unix.brighton.ac.uk>
  1484. Subject: Info wanted on UNIX std?
  1485. Date: 13 Nov 92 11:55:34 GMT
  1486. To:       info-unix@sem.brl.mil
  1487.  
  1488.  
  1489. I am currently doing some research for a disertation for the final
  1490. year of my degree in computer science. I have chosen to do the
  1491. research on unix and its standadisation.
  1492.  
  1493. I therefore interested if any one has any interesting articles on
  1494. unix stadadisation on SVR4 or OSF/1 or perhaps other standards. I
  1495. am finding that articles are hard and slow to get hold of through
  1496. interlibrary loans so any electronic articles you can send me 
  1497. would be of use.
  1498.  
  1499. I'm also intresting in peoples views of what might happen to unix in
  1500. the next few years. So please send me any strong view you have. 
  1501.  
  1502. My reseach has covered some intresting articles such as 
  1503. IS UNIX DEAD from Byte
  1504. THE CASE AGAINST UNIX STANDARDS from UKUUG comference
  1505. and is now heading in the direction of the following questions:
  1506.  
  1507. Will open systems save unix?
  1508.  
  1509. Has POSIX compatibility on proprietry systems (eg OPEN VMS) killed
  1510. unix?
  1511.  
  1512. Is SVR4 the new unix standard?
  1513.  
  1514. Will any one use OSF/1?
  1515.  
  1516. Will Windows NT replace UNIX?
  1517.  
  1518. Also does any one know if open systems has taken unix SVR4 to be
  1519. its standard, and if any other POSIX standards besides 1003.1 have
  1520. become ISO standards.
  1521.  
  1522.  
  1523. Thanks for you help
  1524.  
  1525. Jon Durrant (jmd6@uk.ac.bton.unix) JANET address
  1526.  
  1527. -----------------------------
  1528.  
  1529. From: KJB6@psuvm.psu.edu
  1530. Subject: How to give root permission to user??
  1531. Date: 13 Nov 92 13:31:07 GMT
  1532. To:       info-unix@sem.brl.mil
  1533.  
  1534. I would like to create a script file that will do some commands that only root
  1535. is allowed to do. How do I allow users to use this file to see the results?
  1536.  
  1537. I think it is in the 'chmod', but I am not sure.
  1538.  
  1539. I would appreciate any answers e-mailed to me, because I am not in this group
  1540. too often.
  1541.  
  1542. Thanks for any help.
  1543.  
  1544.  
  1545. Ken Bauer
  1546. Systems Analyst      kjb6@psuvm.psu.edu
  1547. PENN. STATE - ERIE, The Behrend College
  1548.  
  1549. -----------------------------
  1550.  
  1551. From: Brian Fitzgerald <fitzgb@mml0.meche.rpi.edu>
  1552. Subject: Re: How to give root permission to user??
  1553. Date: 13 Nov 92 14:47:25 GMT
  1554. Nntp-Posting-Host: mml0.meche.rpi.edu
  1555. To:       info-unix@sem.brl.mil
  1556.  
  1557. <KJB6@psuvm.psu.edu> writes:
  1558. >I would like to create a script file that will do some commands that only root
  1559. >is allowed to do. How do I allow users to use this file to see the results?
  1560. >
  1561. >I think it is in the 'chmod', but I am not sure.
  1562.  
  1563. The question is answered in the comp.security.misc FAQ.  The article
  1564. contains the reasons why suid shell scripts are unsafe, and information
  1565. about suid binary programs.
  1566.  
  1567. Brian
  1568.  
  1569. -----------------------------
  1570.  
  1571. From: ae56@rz.uni-karlsruhe.de
  1572. Subject: CFP: CSAM93 Computer Congress
  1573. Date: 13 Nov 92 13:33:13 GMT
  1574. Sender: USENET 'No news is bad news' News System <usenet@rz.uni-karlsruhe.de>
  1575. Originator: ae56@ma70.rz.uni-karlsruhe.de
  1576. To:       info-unix@sem.brl.mil
  1577.  
  1578. ******* FIRST ANNOUNCEMENT AND CALL FOR SESSIONS AND PAPERS ************
  1579.  
  1580.  
  1581.       INTERNATIONAL CONGRESS ON COMPUTER SYSTEMS AND APPLIED MATHEMATICS
  1582.  
  1583.                            19-23 JULY 1993
  1584.  
  1585.                         ST. PETERSBURG, RUSSIA
  1586.  
  1587. Organized by Center of Modern Communications, University of St.
  1588. Petersburg
  1589.  
  1590. THE AIMS  of the  Congress are  to provide  a forum  to explore common
  1591. interests  and  interplay  across   disciplines,   and  to  bring   to
  1592. practicing  researchers  recent  advances   and the state  of the  art
  1593. in  all  areas  of  computer  science,  scientific computing, software
  1594. engineering,  applied  and  computational  mathematics.  The  official
  1595. language  of  the  Congress  is  English  and  only  papers  submitted
  1596. in English  will  be considered.
  1597.  
  1598. THE TOPICS  highlighted by  the Congress  include, but are not limited
  1599. to: Programming   Languages;      Numerical    Analysis;  Differential
  1600. Equations;   Inverse Problems; Fluid Dynamics; Quantum and Statistical
  1601. Mechanics; Applied  Probability and Statistics; Theory  of  Computing;
  1602. Scientific  Computation;      Parallel   Processing;   Supercomputing;
  1603. Optimization and  Operations   Research;  Software    Engineering  and
  1604. Compiler Construction;  Symbolic Computation;    CASE  Tools;    Fuzzy
  1605. Systems;  Databases;  Networks; Neural Nets;  Artificial Intelligence;
  1606. Expert  Systems;   Computer  Graphics;  Computer  Vision    and  Image
  1607. Processing; Data  Security; Simulation and Modelling; Electromagnetics
  1608. and Semiconductors;  Medicine  and  Biology;  Mathematical  Education;
  1609. Dynamical Systems;  Economics and   Management; Environmental Science;
  1610. Manufacturing Systems; Material Science;
  1611.  
  1612. MINISYMPOSIA PROPOSAL:
  1613. The Program Committee invites you, as a potential organizer, to submit
  1614. a proposal  for a  minisymposium. A  minisymposium is a session of 3-6
  1615. speakers focusing  on a  single topic.  The organizers   should submit
  1616. the title(s)  of the session(s) they propose to the  Program Committee
  1617. as soon as possible. Minisymposium organizers are responsible  for the
  1618. scientific quality   of  papers in  their sessions,  consequently  all
  1619. papers invited by  organizers are automatically accepted.
  1620.  
  1621. CONTRIBUTED PAPERS/POSTER PRESENTATIONS:
  1622. The   program   will  also include contributed paper  sessions   (20 -
  1623. minute presentation), posters,  and industrial  exhibits. Authors  are
  1624. invited   to submit  to  the CSAM'93  Program  Committee  a  one  page
  1625. abstract   and indicate  if they  prefer an  oral or  poster  session.
  1626. Authors may  suggest the  title(s)   of   appropriate  session(s)  for
  1627. their   paper. Manuscripts of  papers presented  at the  Congress will
  1628. be   published   as CSAM'93  Proceedings after  the Congress. A volume
  1629. containing all  abstract of the accepted papers and description of all
  1630. minisymposia including titles and speakers known  by May 1, 1993, will
  1631. be available  to the  participants at  the  Congress. Late  papers and
  1632. sessions, if  accepted, may  be presented  at the Congress and will be
  1633. listed in the Supplementum to the final program.
  1634.  
  1635. DEADLINES:
  1636. Minisymposium proposals:  As soon  as possible; Early submissions due:
  1637. February  1,   1993;  Normal   submissions  due:  May  1,  1993;  Late
  1638. submissions: After May 1, 1993.
  1639.  
  1640. EXHIBITOR INFORMATION:
  1641. Booths and  tables will  be available  to companies wishing to display
  1642. their products and/or services.
  1643.  
  1644. WHY COME TO CSAM'93 ?
  1645. Besides  the  privilege  of  hearing  the  invited  talks of leading
  1646. specialists you will  have the pleasure to listen  to other lectures
  1647. and to meet colleagues from many countries. The congress is the first
  1648. to offer really extensive contacts with people "from behind the iron
  1649. curtain". It  takes place in the  Northern Venice - St. Petersburg,
  1650. one of the most fascinating cities  in Europe.
  1651. Excellent accomodation in the Congress Centrum is offered at
  1652. reasonable cost. Accopanying persons are welcome.
  1653.  
  1654. Send inquires  for further  information, proposals  for  minisymposia,
  1655. and two copies of the abstract to:
  1656.  Dr. Sergey S. Voitenko
  1657.  Director, Center of Modern Communications,
  1658.  University of St. Petersburg
  1659.  14th Line 29
  1660.  199178 St. Petersburg
  1661.  Russia
  1662.  e-mail: serge@spfac.lgu.spb.su
  1663.  
  1664. Outside of  Ex-USSR and  Eastern Europe proposals for minisymposia and
  1665. abstracts can be also send to Dimitri Shiriaev
  1666.  e-mail: dima@iamk4508.rz.uni-karlsruhe.de
  1667.  -----------------------Cut Here------------------------------------------------
  1668.  
  1669.                          FORM OF INTENTION
  1670.  
  1671. Name:
  1672.  
  1673. Affiliation:
  1674.  
  1675. Address:
  1676.  
  1677.  
  1678. Check as appropriate:
  1679.  
  1680. I plan to attend CSAM'93 and to :
  1681.  
  1682.  - organize a Session/Group of Sessions
  1683.  
  1684.  - contribute a 20 min lecture
  1685.  
  1686.  - present a poster
  1687.  
  1688.  - present a computer demonstration
  1689.  
  1690. Provisional title(s) of contributed session(s)/paper:
  1691.  
  1692. Although I have not yet decided to attend I wish to
  1693.  
  1694.  - stay on the mailing list
  1695.  
  1696. Date:                         Signature:
  1697.  
  1698. Please mail this form to Dimitri Shiriaev
  1699.  e-mail: dima@iamk4508.rz.uni-karlsruhe.de
  1700.  Subject: CSAM93
  1701.  
  1702. -----------------------------
  1703.  
  1704. From: freibeu@ze8.rz.uni-duesseldorf.de
  1705. Subject: sum -r source/algorithm
  1706. Keywords: checksum computation
  1707. Date: 13 Nov 92 15:09:50 GMT
  1708. NNTP-Posting-Host: ze8.rz.uni-duesseldorf.de
  1709. To:       info-unix@sem.brl.mil
  1710.  
  1711. Hello Unix-Users!
  1712.  
  1713. I would like to implement a similar command as "sum -r" to MS-DOS and was     
  1714. wondering if there is an exact description of the used algorithm or even 
  1715. a source code.
  1716.  
  1717. Please mail suggestions, answers, sources etc directly to me!
  1718.  
  1719. Thanks -- Jochen
  1720.  
  1721. -----------------------------
  1722.  
  1723. From: Robert Perlberg <perl@dwrsun4.uucp>
  1724. Subject: Re: net.views - mainframe programmers in an open systems world
  1725. Date: 13 Nov 92 18:47:15 GMT
  1726. To:       info-unix@sem.brl.mil
  1727.  
  1728. In article <49331@shamash.cdc.com>, jitze@svl.cdc.com (Jitze Couperus) writes:
  1729. } nelson_don@comm.tandem.com (Don Nelson) writes:
  1730. } >In article <1992Nov03.145701.22033@utoday.com> Mitch Wagner,
  1731. } >wagner@utoday.com writes:
  1732. } >>
  1733. } >>           Is it possible to put the skills of mainframe programmers
  1734. } >>           to use in open environments? If so, how?
  1735. } >> 
  1736. } >> 
  1737. } >I'm having a little trouble understanding the question.  Perhaps you 
  1738. } >could explain in 25 words or less why mainframe programmers differ from 
  1739. } >programmers in "the open world" (which is definitely not as open as some 
  1740. } >people think).  Most mainframe programmers work on business applications 
  1741.  
  1742. } For example - years ago the industry discovered the benefits
  1743. } of separating screen definitions from the body of the 
  1744. } application's code (much like separating the DDL for a database
  1745. } from the DML). This is still rarely provided by the "open"
  1746. } Cobol compilers, so users frequently resort to separate screen
  1747. } design/handling packages (e.g. JAM from JYACC) to avoid
  1748. } entangling such stuff inside the application's code itself.
  1749.  
  1750. It has never been necessary for device-specific or system-specific code
  1751. to be embedded within the application.  Good programmers have always
  1752. written programs in a modular fashion such that if the application
  1753. needs to be ported, only the system-specific modules need to be
  1754. modified, not the application code.  My view of mainframe programmers
  1755. is that they don't do modular programming because they don't understand
  1756. which aspects of the system may vary from one system to another since
  1757. the system they are using is the only system they have ever known.
  1758.  
  1759. Robert Perlberg
  1760. Dean Witter Reynolds Inc., New York
  1761. {murphy | philabs}!dwrsun4!perl
  1762.     -- "I am not a language ... I am a free man!"
  1763.  
  1764. -----------------------------
  1765.  
  1766. From: Paul Penrod <furballs@sequent.com>
  1767. Subject: MDBM and PCOMM
  1768. Date: 14 Nov 92 03:04:17 GMT
  1769. Sender: usenet  <usenet@sequent.com>
  1770. Nntp-Posting-Host: crg8.sequent.com
  1771. To:       info-unix@sem.brl.mil
  1772.  
  1773. Can anyone tell me where I can find the multiple key version of
  1774. DBM, known as MDBM? I have the old source to DBM, but it is a few
  1775. years old and in need of some update.
  1776.  
  1777. Also, I am looking for the Procomm Plus communications package
  1778. workalike for UNIX call PCOMM.
  1779.  
  1780. Thanks in advance...
  1781.  
  1782.  ...Paul
  1783.  
  1784. -- 
  1785.  --------------------------------------------------------------------
  1786.             Bureaucracy: noun, plural - Bureaucracies.
  1787.          The process of turning energy into solid waste.
  1788.  ---------------------------------------------------------------------
  1789.  
  1790. -----------------------------
  1791.  
  1792. From: "Arthur X. Nghiem" <arthur@ccwf.cc.utexas.edu>
  1793. Subject: Help wanted with Thompson Toolkit (Thompson Automation)
  1794. Date: 14 Nov 92 05:53:07 GMT
  1795. Sender: news@ut-emx.uucp
  1796. Originator: arthur@sleepy.cc.utexas.edu
  1797. To:       info-unix@sem.brl.mil
  1798.  
  1799. Hello,
  1800.  
  1801.  
  1802. I'm looking for someone to talk with that knows "The Thompson Toolkit."
  1803. I'm starting a project that involves this environment.  I would really
  1804. apreciate any information on appropriate news groups to read, gurus to
  1805. talk to, and Internet addresses to the people at Thompson Automation.
  1806.  
  1807. Please Email me any help and/or suggestions.
  1808.  
  1809.  
  1810. Thank you,
  1811.  
  1812.  
  1813. Arthur Nghiem     arthur@ccwf.cc.utexas.edu
  1814.  
  1815.  
  1816. P.S.
  1817.  
  1818.          Thompson Automation
  1819.          5616 SW Jefferson
  1820.          Portland, OR 97221
  1821.          (503) 224-1639
  1822.  
  1823. -- 
  1824. |  (|/ '()` <()/    ________________________________________________  
  1825.  _ O        .> |   / Arthur X. Nghiem  arthur@ccwf.cc.utexas.edu
  1826.   /_/  -__ -- /    \                   PO Box 7103-Austin, Tx 78713  
  1827.           ---   
  1828.  
  1829. -----------------------------
  1830.  
  1831. From: Paolo Remagnino <P.Remangino@ee.surrey.ac.uk>
  1832. Subject: *** HELP:: Linux Xserver ***
  1833. Keywords: hercules
  1834. Date: 14 Nov 92 16:13:10 GMT
  1835. Sender: Paolo Remagnino <eepgppr@ee.surrey.ac.uk>
  1836. To:       info-unix@sem.brl.mil
  1837.  
  1838.  
  1839.   Hi there,
  1840.  
  1841.  last nite, with the help of two of my brilliant friends, I managed
  1842. to install Liunx on my ibm-pc clone 386 with 4 megs of RAM and 41 mags
  1843. of hard disk !
  1844. The problem did pop up when I tried to install X11R5 ! I have a hercules
  1845. card, and I realized that there were no drive for such card, we almost committed
  1846. suicide. Linux installed with SLS is piss easy, but what about the Hercules driver
  1847. and relative Xserver ? 
  1848.  
  1849.  Has anybody succeded to get or to build an Xserver for a Hercules graphic card ?
  1850.  
  1851.  I would be delited to know !
  1852.  
  1853.  
  1854.         thanx ain advance for any help,
  1855.  
  1856.  
  1857.  
  1858.         Paolo
  1859.  
  1860. -----------------------------
  1861.  
  1862. From: Bob Lee <rlee@bgsu.edu>
  1863. Subject: Unattended execution
  1864. Date: 14 Nov 92 16:14:58 GMT
  1865. Sender: Bob Lee <rlee@andy.bgsu.edu>
  1866. To:       info-unix@sem.brl.mil
  1867.  
  1868.  
  1869. This is a question to all you Unix experts out there.
  1870.  
  1871. There is a task I want to perform, it includes recursively searching over
  1872. 200 directories and over 1000 files for an occurance of a text string in
  1873. any of the files. As you probably guessed, this task takes quite a while
  1874. and I want to do it for more than one text string.
  1875.  
  1876. Is there any way to get this process to perform after I logoff, like an
  1877. unattended session. I know CTRL-Z suspends the process but that's not what
  1878. I need. I figure I can execute the process, re-route output to a file,
  1879. logoff, and then log back on 3 hours later to see the results.
  1880.  
  1881. Please e-mail any helpful information you may have since I don't read this
  1882. newsgroup very often.
  1883.  
  1884. Thanks!
  1885.  
  1886. -BOB
  1887.  
  1888. -----------------------------
  1889.  
  1890. From: Earl Mccoy <emccoy@next383>
  1891. Subject: Public domain src for "ttype"
  1892. Keywords: src ttype pd
  1893. Date: 14 Nov 92 18:04:23 GMT
  1894. Sender: news@rpslmc.edu
  1895. Nntp-Posting-Host: next383.is.rpslmc.edu
  1896. To:       info-unix@sem.brl.mil
  1897.  
  1898. Can someone point to a public domain c source for a "ttype"-like program  
  1899. that returns one's terminal type? I wish to use it to set TERM as in  
  1900. TERM=`ttype`. Thanks in advance. Earl McCoy emccoy@next383.is.rpslmc.edu
  1901.  
  1902. -----------------------------
  1903.  
  1904. From: Jason M Ferguson <ferguson@wizard.etsu.edu>
  1905. Subject: C Program error
  1906. Date: 14 Nov 92 18:44:52 GMT
  1907. Sender: usenet@ra.oc.com
  1908. To:       info-unix@sem.brl.mil
  1909.  
  1910. Hi! I am beta-testing a unix program, but seem to have bitten off more than I
  1911. can chew. The following line barfs during the compilation:
  1912.  
  1913. typedef void (*setvarproc)(char , int);
  1914.  
  1915.     My system is running HP-UNIX. Does anyone see the problem with
  1916. this? I realise the idea is to create a special variable type, and
  1917. suspect the problem is syntax. Any help would be appreciated.
  1918.  
  1919. -----------------------------
  1920.  
  1921.  
  1922. End of INFO-UNIX Digest
  1923. ***********************
  1924.  
  1925.