home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 1: Collection A / 17Bit_Collection_A.iso / files / 174.dms / 174.adf / ASDG-rrd / Installation < prev    next >
Text File  |  1988-07-25  |  2KB  |  102 lines

  1. Article 1611 of comp.sys.amiga:
  2. Path: mcdsun!noao!hao!ames!lll-lcc!well!perry
  3. From: perry@well.UUCP (Perry S. Kivolowitz)
  4. Newsgroups: comp.sys.amiga
  5. Subject: Installing The ASDG Recoverable Ram Disk
  6. Message-ID: <2456@well.UUCP>
  7. Date: 23 Jan 87 07:03:49 GMT
  8. Lines: 90
  9.  
  10. The mount command does not exist under 1.1. I wrote a replacement, however.
  11. The rrd can work with 1.1 cli environment but the 1.1 workbench just isn't
  12. ready to  deal with  ram disks. So...I'm  not posting the 1.1 glue program
  13. since most people will have 1.2. Let me know if I am wrong.
  14.  
  15.  
  16. I should mention that the first two lines of your startup-sequence
  17. should be something like:
  18.  
  19.     mount vd0:
  20.     cd vd0:
  21.  
  22. The second line could be any reference to the device vd0:.
  23.  
  24. Here's a sample startup-sequence:
  25.  
  26. mount vd0:
  27. dir > nil: vd0:
  28. if EXISTS vd0:c
  29.     path vd0:c add
  30. else
  31.     makedir vd0:c
  32.     copy df0:c vd0:c all
  33.     path vd0:c add
  34. endif
  35. if EXISTS vd0:lib
  36.     set LIB=vd0:lib
  37. else
  38.     makedir vd0:lib
  39.     copy df0:lib vd0:lib all
  40. endif
  41. if EXISTS vd0:include
  42.     set INCLUDE=vd0:include
  43. else
  44.     makedir vd0:include
  45.     copy df0:include vd0:include all
  46.     set INCLUDE=vd0:include
  47. endif
  48. set CCTEMP=vd0:
  49. addbuffers df0: 16
  50. addbuffers df1: 16
  51. addbuffers df2: 16
  52. stack 8192
  53.  
  54. Here's one for the 1.2 workbench environment:
  55.  
  56.  
  57. mount vd0:
  58. if EXISTS vd0:c
  59.    assign c: vd0:c
  60.    echo "Command directory running from of VD0:"
  61. else
  62.    copy df0: vd0: all
  63.    assign c: vd0:c
  64. endif
  65. cd vd0:
  66. path reset
  67. if EXISTS vd0:system
  68.    path vd0:system add
  69.    echo "System directory running from of VD0:"
  70. endif
  71. if EXISTS vd0:s
  72.    assign s: vd0:s
  73.    echo "Script directory running from of VD0:"
  74. endif
  75. if EXISTS vd0:l
  76.    assign l: vd0:l
  77.    echo "System's l directory running out of VD0:"
  78. endif
  79. if EXISTS vd0:fonts
  80.    assign fonts: vd0:fonts 
  81.    echo "Fonts directory running out of VD0:"
  82. endif
  83. if EXISTS vd0:devs
  84.    assign devs: vd0:devs
  85.    echo "Device directory running out of VD0:"
  86. endif
  87. if EXISTS vd0:libs
  88.    assign libs: vd0:libs
  89.    echo "Libs directory running out of VD0:"
  90. endif
  91. echo "Workbench disk.  Release 1.2 version 33.44"
  92. echo " "
  93. echo "Use Preferences tool to set date"
  94. addbuffers df0: 16
  95. addbuffers df1: 16
  96. BindDrivers
  97. LoadWb
  98. assign sys: vd0:
  99. endcli > nil:
  100.  
  101.  
  102.