home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 11 / AACD11.ISO / AACD / Magazine / Guru / RDB-Informer / RDB-Informer.readme < prev    next >
Text File  |  1994-11-22  |  2KB  |  69 lines

  1.  
  2.                            RDB-Informer V0.2
  3.  
  4.       Prints out information stored in the Rigid Disk Block of a device
  5.  
  6.  Written in C using MEmacs in September 1994 by
  7.  
  8.  Snail:
  9.                v
  10.      David Balazic
  11.      v
  12.      Centiba 39
  13.      69220 Lendava
  14.      Slovenija
  15.  
  16.  E-mail:
  17.  
  18.      David.Balazic@uni-mb.si
  19.  
  20.  
  21.  This program is FreeWare.
  22.  You may spread it as you like, but leave my name noticed.
  23.  
  24.  
  25.  With this program you can find out about partitions, filesystems,
  26.  bad-blocks, drive init codes and other HD related data.
  27.  
  28.  Usage (CLI only) :
  29.  > RDB-Informer [[DEVICE] <device>] [[UNIT] <unit-nr>]
  30.  
  31.  The default for DEVICE is 'scsi.device' and for UNIT '0'
  32.  
  33.  Examples :
  34.  > RDB-Informer scsi.device unit 4
  35.  > RDB-Informer gvpscsi.device unit 6
  36.  > RDB-Informer unit 2                ; uses scsi.device unit 2
  37.  > RDB-Informer evolution.device      ; uses evolution.device unit 0
  38.  
  39. How to find out the device name ?
  40.  
  41. If you have an A600,A1200,A3000 or A4000 then the name is 'scsi.device'.
  42.  
  43. Otherwise look at your controller's manuals :-(
  44. or use ARTM|XOper|some-other-system-monitor to list system devices
  45. and pick the right one.
  46. Usually the HD driving device contains in his name strings like
  47. 'scsi','hd','disk','hdisk','harddisk' or
  48. the name of manufacturer or controller like :
  49.  
  50.  'gvpscsi.device'
  51.  'z3scsi.device'
  52.  'nexus.device'
  53.  'evolution.device'
  54.  'hddisk.device'
  55.  'alf.device'
  56.  
  57.  
  58. The source is compiled with DICE using
  59. the Commodore Includes and the Commodore amiga.lib
  60. using the following script :
  61.  
  62. DCPP      RDB-Informer.c    -o T:RDB-Informer.i
  63. DC1     T:RDB-Informer.i    -o T:RDB-Informer.asm   -R -proto
  64. DAS     T:RDB-Informer.asm  -o   RDB-Informer.o
  65. DELETE  T:RDB-Informer.asm   quiet
  66. DLINK     RDB-Informer.o     LIB:amiga.lib          -o RDB-Informer
  67.  
  68. No c.lib and similar stuff is used !
  69.