home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Distributions / ucb / 2.9-derivatives / 2.9bsd_pro380_lanciani / README < prev    next >
Text File  |  2002-04-19  |  3KB  |  84 lines

  1. Installing 2.9/net on a PRO380
  2.  
  3. (Assumes RD52 or better.)
  4. (Cards must be in "standard" order, e.g., DECNA in 4'th slot.)
  5.  
  6. 1.  Create a boot floppy.  The file proboot.img contains an image
  7. of the boot floppy in "logical" block order.  It can be used with
  8. a compatible system that writes real RX50s.  The file proboot.pc
  9. contains a raw image that can be used to create a boot disk on
  10. a PC/AT.  Use the mkdisk.bat file which in turn invokes wdisk.exe.
  11. Wdisk defaults to drive A:.  Add the "-u 1" switch to instead specify
  12. B: (i.e., unit 1).
  13.  
  14. 2.  Connect console serial maintenance cable to PRO and terminal
  15. at 9600 baud.  Boot floppy.  At the boot prompt, enter r5(0,0)rdfmt
  16. and specify disk type when asked.  This will format the hard disk
  17. (takes a long time).
  18.  
  19. 3.  Disconnect console cable and boot floppy.  Be sure the
  20. rd driver correctly identifies your hard disk.  Additionally,
  21. a flag value equal to your hard disk's RD type will display
  22. if you did not lie to rdfmt.  You should get a shell on the PRO's
  23. screen.  Ignore the error about no children.  Create root & usr
  24. file systems:
  25.  
  26. mkfs /dev/rd0a 4480
  27. [This would be 2240 for 4-head disks RD50, RD51.  But they are probably
  28. not big enough for rest of the procedure.]
  29. mkfs /dev/rd0c 26240
  30. [This would be 59008 for an RD53, 6528 for an RD51 and 1632 for an RD50.
  31. The real partitions are c,d,e,f for RD53,52,51,50.  But c works for all.]
  32. sync
  33.  
  34. 4.  Configure network:
  35.  
  36. ifconfig dc0 <your IP address> up
  37. [Might want to add -trailers]
  38.  
  39. 5.  Mount /usr file system:
  40.  
  41. mount /dev/rd0c /mnt
  42.  
  43. 6.  Connect to your ftp server and transfer root dump:
  44.  
  45. ftp <server's ip address>
  46. [Don't worry about unknown service error.  This ftp can run without the
  47. usual database files.]
  48. [give user and password]
  49. bin
  50. [VERY important to put in binary mode!]
  51. get root.dump /mnt/root.dump
  52. quit
  53. sync
  54.  
  55. 7.  Restore the root dump:
  56.  
  57. restor rf /mnt/root.dump /dev/rd0a
  58. [Tell restor yes.]
  59. sync
  60.  
  61. 8.  Unmount /usr and mount root:
  62.  
  63. umount /dev/rd0c
  64. mount /dev/rd0a /mnt
  65. sync
  66.  
  67. 9.  Install boot block:
  68.  
  69. dd if=/mnt/mdec/rdboot of=/dev/rd0h
  70. [This would be rdboot4 for 4-head disks RD50, RD51.]
  71. sync
  72. sync
  73. sync
  74.  
  75. 10.  Power off, remove floppy, power on.  System should boot from hard disk...
  76. unless... /boot or /unix include any remapped blocks (the boot block and stand
  77. alone drivers don't support them) or you used a 4-head disk (the boot string in
  78. that case is rd(2,64)unix while the default is rd(0,128)unix for 8-head disks)
  79. In the former case you can experiment with moving the files around after loading
  80. from the boot floppy.  In the latter case you can use the maintenance cable to
  81. enter the boot string manually.
  82.  
  83. questions/comments to Dan Lanciani ddl@danlan.com
  84.