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

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