home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / unix / bsd / 2549 < prev    next >
Encoding:
Text File  |  1992-07-21  |  3.6 KB  |  101 lines

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!mcsun!sunic!psinntp!psinntp!dg-rtp!ponds!rivers
  3. From: rivers@ponds.uucp (Thomas David Rivers)
  4. Subject: General problems (serial line, spontaneous reboots)
  5. Message-ID: <1992Jul21.025130.15471@ponds.uucp>
  6. Summary: Reboots, serial probs
  7. Date: Tue, 21 Jul 1992 02:51:30 GMT
  8. Lines: 91
  9.  
  10.  
  11.  
  12. I'm *very* pleased to get the newest 386bsd; it looks like some
  13. really nice work.
  14.  
  15. I just thought I would report some problems I'm seeing  and some
  16. possible areas to examine?)
  17.  
  18.  
  19. First of all, I'd like to report that the cursor seems to be confused
  20. for monochrome cards.  The line appears above the space instead of
  21. below it.  I got around this by using a CGA card displaying on my
  22. monochrome monitor (a clever little card from an old Tandy 1200H
  23. machine.)
  24.  
  25. Next, with respect to silo overflows in the serial driver.
  26. I was *plagued* with them when I was using an MFM disk, replacing
  27. that with an IDE disk appears to have corrected the problem.  Could
  28. there be a problem with interrupts being left too high, too long in the
  29. wd driver?
  30.  
  31. Next, I noticed that when running screen (the binary supplied in the
  32. etc01 distribution) on a serial line, the characters get buffered
  33. an extra time, some how, some where.  This isn't the case for screen
  34. running on the console; so there could be a problem in the serial driver
  35. (i.e. probably not the pty driver.)
  36.  
  37. Next, I thought I would try and replace the com driver with the latest
  38. one I had for 0.0 (in which Chris cgd@agate.berkeley.edu had implement
  39. bidirectional lines); however, the first compile of the locked up (it was
  40. over a serial line.)  I could type *nothing* anywhere and get any
  41. response - even ctrl-alt-delete; so I powered down and rebooted.
  42.  
  43. After the fsck's; I restarted the compile on the console instead of over
  44. a serial line.  This time, compiling part of ../../vm, the machine
  45. spontaneously rebooted.
  46.  
  47. The third time was the charmer, and I got everything compiled...
  48.  
  49. So, now, after complaining so much :-), let me offer one trivial
  50. helpful hint.  To compile trek (in the etc01 distribution) you need
  51. to remove the -lcompat from the Makefile line (there is no compat library
  52. for 386bsd), and properly define gtty() in main.c.  I added the following
  53. two lines just before main():
  54.  
  55. #define gtty(fd, argp) ioctl(fd, TIOCGETP, argp)
  56. #define stty(fd, argp) ioctl(fd, TIOCSETP, argp)
  57.  
  58.  
  59. Finally, let me give anyone concerned my configuration details:
  60.  
  61.     Hardware: DTK KEEN2000 (20mhz 386), with IIT FPU, with ROMs dating
  62.               from 1988.
  63.     Video: CGA adapter (displaying on monochrome)
  64.     Disk: Connor Peripheral 240AT (IDE)
  65.  
  66.     I re-installed everything myself (going by Chris's instructions, 
  67.   thanks Chris) to provide a large swap space and separate / and /usr
  68.   partitions, my disklabel looks like (in case is an obvious problem
  69.   with my swap partition):
  70.  
  71. type: ESDI
  72. disk: qp240at
  73. label:
  74. flags:
  75. bytes/sector: 512
  76. sectors/track: 36
  77. tracks/cylinder: 16
  78. sectors/cylinder: 576
  79. cylinders: 832
  80. rpm: 3600
  81. interleave: 1
  82. trackskew: 0
  83. cylinderskew: 0
  84. headswitch: 0           # milliseconds
  85. track-to-track seek: 0  # milliseconds
  86. drivedata: 0
  87.  
  88. 8 partitions:
  89. #        size   offset    fstype   [fsize bsize   cpg]
  90.   a:    81792        0    4.2BSD     1024  8192    16   # (Cyl.    0 - 141)
  91.   b:    36864    81792      swap                        # (Cyl.  142 - 205)
  92.   c:   479232        0    unused        0     0         # (Cyl.    0 - 831)
  93.   h:   359424   118656    4.2BSD     1024  8192    16   # (Cyl.  206 - 829)
  94.  
  95.  
  96.         - Dave Rivers -
  97.         (rivers@ponds.uucp)
  98.  
  99. p.s. If anyone would like it, I have disktab entries for a CP240AT (as above)
  100.      and a Micropolis 1325/1335.
  101.