home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / disk / Devs+Handler / PFS75 / Readme.doc < prev    next >
Text File  |  1994-05-15  |  19KB  |  473 lines

  1.  
  2.             Professional File System (c) 1993/94 by Michiel Pelt
  3.                                                                
  4.  
  5.  
  6.  
  7.                      Release 3 Version 7.5 20-04-1994
  8.  
  9.  
  10.  
  11. 1. Distribution Conditions
  12.  
  13.   This program is copyright (c) 1993 by Michiel Pelt.  It may be
  14. distributed freely under the condition that no profit is gained from
  15. its distribution, nor from any other program distributed in the same
  16. package.
  17.  
  18.   Permission is granted to distribute this package by Bulletin Board
  19. systems or network sites, under the condition that no fee is charged
  20. on downloading it.
  21.     
  22.   All files that are part of this package have to be distributed
  23. together and none of them may be changed in any way other than
  24. archiving or crunching.  The only exception to this rule are the
  25. icons, including the tooltypes, which may be changed to accomodate
  26. them to the rest of the disk it is distributed on.
  27.  
  28.   This program is distibuted as shareware.  If you like this product
  29. you should register.
  30.  
  31.  
  32. Disclaimer
  33.  
  34.   These programs are provided "as is" without warranty of any kind.
  35. All risks involved using these programs are entirely yours.  The
  36. author assumes no responsibility or liability whatsoever for any
  37. damage or dataloss caused by using this package.  Although everything
  38. has been done to make sure the program is fully functional, the author
  39. cannot guarantee this for a 100%.
  40.  
  41.  
  42.  
  43. 2. Introduction
  44.  
  45.   The standard AmigaDos filesystem (OFS) is not very fast.  Commodore has
  46. tried to improve the performance of their filesystem a number of
  47. times.  Workbench 2.0 added the fast file system (FFS), and now,
  48. with Workbench 3.0, we have the fast file system with directory
  49. caching (FFS-DC).  This makes directoryscan faster but writing to
  50. disk and directory-operations like delete and rename are slower than
  51. ever.
  52.  
  53.   This made me decide to write a filesystem that does better.  I used
  54. all the knowledge I gained from my computer science study to make it
  55. as good as possible.  The professional file system (PFS) has the
  56. following features:
  57.  
  58. High performance
  59. - write: 2-3 times faster
  60. - read: 50% faster
  61. - directoryscan: 10-20 times FFS, 3 times FFS-DC 
  62. - delete/rename/protect etc: 10-20 times faster
  63.  
  64. Other features
  65. - full AmigaDos compatibility
  66. - upto 10% more data on a disk
  67. - better faulttolerance
  68. - parralel access almost without performance loss
  69. - disks NEVER get invalidated
  70.  
  71.   This version of the filesystem is for floppy disks only.  Both double
  72. density and high density disks are supported.  The version suitable for
  73. harddisk is available for registered users only.
  74.  
  75.  
  76. System requirements
  77.  
  78.   PFS will work on any Amiga with kickstart 2.0 or higher.  It accepts both
  79. double- and highdensity diskdrives.  The amount of memory PFS uses depends
  80. on the contents of the disks present.  It will vary between 30 and 60K per
  81. drive.
  82.  
  83.  
  84. Harddisk version
  85.  
  86.   A harddisk supporting version is available for registered users. It
  87. currently has some limitations, but these will be eliminated soon.
  88.  
  89.  
  90.  
  91. 3. Installation
  92.  
  93.  
  94. Quick start
  95.  
  96.   If you want to try PFS first, just doubleclick on the "PF0" icon.
  97. "PF0:" now refers to PFS disks in drive 0.  Now proceed to chapter 4
  98. about formatting and using PFS disks.
  99.  
  100.  
  101. Installation on Workbench 2.0
  102.  
  103.   First you have to boot from your standard systemdisk or harddisk.
  104. Now execute the "install2.0" script by calling it from the shell or
  105. doubleclicking its icon.  This script will copy the filesystem to the
  106. l: directory of your systemdisk and add two entries to your
  107. mountlist, PF0:  and PF1:. 
  108.  
  109. To use the filesystem you have to mount it using the mount command:
  110.  
  111.     MOUNT pf0:
  112.     MOUNT pf1:
  113.  
  114. "PF0:" and "PF1:" now refer to PFS disks in drive 0 and 1. If you want
  115. to have PFS mounted on startup you should add these commands to your
  116. startup-sequence.
  117.  
  118.  
  119. Installation on Workbench 2.1/3.0
  120.  
  121.   First you have to boot from your standard systemdisk or harddisk.
  122. Now execute the "install3.0" script by calling it from the shell or
  123. doubleclicking its icon.  This script will copy the filesystem to the
  124. l:  directory of your systemdisk and put two files in your
  125. SYS:Storage/DOSDrivers directory called PF0 and PF1.  Doubleclicking
  126. their icons will mount the filesystem on the corresponding drive.
  127. "PF0:" and "PF1:" then refer to PFS disks in drive 0 and 1.  If you
  128. want to have PFS automaticly mounted on startup you can move the PF0
  129. and PF1 files to your Devs:DOSDrivers directory.
  130.  
  131.  
  132. Turbo users
  133.  
  134.   If you are the proud owner of a 68020+ machine you can, after
  135. installing the filesystem normally, replace the 68000 version in the
  136. l:  directory with the 68020+ version (you can find this in the l
  137. drawer). Make sure the name of the filesystem is the same as stated in
  138. the mountlist.  You can do that by renaming the filesystem in
  139. "ProfFileSystem" or by changing the mountlist.
  140.  
  141.  
  142. Making and changing mountlistentries
  143.  
  144.   If you have more than two drives, or you don't like the default
  145. devicenames, you can change the mountlistentries to suit your needs.
  146. Note that the "Buffers" keyword has no meaning with this version of
  147. the filesystem. Its merely added for future compatibility. Make sure
  148. that you set the "Unit" right. Please refer to the DOS manual for more
  149. details.
  150.  
  151.  
  152.  
  153. 4. Using PFS disks
  154.  
  155.  
  156. Formatting disks
  157.  
  158.   After mounting you can format floppies in PFS format by using the
  159. standard c:format command. To format a disk named "hello" type:
  160.  
  161. format drive pf0: name hello
  162.  
  163. If the disk has been formatted before, you can use the quick option,
  164. even if the previous format was FFS or OFS (this works the other way
  165. around too).
  166.  
  167. format drive pf0: name hello quick
  168.  
  169.  
  170. Accessing disks
  171.  
  172. Shell use:
  173.  
  174.   PFS disks can be referenced to by diskname (e.g.  "hello:") or by
  175. mountname (e.g.  pf0:  or pf1:).  Almost all cli-commands work on PFS
  176. disks like on any other disk, only faster.
  177.  
  178. Workbench use:
  179.  
  180.   When a PFS disk is inserted in drive 0 two icons will appear on your
  181. workbench:  one with label "DF0:PFS" and one with the diskname as
  182. label.  The first comes from the standard filesystem, the second from
  183. the PFS filesystem.  You can access the disk through the latter icon.
  184. It will behave just like df0:, only faster.
  185.  
  186.  
  187. Differences with FFS/OFS
  188.  
  189.   When you use the c:list command the 'blocks used' information will
  190. be to high.  The list command assumes every file consumes a block of
  191. free space to use as headerblock.  This filesystem uses blocks much
  192. more efficient, however.  As a rule of thumb you can say that the real
  193. number of blocks used is the given amount minus the number of files
  194. listed.  You can check this with the "info" command, which does give
  195. the correct amount.  Directory tools like Directory Opus have the same
  196. problem with their spaceleft figure during a copy session.  You'll
  197. notice that after copying is finished the figure will go up, back to
  198. the correct figure.
  199.  
  200.   You'll probably understand now that there generally goes more on a
  201. PFS disk than on a FFS disk. PFS uses a larger part of the blocks for
  202. actual data storage.
  203.  
  204.   Programs asking the filesystem information about a pfs disk will be
  205. fooled into believing the disk is a FFS disk.  I do this to prevent
  206. those programs from saying it's not a dos disk without giving the
  207. information requested to the user (e.g.  the "info" command).
  208.  
  209.   The "c:AddBuffers" command used on pfs devices won't have any
  210. effect on the cache, nor on memoryusage. PFS uses a dynamic directory-
  211. and allocationblock caching algorithm, without any cachelimits. This
  212. won't take too much memory (max about 30K), because the number of
  213. directoryblocks on a floppydisk is limited.
  214.  
  215.  
  216.  
  217. 5. AmigaDos compatibility
  218.  
  219.   All Amiga-Dos features are implemented except hardlinks, filechange
  220. notification and recordlocks which are not used much anyway.  All
  221. these features may be implemented in a future version, though.  A PFS
  222. disk currently cannot be made bootable, so a PFS disk cannot be
  223. "installed".
  224.  
  225.  
  226.  
  227. 6. Restrictions
  228.  
  229. PFS has the standard Amigados restrictions on file and disk naming:
  230.  
  231. - maximum disknamelength 32
  232. - maximum filenamelength 108
  233. - maximum commentlength 80
  234. - almost unrestricted characteruse in filenames
  235.  
  236. These restrictions are forced by AmigaDos, they are not inherent to
  237. the filesystem. The number of files in a directory or on a disk is
  238. restricted by available diskspace only.
  239.  
  240.  
  241.  
  242. 7. Faulttolerance
  243.  
  244.   If you reset or crash your machine during a write operation a
  245. standard AmigaDos disk gets 'invalidated'.  When you insert that disk
  246. later the disk will be revalidated automaticly.  After this the
  247. directory is back in the state it was before the writeoperation.  This
  248. actually is a neat feature, but it has two drawbacks:  revalidating
  249. takes time and, if you were overwriting a file at the time of the
  250. crash, you lose both the original and the new version, since the file
  251. has been half overwritten.  The directory states falsely that nothing
  252. happened, however.
  253.  
  254.   With PFS the directory is correct at all times.  This means that
  255. whenever you remove the disk ¹), reset or crash the system, all the
  256. objects (files and directories) listed in the directory will be there
  257. as stated in that directory, including the filesize and date.  In
  258. other words:  a PFS disk NEVER gets invalidated.  This does not mean
  259. you cannot lose any data, however.
  260.  
  261.   This is how it works:  when you operate on the disk (creating files
  262. and directories, deleting files etc) the filesystem keeps track of
  263. all changes to the directory but doesn't write these changes to the
  264. disk until the operation is completed.  It does write the data but
  265. only to clean areas, that is, diskspace that wasn't in use the last
  266. time the directory was updated.  If that's not possible anymore, or
  267. you stop writing to the disk for half a second, the directory is
  268. updated so that the area occupied by deleted files can be reused
  269. without invalidating the disk.  So if the machine brakes down at a
  270. nasty moment you will probably find the disk in the state it was
  271. before you started your writing session.  This includes overwritten
  272. files:  they'll be back in their old state, unless the free diskspace
  273. didn't allow it (only in that case both versions could be gone ²).
  274.  
  275.   The directory and allocationtables themselves are also updated in
  276. such a way that the disk cannot become invalidated.  So even a crash
  277. during the update won't invalidate the disk.
  278.  
  279.   An extra advantage of this procedure is that files that are
  280. overwritten by a larger version are not fragmented, as in most
  281. filesystems.  The file will be fragmented only when there is no large
  282. enough continuous free segment available.  A fragmented file is even
  283. defragmented if possible.
  284.  
  285.   Disadvantages are that the freespace on the disk gets more
  286. fragmented than strictly necessary and that the directory has to be
  287. updated more often.  PFS does everything it can to limit
  288. freespace-fragmentation as much as possible.
  289.  
  290.   A PFS disk normally cannot get invalidated but it can get corrupted.
  291. Nothing can be done against bad tracks on a disk or external programs
  292. (like virusses or diskeditors) that mess with the disk.  A read or
  293. write error makes a disk invalid.  There currently is no utility
  294. available to recover corrupted disks.
  295.  
  296.  
  297.   ¹) You should not remove the disk during an operation on purpose.
  298. If you do, you'll probably get a read/write error and a "You MUST
  299. insert volume xxx" request.  After this a "Not a dos disk" system
  300. request will appear.  Simply select retry and the operation will be
  301. continued.
  302.  
  303.   ²) If you want to make sure you can't lose a file by overwriting
  304. it you should keep in mind that the filesystem can only guarantee that
  305. if the free diskspace is more than the size of the old version + the
  306. size of the new version + 5K.  Then the directory will be updated
  307. after the new version has been written and not between deleting the
  308. old and writing the new version.
  309.  
  310.  
  311. Virus damage and viruskillers
  312.  
  313.   Bootblock virusses destroy the bootblock of the disk.  For this
  314. reason the filesystem doesn't store unrecoverable data in those
  315. blocks.  It does use the bootblock to recognize a disk as being a PFS
  316. disk, so if the bootblock is destroyed, the disk in question won't be
  317. recognized anymore.  To repair such a disk you simple have to write a
  318. PFS bootblock back to it.  You can do that by copying a bootblock of
  319. an uninfected disk to the disk in question.  Most viruskillers have
  320. functions to do that.  Remember not to change any blocks other than
  321. the bootblocks (block 0 and 1).
  322.  
  323.   Most viruskillers have no problem with PFS disks.  You should check
  324. if your viruskiller accepts uninfected pfsdisks as normal, however.
  325.  
  326.  
  327.  
  328. 8. Performance
  329.  
  330.   The PFS file system is a lot faster.  I have done a little test.
  331. I took a few empty disks and measured the time it took to copy a
  332. directory from harddisk to those disks and do some operations on this
  333. directory afterwards.  The results are listed below.  All figures are
  334. in seconds and all display output is redirected to NIL:.  The stated
  335. directory totals 65 files and 560054 bytes.  These figures are
  336. measured on a A4000/040.
  337.  
  338. diskformat->            PFS HD  PFS DD  FFS HD  FFS-DD  FFS-DC DD
  339. -----------------------------------------------------------------------
  340. write all               54      55      196     130     133
  341. read all                25      27      38      37      39
  342. show dir                <1      <1      13      9       1
  343. delete all              3       3       50      40      41
  344.  
  345. Diskspace left                  311K            279K    277K
  346. after write
  347. -----------------------------------------------------------------------
  348.  
  349.   High density disks profit the most, as you see. FFS doesn't seem to
  350. handle high density disks very well.
  351.  
  352.   There's another problem with OFS/FFS disks:  writing or reading
  353. simultaniously to one disk is very slow.  With PFS, however, you'll
  354. hardly notice the difference with sequential access.
  355.  
  356.   The write-performance of PFS disks declines when the disk is almost
  357. full.  The disk gets more fragmented and the directory has to be
  358. updated more often (p.s. any filesystem has this problem, including
  359. FFS).  If you want to keep the writeperformance high its wise to leave
  360. 30-50 K free.  Read-performance is hardly influenced by the disk being
  361. full, however.
  362.  
  363.   A filesystem cannot change the physical transfer-rate between
  364. computer and diskdrive.  In fact PFS uses the same "trackdisk-device"
  365. as FFS does.  So diskspeed-testers probably won't show much
  366. improvement, accept for the filesystem specific tests like directory-
  367. scan, filecreate, -delete, -rename, -open, -close etc. You will notice the
  368. difference in practice, however.
  369.  
  370.   If the disk gets very fragmented you can create an optimized disk
  371. simply by copying all files to a new disk.
  372.  
  373.  
  374.  
  375. 9. Tips and tricks
  376.  
  377. Here are some tips for diskuse. Most of them work on FFS disks too
  378.  
  379. - If you want to copy files from one floppy to another using only one
  380. drive, don't copy directly (e.g. copy disk1:#? disk2:), but use the
  381. ram disk (e.g. copy disk1:#? ram: followed by copy ram:#? disk2:).
  382.  
  383. - Writing all .info files in a directory first and then all other
  384. files puts the .info files close together. Now the workbench can read
  385. all the icons a lot faster.
  386.  
  387. - When a file on a PFS disk is fragmented, and there is sufficient
  388. continuous free space available, you can defragment the file simply by
  389. overwriting it. 
  390.  
  391.  
  392.  
  393. 10. Programmers info
  394.  
  395. The file 'programmersinfo' contains information about the
  396. diskstructure of PFS. I encourage everyone who is interested to
  397. implement tools for PFS. I am quite occupied updating PFS itself, I
  398. don't have time left to spent implementing things like optimizers and
  399. recover tools. I will fully support any programming attemps. You can
  400. contact me anytime if there are any open questions or problems.
  401.  
  402.  
  403.  
  404. 11. Bugs
  405.  
  406. If you find something that doesn't function properly please let me know.
  407.  
  408.  
  409.  
  410. 12. Registration
  411.  
  412.   If you like this product you should register.  You will get the
  413. harddisk version and all major updates without extra charge.
  414.  
  415.   If you wish to make utilities for PFS, like undelete, optimize or
  416. repair, you can request programmers information on the registration
  417. form under 'requests'.
  418.  
  419.   The registration fee is f25 Dutch Guilders in cash.  In other
  420. currencies the fee is slightly higher to take transfer costs into
  421. account:  US $15, DM 25, £10 or the equivalent in another currency.
  422. European residents can use Eurocheques by writing them out in Dutch
  423. Guilders.  Don't use cheques in another currency, since the bank
  424. charges f15 transfercosts for that.  Payment in cash is preferred,
  425. however.
  426.  
  427.   Please sent this completed form to:
  428.  
  429.         Michiel Pelt
  430.         Waalstraat 328
  431.         7523 RS Enschede
  432.         The Netherlands
  433.  
  434.   E-Mail address: pelt@cs.utwente.nl
  435.  
  436. -----------------------------------------------------------------------
  437.  
  438.                           Registration form
  439.  
  440.  
  441.   Name:        ______________________________________________________
  442.  
  443.   Address:     ______________________________________________________
  444.                ______________________________________________________
  445.                ______________________________________________________
  446.                ______________________________________________________
  447.  
  448.   Computer:          ________________________________________________
  449.  
  450.   Kickstart version:          _______________________________________
  451.   Diskdrives:                 _______________________________________
  452.   Harddisk size & controller: _______________________________________
  453.   Memory Available:           _______________________________________
  454.  
  455.   Funds enclosed: ____________
  456.  
  457.   The most important things to add/change to/in PFS are:
  458.  
  459.        ______________________________________________________________
  460.        ______________________________________________________________
  461.        ______________________________________________________________
  462.        ______________________________________________________________
  463.        ______________________________________________________________
  464.  
  465.   Comments/requests/found bugs
  466.   
  467.        ______________________________________________________________
  468.        ______________________________________________________________
  469.        ______________________________________________________________
  470.        ______________________________________________________________
  471.        ______________________________________________________________
  472.  
  473.