home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / Information / 1581-INFO.TXT < prev    next >
Encoding:
Text File  |  2019-04-13  |  34.8 KB  |  877 lines

  1.  ------------
  2.  ************
  3. Topic 6         Sat Jan 14, 1989
  4. KAUS                         at 18:42 EST
  5. Sub: 5.25 TO 3.5 DRIVE                      
  6.  
  7. COPY PROGRAMS FROM 5.25 TO 3.5 DRIVE
  8. 2 message(s) total.
  9.  ************
  10.  ------------
  11. Category 17,  Topic 6
  12. Message 1         Sat Jan 14, 1989
  13. KAUS                         at 18:45 EST
  14.  
  15.  Can any one tell me of a program that lets me put my 5.25 programs
  16.  on the 3.5 disk drive. some of the programs are copy protected but I should 
  17. have the right to put Them on the new disk. it loads faster and has more
  18.  room!          please let me know if you can help.
  19.                         KAUS
  20.  ------------
  21. Category 17,  Topic 6
  22. Message 2         Mon Feb 20, 1989
  23. C128.CPM [Bill]              at 17:42 EST
  24.  
  25. KAUS, there are several good copy programs that will let you copy from the 5
  26. 1/4 drives to the 3 1/2 drive.  Be aware, however, that some programs will
  27. look for specific areas on a disk (T & S) and the '81 drive doesn't match the
  28. '71 (or '41) drive.  These programs will copy, but not run.  When you bought
  29. the drives, you were given a demo disk which has several copy programs on it.
  30. There are many commercial and Public Domain programs available to do this,
  31. also.  One that comes to mind is NERDCOPY (C-128) uploaded by EBBS.
  32.  ------------
  33.  ************
  34. Topic 26        Fri Jun 12, 1987
  35. SPARROW.J                    at 23:06 EDT
  36. Sub: Programming the 1581 disk drive!       
  37.  
  38. Now that Commodore's latest (and in my opinion greatest) disk drive for the C-
  39. 128 and C-64 is now available on the retail level, I  decided to start a topic
  40. on programming and using the 1581!
  41. 14 message(s) total.
  42.  ************
  43.  ------------
  44. Category 17,  Topic 26
  45. Message 1         Fri Jun 12, 1987
  46. SPARROW.J                    at 23:36 EDT
  47.  
  48. The creation of Partition's and Subdirectories:
  49.  
  50. Perhaps the neatest thing about the 1581, besides its speed and storage
  51. capacity is its ability is your ability to create partitions and
  52. subdirectories.  This ability makes the organization of a high capacity
  53. drive's files much more managable.  Partition's on the 1581 are created
  54. through the use of the command channel.  Partitions show up on your
  55. directories as "CBM" files (a new filetype implemented in the 1581's upgraded
  56. version of Commodore DOS).  Here is how you create a partition:
  57.  
  58. Open 15,8,15,"/0:par-name,"+chr$(starting track)+chr$(starting sector)+
  59.               chr$(low byte of # blocks)+chr$(high byte of # blocks)+",C"
  60. :Close 15
  61.  
  62. Partitions are nothing more than protected areas of disk space.  Once a
  63. partition has been created the specifed area on the disk is protected from BAM
  64. allocation changes and validates (COLLECT).  One must be very careful not to
  65. create a partition that includes the 1581's directory track, track 40.  Doing
  66. so will make your disk somewhat useless although I am conviced that something
  67. along these lines is going to be used as a copy protection device if
  68. commercial software vendors ever decide to market software in the 3.5" format.
  69. Partitions are handy things because it makes it possible for foreign formats
  70. and bizarre stuff t"live" on the same disk as normal fomatted data.  For
  71. instance you can have a disk with both CP/M and native mode data on the same
  72. diskette (in addition it is looking quite possible that many really foreign
  73. MFM formats..like Atari ST may be able to live and even be read with the
  74. 1581.)  In addition, provided your partition is created in such a way that it
  75. meets the following criteria you can format the partitioned area and thereby
  76. create a "sub-directory" (actually a  directory of files that lives inside of
  77. the main or ROOT directory).
  78.  
  79. The criteria that your partition must adhere for the creation of a sub-
  80. directory is as follows:
  81.  
  82. 1) The partition area must be at least 120 blocks in size.
  83.  
  84. 2) The startind sector must be 0.
  85.  
  86. 3) The ending sector must be a multiple of 40.
  87.  
  88. If your partition qualifies you can create a subdirectory as follows:
  89.  
  90. 1. Select the partition via the command channel using:
  91.    Open 15,8,15,"/0:partition name"
  92.  
  93. 2. Format the area using the normal HEADER command or N0:name, id etc.
  94.  
  95. Now you have a nifty directory inside of your main directory.  You can return
  96. to the main directory by either issuing a DCLEAR (i0) or selecting it via the
  97. command channel via: Open 15,8,15,"/":close 15
  98.  
  99. Note that DOS will chew up 40 blocks in your sub-directory for BAM etc.
  100.  
  101. Try it..you can select your partition from any application program that allows
  102. you to send a command via the command channel (most of the best packages
  103. allows this.)
  104.  
  105. Don't have a 1581?  Don't blame me anymore..they are out there now..it is up
  106. to you...and your checkbook!!
  107.  ------------
  108. Category 17,  Topic 26
  109. Message 2         Sat Jun 13, 1987
  110. KEVIN.S                      at 01:55 EDT
  111.  
  112. Interesting info, Loren, thanks! Ouch, did I hear you say that DOS sequesters
  113. 10k of overhead for  each directory?  Hmmm. (It's all relative... I have over
  114. 100k in directories on my hard  disk at work;  but still!)
  115.                        KeS
  116.  ------------
  117. Category 17,  Topic 26
  118. Message 3         Sat Jun 13, 1987
  119. SPARROW.J                    at 18:53 EDT
  120.  
  121. Once you format a partition, your blocks free total is 40 blocks less than the
  122. amount you specify in your partition creation command (i.e. the high byte/low
  123. byte in the Print #15 bit).
  124.  
  125. --Sparrow James
  126.  ------------
  127. Category 17,  Topic 26
  128. Message 4         Sat Jun 20, 1987
  129. LGBRYAN [R F MAN]            at 21:04 MDT
  130.  
  131. IF THE 1581 IS OUT THERE I HAVE YET TO SEE ANYONE TO ADVERTISE IT......... I
  132. HAVE BEEN WONDERING WHEN IT WOULD BE AVAILABLE TO THE DISTRUBTERS FOR A LONG
  133. TIME NOW AND WONDERING ABOUT THE PRICE??????????? IF IT IS AVAILABLE I WOULD
  134. LIKE TO KNOW WHERE AND FOR HOW MUCH.........
  135.     I CANNOT EVEN FIND OUT WHERE I CAN GET THE UPGRADE ROMS FOR THE 1571  OR
  136. THE C-128. PEOPLE ADVERTISE THEM BUT WHEN I CALL THEY SAY THEY CANT  GET THEM
  137. FROM COMMODORE........     USUALLY PEOPLE ADVERTISE THINGS LIKE  THE 1581
  138. DRIVE MONTHS BEFORE THEY HAVE THEM IN STOCK.....  AND AS I  MENTIONED BEFORE I
  139. HAVE NOT SEEN ANYONE ADVERTISE THEM IN THE MAGS YET...
  140.  ------------
  141. Category 17,  Topic 26
  142. Message 5         Sun Jun 21, 1987
  143. CHARRINGTON [Courtney]       at 00:20 PDT
  144.  
  145. I'm getting the same story on the 128-D. Most mailorder houses are advertising
  146. them because of the lead time in placing the ad. I called about a half dozen
  147. last week and they all says...maybe in a month they will be available. Another
  148. promised deadline from Commodore...shot to hell.
  149.   Courtney
  150.  ------------
  151. Category 17,  Topic 26
  152. Message 6         Sun Jun 21, 1987
  153. MICHAEL.M [-:SysOp:-]        at 12:32 EDT
  154.  
  155. LGB - You should have no trouble acquiring the ROMS from a local CBM Service
  156. Center.  Check the list which came with your equipment, or tell us what city
  157. you live in. I've yet to see a 1581 locally either, but it shouldnt be much
  158. more of a wait.
  159.  ------------
  160. Category 17,  Topic 26
  161. Message 7         Tue Jun 23, 1987
  162. SPARROW.J                    at 01:47 EDT
  163.  
  164. You should definately contact your local dealer because several of  dealers
  165. around the country already have them.  From my visit to CBM over the weekend I
  166. did learn that the first shipment was a small one (a few thousand) so it is
  167. possible the '81s will be in short supply for  a while.
  168.  
  169. --Sparrow James
  170.  ------------
  171. Category 17,  Topic 26
  172. Message 8         Tue Jun 23, 1987
  173. JMAXWELL [Aileron]           at 22:44 EDT
  174.  
  175. Well!!!I got a 1581 last Thursday in Kenmore, NY for 219.00... Seems to be
  176. great.  Good manual with expanded definition of SEQ and REL files.  Had to
  177. send away to CBM(19,95)for the CP/M disk which will let me use the 1581 in
  178. CP/M mode.  If and when I get it, I will then be the fortunate owner of
  179. four(4)SYS,CCP disks.  Thanks CBM.
  180.  ------------
  181. Category 17,  Topic 26
  182. Message 9         Thu Jun 25, 1987
  183. SPARROW.J                    at 01:27 EDT
  184.  
  185. Don't blame CBM for the 1581 CP/M snafu, blame DRI's lawyers.  In fact, for a
  186. while over the past few months it looked like that DRI's corporate greed was
  187. going to prevent 1581 CP/M from ever becoming a reality (although I am
  188. convinced a user-hack would have surfaced perhaps with the help of a friendly
  189. engineer or two that are as  unhappy with this DRI-$19.95 deal as we are).
  190.  
  191. Of course the one good thing about it, is that they decided not to simply pass
  192. the entire $19.95 surcharge off to every consumer who purchased the 1581.  At
  193. least with this plan, you only pay for  1581 CP/M if you want it.
  194.  
  195. --Sparrow James
  196.  ------------
  197. Category 17,  Topic 26
  198. Message 10        Fri Aug 07, 1987
  199. S.PLATYPUS                   at 01:14 EDT
  200.  
  201. the 81's have hit Massachusetts! Check your local Toyz be them! $219 Platypus
  202. your local technopus, out!
  203.  ------------
  204. Category 17,  Topic 26
  205. Message 11        Fri Aug 07, 1987
  206. MICHAEL.M [-:SysOp:-]        at 02:00 EDT
  207.  
  208. Same in the Bay area Toys is Us.  $219 here too.  (Cute l'il things)
  209.  ------------
  210. Category 17,  Topic 26
  211. Message 12        Mon Oct 12, 1987
  212. C.BARBEE [FUSBINWA]          at 23:16 EDT
  213.  
  214. ComputAbility (mail order) has the 1581 for $189.00. I just got mine.
  215.  ------------
  216. Category 17,  Topic 26
  217. Message 13        Tue Oct 13, 1987
  218. BKODADEK                     at 23:33 EDT
  219.  
  220. Try Computer Direct for $ 179.95. 22292 N. Pepper Rd. Barrington, IL 60010 312-
  221. 382-5244
  222.  
  223. Bob
  224.  
  225.  ------------
  226. Category 17,  Topic 26
  227. Message 14        Sun Nov 08, 1987
  228. P.DRUMM1                     at 16:11 CST
  229.  
  230. Computer Direct is out. try Tussey computer 1-800-468-9044. $197+ $8.00
  231. shipping. Youll get it in bout 3 days.
  232.  
  233.  ------------
  234.  ************
  235. Topic 29        Sun Mar 26, 1989
  236. P.GELSMAN                    (Forwarded) 
  237. Sub: 1581 directory sort                    
  238.  
  239.  Im looking for a a prg that  will sort a directory alphabetically on a 1581
  240. drive.
  241. 3 message(s) total.
  242.  ************
  243.  ------------
  244. Category 17,  Topic 29
  245. Message 1         Sun Mar 26, 1989
  246. P.GELSMAN                    (Forwarded) 
  247.  
  248. Hi,Is there a prg online or does anyone have a prg that will sort a 1581 disk 
  249. directory in alphabetical order?
  250.  Please reply via E-mail,as I keep  getting lost in this BBS here.thank you!
  251.  ------------
  252. Category 17,  Topic 29
  253. Message 2         Mon Mar 27, 1989
  254. H.HERMAN1                    (Forwarded) 
  255.  
  256.  PG,  If you have Pocket Writer2, it will do what you want , very easilly.  
  257.  Just load your #1581 directory, make a block of the titles, do a sort of
  258.  the block, and you'll have your directory listing in alphabetical order.
  259.  This can then be saved, printed, or saved as a sequential file, to be read by
  260.  other "readers".  Howie
  261.  ------------
  262. Category 17,  Topic 29
  263. Message 3         Mon Mar 27, 1989
  264. DO-RAE-MI                    (Forwarded) 
  265.  
  266. IF YOU MEAN A PROGRAM THAT WILL SORT THE DIRECTORY INTO ALPHABETICAL ORDER ON
  267. DISK OR ALLOW SUCH REARRANGEMENT, FILE NUMBER 4803 SORT 1581 WILL ALPHABETIZE
  268. THE DIRECTORY AND IT IS A 1581 ONLY PROGRAM.  FILE NUMBER 5156 YELLOW PAGES V.
  269. 2 ALLOWS REAARANGEMENT IN SUBDIRECTORIES.  BOTH THESE FILES ARE IN LIBRARY 4. 
  270. BOTH HAVE BEEN AROUND FOR A WHILE & I DON'T KNOW OF ANY BUG RELATED COMPLAINTS
  271. ABOUT THEM, BUT BE SURE TO HAVE A SPARE COPY OF THE FILES YOU ARE
  272. ALPHABETIZING.  IF THE POWER GOES A BIT AWRY WHILE THE PROGRAM IS WRITING, THE
  273. DIRECTORY CAN ALWAYS BE TRASHED EVEN THOUGH THE PROGRAM IS PICTURE PERFECT IN
  274. FUNCTION---THINK OF IT AS TERRORISM BY POWER COMPANIES & LARGE APPLIANCE
  275. USERS.  ALSO, IF YOU HAVE A SPEEDUP BOARD OR CHIP OR WHAT EVER, THE PROGRAM
  276. MAY NOT WORK WITH IT.  PROGRAMS HAVE THAT ODD HABIT.  I REPEAT KEEP A SPARE
  277. COPY OF ALL FILES ON THE DISK YOU ARE GOING TO ALPHABETIZE, THEN TEST THE LOT
  278. JUST TO MAKE SURE.
  279.      (DO I SOUND LIKE SOMEONE WHO GOT RELIGION WHEN A DISK TRASHED ITSELF
  280. WITHOUT ANY REASON?  WELL, I AM. SO DO AS I SAY, NOT AS I DID!)
  281.      TED
  282.  
  283.  ------------
  284.  ************
  285. Topic 32        Mon Oct 12, 1987
  286. C.BARBEE [FUSBINWA]          at 23:19 EDT
  287. Sub: Novice 1581 User                       
  288.  
  289. I have had the 1581 and 128 for a while, just got the 1581. I need  some
  290. Mickey Mouse questions answered.
  291. 5 message(s) total.
  292.  ************
  293.  ------------
  294. Category 17,  Topic 32
  295. Message 2         Sun Oct 25, 1987
  296. JDCLARK                      at 02:54 EDT
  297.  
  298.  Barbee,
  299.     I'm sure there are many people who will be glad to answer you're questions
  300. about the 1581 if you post them here.  Otherwise you can send me Email, and
  301. I'll answer them!
  302.     JDCLARK
  303.  ------------
  304. Category 17,  Topic 32
  305. Message 3         Sun Oct 25, 1987
  306. C.BARBEE [FUSBINWA]          at 15:31 EST
  307.  
  308. Question one: Why does the 1581 hate relative files... Especially the ones
  309. that Timeworks products use? Question two: What are the advantages/
  310. disadvantages of using the 1581 or 1571 as drive 8 or drive 9?
  311.  ------------
  312. Category 17,  Topic 32
  313. Message 4         Mon Oct 26, 1987
  314. SPARROW.J                    at 01:35 EST
  315.  
  316. In my experience the 1581 does not hate relative files, in fact, it seems to
  317. perform much better than all the other Commodore drives I have used in the
  318. past.  Perhaps Timeworks is doing some "wacky" stuff...i.e. are these things
  319. "run of the mill" relative files or do they have some quirks to help
  320. performance on the 1541/1571?
  321.  
  322. --Sparrow James
  323.  ------------
  324. Category 17,  Topic 32
  325. Message 5         Mon Oct 26, 1987
  326. C.BARBEE [FUSBINWA]          at 22:32 EST
  327.  
  328. Hmmm.... On all their products, they insert a Rel. file with nothing in it
  329. which naturally doesn't copy, but their Thesaurus for WordWriter is  the real
  330. pain. When I go to copy it, (all relative files) it turns on both
  331. drives........... And then just sits there - green lights burning, no noise -
  332. and that's it. For 10o points, and the hand-painted ceramic dog, the answer,
  333. please! Any ideas?
  334.  
  335. -=> Cliff <=-
  336.  ------------
  337.  ************
  338. Topic 33        Sun Oct 18, 1987
  339. B.HAINEAULT                  at 20:45 EDT
  340. Sub: 1581 error 74 crashes ???              
  341.  
  342. 1581/1541 in combination with a 64c. Used on a BBS
  343. 7 message(s) total.
  344.  ************
  345.  ------------
  346. Category 17,  Topic 33
  347. Message 1         Sun Oct 18, 1987
  348. B.HAINEAULT                  at 20:49 EDT
  349.  
  350. The following combination creates "error 74" messages and locks-up the  11581.
  351. BBS system used with the 1581 (SEQ files), 1541 as the system disk and a 64C
  352. as the computer. Whenever the 1581 updates the files, it crashes with a "74"
  353. error. Now, on 2 1541's this problem doesn't occur and several local sources
  354. are at a loss to indicate the reason (...the disk is initialized before each
  355. access...)   Has anyone experienced such problems ???
  356.  ------------
  357. Category 17,  Topic 33
  358. Message 2         Mon Oct 19, 1987
  359. KEVIN.S [-Sysop-]            at 01:39 EDT
  360.  
  361. That is a "DRIVE NOT READY" message.  Hmmm. No ideas off the top of my head,
  362. assuming the normal precautions: formatted disk in drive, nothing hanging off
  363. of the disk that might be interfering with the sensors.  The drive works
  364. normally in other applicaions?
  365.         KeS
  366.  ------------
  367. Category 17,  Topic 33
  368. Message 3         Mon Nov 09, 1987
  369. S.GUSTAFSON                  at 23:24 EST
  370.  
  371. I have had the same problem trying to get my own BBS's message base to run on
  372. a 1581. Here it is the message boards that are on the disk drive; again, that
  373. Dos Error #74 pops up again every couple of hours.
  374.  
  375. This isn't what happens when you get one of the early, bad 1581's that  isn't
  376. grounded properly (or is it?)
  377.  
  378. I am going to try to make it so that it sends an "I" to the drive every time
  379. the Dos Error message comes up, that may make it abort only once per read. But
  380. I took the first 1581 back assuming it was defective, only to have it start in
  381. again. I hope somebody out there **knows** of a solution. I don't like to put
  382. down Commodore, but....first the 1571....and now this!
  383.  
  384.  ------------
  385. Category 17,  Topic 33
  386. Message 4         Mon Nov 09, 1987
  387. B.HAINEAULT                  at 23:41 EST
  388.  
  389. ...the problem has been found !   It's the disk controler chip... The one in
  390. my drive is a 1770... Commodore says that it should be a 1772.  After getting
  391. supperd help (!) from them in the USA, I had to battle with Commodore Canada
  392. and the local repair centre so that they would solve it once and for all... As
  393. of today, Commodore Canada, Commodore USA and the local repair centre all
  394. agree that the controler must be changed... One is being sent from the USA to
  395. the authorized centre in Montreal...   TAKE NOTE !!!!!  THE FLOPPY DISK
  396. CONTROLER ON SERIAL NUMBERS 4000 AND BELOW (+/-)   CHECK THE CHIP AND MAKE
  397. SURE THAT THE GROUND CONNECTIONS AS DESCRIBED IN THE TRANSACTOR ARE DONE !!!! 
  398. E R R O R    7 4 should not reappear. ...I hope that this will be the last of
  399. this fault (!)  The amazing part was Commodores extremely quick response via
  400. CompuServe's CBM2000 board... They answerer by phone (!) within " 2 DAYS "
  401. !!!!! Salutations de Bruno... see you later !
  402.  
  403. /e
  404.  ------------
  405. Category 17,  Topic 33
  406. Message 5         Tue Nov 10, 1987
  407. S.GUSTAFSON                  at 23:34 EST
  408.  
  409. Isn't this typical? First, the next wonder of the modern world, the 1571,  and
  410. now this. I wonder how many more replacement chips will be needed before it
  411. works right.
  412.  ------------
  413. Category 17,  Topic 33
  414. Message 6         Thu Nov 19, 1987
  415. S.GUSTAFSON                  at 20:14 EST
  416.  
  417. I've just talked to my very reliable and very good local Commodore service re.
  418. (E.J. Woidich, of Woidich Appliance, for readers in the Louisville KY and
  419. southern Indiana area.) At any rate, he informs me that the 1772 replacement
  420. chip can't be had directly from Commodore, and that it is apparently going to
  421. be necessary to order one from somebody out in Cali- fornia; and at any rate,
  422. they're getting to be rare as hen's teeth because of the demand for them to
  423. fix up defective 1581's.
  424.  ------------
  425. Category 17,  Topic 33
  426. Message 7         Fri Feb 12, 1988
  427. H.HERMAN1                    at 22:08 EST
  428.  
  429.                                                                        
  430.  Okey folks!  Here's the FINAL and official fix for the #1581.         
  431.  
  432.  I spoke with Fred Bowen this afternoon and this is what he said:      
  433.  
  434.  [1]  Jumper  at  J1 should be a plain straight wire.  Forget about the 
  435.  resistor.   (Resistor was intended only to control timing, which isn't 
  436.  necessary.)                                                           
  437.  
  438.  The remainder of fix is as previously reported:                       
  439.  
  440.  [2]  Replace any WD1770's with WD1772-00.                             
  441.  
  442.  [3]  Check for proper grounding on pin 10 of U10.                     
  443.  
  444.  That's it!  Now get those #1581's upgraded.                           
  445.  
  446.  Howie 
  447.  ------------
  448.  ************
  449. Topic 35        Sat Nov 07, 1987
  450. P.DRUMM1                     at 11:48 CST
  451. Sub: 1581/test-demo                         
  452.  
  453. Trouble with disk?
  454. 4 message(s) total.
  455.  ************
  456.  ------------
  457. Category 17,  Topic 35
  458. Message 1         Sat Nov 07, 1987
  459. P.DRUMM1                     at 11:55 CST
  460.  
  461. I receive my 1581 a feww days ago, and it seems to work fine. Except for 1
  462. thing: The second time I tried to use the test/demo disk, it wouldnt do
  463. anything! All I got was a disk error [23,read error,40,00] Nothing I tried
  464. worked, not even collect(in fact,that seemed to make it  worse). Finally I
  465. tried to format it as a last resort, then copy to it, and I still get the same
  466. error. Any one had the same trouble? Is this just a bad disk? Where can I get
  467. a new one? p                                                         Please
  468. dont say Commodore Customer Service, I'm still waitng for ROMs from them! 9wks
  469. now
  470.  ------------
  471. Category 17,  Topic 35
  472. Message 2         Sun Nov 08, 1987
  473. JOEBROWN [Joe Brown]         at 13:52 EST
  474.  
  475. The only thing that will ALWAYS cause that problem is if you power down the
  476. drive with the disk still in it, this is guaranteed to cause you this problem.
  477.  ------------
  478. Category 17,  Topic 35
  479. Message 3         Fri Nov 13, 1987
  480. P.DRUMM1                     at 00:10 CST
  481.  
  482. Wrong Joe. I have tried it (power-off with disk in drive)  on purpose, just to
  483. see. But that dont do anything,at least not on MY drive. Tried with thre disks
  484. and every one worked fine after!
  485.  ------------
  486. Category 17,  Topic 35
  487. Message 4         Wed May 25, 1988
  488. C.BARBEE [FUSBINWA]          at 18:28 EDT
  489.  
  490. HELP!!!  Recently -- through no fault of my own, of course -- I managed to fry
  491. my 1581 Test/Demo disk. I am very, very interested in getting another copy of
  492. it. Anyone got an idea where I might find one?
  493.  
  494. Thanx,
  495.            -=> Cliff <=-
  496.  
  497.  ************
  498. Topic 37        Fri Nov 13, 1987
  499. P.DRUMM1                     at 01:54 CST
  500. Sub: 1581 to ????commodore                  
  501.  
  502. If your interested in the 1581, and how to make it work,well Iguess this is
  503. The Place
  504. 5 message(s) total.
  505.  ************
  506.  ------------
  507. Category 17,  Topic 37
  508. Message 1         Fri Nov 13, 1987
  509. P.DRUMM1                     at 02:04 CST
  510.  
  511. I am only interested in Commodore Disk Drive users. I got my 1581 about the
  512. beginning of NOV., and want a GOOD copier prg..Something that will  exactly
  513. duplicate 'files', not disks, from the 1571 to the 1581
  514.  
  515.   One more thing is that the manual seems to specify a certain parameter(s) fo
  516. an auto boot file.
  517.   I'm not much on m/l but if I can get a few pointers maybe I can come up with
  518. something. 
  519.  
  520. ANY comments, tips, hints, orwhat have you, will be rewarded! If you want to
  521. kno why 'files' and not 'disks', ask any ms-dos user
  522.  ------------
  523. Category 17,  Topic 37
  524. Message 2         Fri Nov 13, 1987
  525. DEB                          at 20:57 EST
  526.  
  527. I've used my BobsTerm Pro 128 for my own File Copier when I need it...
  528.   <grin>
  529.  
  530. Is there a version of Unicopy for the 1581?   Will ARC's COPY command work
  531. from a '71 to an '81?
  532.  
  533.    *deb!*  <without a 1581...>
  534.  ------------
  535. Category 17,  Topic 37
  536. Message 3         Sun Nov 15, 1987
  537. B.GRAY [Brent]               at 21:00 MST
  538.  
  539. Kracker Jax sells a program called C-128 Cannon that works super with the 1571
  540. & 1581... but only with the 128.  If you have a  64 I'm not sure what to
  541. suggest.
  542.  
  543. Brent
  544.  ------------
  545. Category 17,  Topic 37
  546. Message 4         Sat Nov 21, 1987
  547. P.DRUMM1                     at 00:35 CST
  548.  
  549. YES! Arc 'copy' and 'move' do work as far as I've tried them, just to arc &
  550. unarc files. But what I am Looking for, and working on, is a mass copier.
  551. Something that will copy 1(or more) 1571 disks to 1581 disks,  in order of
  552. file name. I have found that all (so far) files on the 1581 are contiguos,
  553. which save a lot of time in loading & saving. I do have a 128, but am not
  554. going to spend money fo this prg. when I can probably write my own in a few
  555. months or so. Thanks.
  556.  ------------
  557. Category 17,  Topic 37
  558. Message 5         Wed Feb 10, 1988
  559. W.HATCH                      at 23:34 EST
  560.  
  561. Hi :)
  562.      In the latest issue of "Twin Cities 128", #19 back page, there is an
  563. advertisement by Free Spirit Software, Inc. for SUPER 81 UTILITIES. It seems
  564. to include copying whole disks from 1541/1571 to 1581, a file copier (BOTH
  565. ways), 1581 backups, etc.
  566.      I have ordered one ($39.95), and as soon as I get it and try it out, I'll
  567. let you know if it's any good.  Maybe someone else out there already knows.
  568.  
  569.           ----====> Belgarion <====----
  570.  
  571.  ------------
  572.  ************
  573. Topic 53        Fri Apr 15, 1988
  574. E.BLANK                      (Forwarded) 
  575. Sub: 1581 copy program                      
  576.  
  577. Wanted: copy program for the 1581 3 1/2" disk drive
  578. 2 message(s) total.
  579.  ************
  580.  ------------
  581. Category 17,  Topic 53
  582. Message 1         Mon Jun 27, 1988
  583. M.PALMER5                    (Forwarded) 
  584.  
  585. I have the program 81 utilities from free spirit software and am not real
  586. impressed with it.  Disk-wiz, which i downloaded from here works all most as
  587. good.  the 81 utilities does have some partioning things that are not
  588. available yet. I just saw an advertisement for fast hackem V6.0 that includes
  589. 1581 support if you get the 128 version.  It is by michael henry (?). the
  590. fellow that did all the other fantastic versions. But first down load the
  591. copying programs from here and practice until you know what you want to do
  592.  
  593.  
  594.                   MARK
  595.  ------------
  596. Category 17,  Topic 53
  597. Message 2         Wed Jul 20, 1988
  598. C128.CPM                     (Forwarded) 
  599.  
  600. Mark,  Just for kicks, what didn't you like about the Super '81 Utilities?  I
  601. also bought it to help me with the '81, and did find some things that weren't
  602. too great, like lack of prompts BEFORE the '71 formats.  A suggestion to any
  603. owner of this program is to put a write protect tab on the '71 disk, and  open
  604. the notch on the 3 1/2 disk!!  I thought that it wasn't  all that bad!    Bill
  605. J.
  606.  ------------
  607.  ************
  608. Topic 55        Fri Jun 24, 1988
  609. E.G.BELL                     (Forwarded) 
  610. Sub: 1581 snakebites                        
  611.  
  612.   Due to a known bug in the 1581  operating system, you WILL lose data w/o
  613. warning like the old save @ bug
  614. 10 message(s) total.
  615.  ************
  616.  ------------
  617. Category 17,  Topic 55
  618. Message 1         Sat Jun 25, 1988
  619. D.SCHMOLDT [Dave/SysOp]      (Forwarded) 
  620.  
  621. E.G.BELL,
  622.  
  623.   Any details on what the bug is?  Is it a save with replace bug, or just
  624. something similar.  What should 1581 users be avoiding?
  625.  ------------
  626. Category 17,  Topic 55
  627. Message 2         Mon Jun 27, 1988
  628. C.MILLER16 [The Rooger]      (Forwarded) 
  629.  
  630. Is this the bug caused by the WD1770 controller?  I am sending my drive in to
  631. have the chip replaced with a wd1772, as it corrupted at least 1 of my disks.
  632.  ------------
  633. Category 17,  Topic 55
  634. Message 3         Tue Jun 28, 1988
  635. E.G.BELL                     (Forwarded) 
  636.  
  637. I did not make it to the meeting of our user group [Pittsburgh
  638.  
  639. on the day that a rep from CBM was present, but I had mentioned it to a friend
  640. who brought it up at the mtg. and the CBM rep acknowledged the bug w/no
  641. elaboration and informed all of the arrangement for repairs.  Sorry  I don't
  642. have more info.  I have been severely snakebitten on both saves and downloads.
  643. It does NOT seem to be a SAVE@: type bug.  I don't use it.  The first line of
  644. all of my source files is a doctored line which , when listed, displays the
  645. commands to 1) scratch the existing file
  646.    2) initialize drive 
  647.    3) save the prg
  648.    4) verify the prg
  649.    5) close command channel
  650.   I have gotten SAVE@: type errors w/one file name pointing to another file,
  651. and I have gotten DEL files  when saving, and I have gotten files which DOS
  652. cannot find even though they are plainly on the disk.  I want to get the drive
  653. fixed.  I almost bought another until I heard this.  I first learned of it in
  654. a  write-up on the Merlin assembler in Run I believe. Anyone else w/any info
  655. would be  welcome to me.
  656.  ------------
  657. Category 17,  Topic 55
  658. Message 4         Fri Jul 08, 1988
  659. E.G.BELL                     (Forwarded) 
  660.  
  661. I have more info on this bug, or more particularly, the repair.  I got ift
  662. from an authorized service center that the repair is NOT free, and will cost
  663. $17 IF you can find someone w/the parts.  Thanx cbm....
  664.  ------------
  665. Category 17,  Topic 55
  666. Message 5         Sun Jul 10, 1988
  667. D.SCHMOLDT [Dave/SysOp]      (Forwarded) 
  668.  
  669. Must be something other than the 1770 chip problem then, because that is
  670. covered by warranty, even after the 90 days.
  671.  ------------
  672. Category 17,  Topic 55
  673. Message 9         Sat Jan 21, 1989
  674. R.EVINGER                    at 23:16 EST
  675.  
  676. i have one that hasnt been mentioned. does anybody know about why one can not
  677. create a relative file when in a partition in the  1581. i get an error 52???
  678. anyone
  679.  ------------
  680. Category 17,  Topic 55
  681. Message 10        Sun Jan 22, 1989
  682. H.HERMAN1                    at 19:21 EST
  683.  
  684. R.E.  That is interesting.  I tried just copying a file over to a
  685. partition....  Got an error "71", bad directory or something like that. Wonder
  686. why it took so long for anyone to notice this prob with REL files?
  687.     Howie
  688.  ------------
  689.  ************
  690. Topic 63        Mon Jan 25, 1988
  691. C.BARBEE [FUSBINWA]          (Forwarded) 
  692. Sub: 1581 Partitions and WordWriter         
  693.  
  694. Okay; silly question time again! I use the 1581 as Drive 8 and my 1571 as
  695. Drive 9. I use WordWriter-128 and have a problem with Directory room.
  696. 16 message(s) total.
  697.  ************
  698.  ------------
  699. Category 17,  Topic 63
  700. Message 1         Mon Jan 25, 1988
  701. C.BARBEE [FUSBINWA]          (Forwarded) 
  702.  
  703. As I wuz saying, I use the Wordwriter-128 and the 1581. The problem I  have is
  704. that Wordwriter allows only so much room for fil its directory. Therefore,
  705. when you reach the limit, your files stop  appearing in the Wordwriter
  706. dirctory! My idea is this: Partition  a 1581 disk so that I can enter a DOS
  707. command from Wordwriter to open the partition and use it as a sub-directory.
  708. Well techies? Can this be done? 
  709.                     -=> Cliff <=-
  710.  ------------
  711. Category 17,  Topic 63
  712. Message 2         Mon Jan 25, 1988
  713. KEVIN.S [-128 Sysop-]        (Forwarded) 
  714.  
  715. Don't see why not.
  716.         KeS
  717.  ------------
  718. Category 17,  Topic 63
  719. Message 3         Tue Jan 26, 1988
  720. H.HERMAN1                    (Forwarded) 
  721.  
  722.  Now  that you know it can be done, I quess you would also like to know the 
  723.  "how" part as well.                                                       
  724.  
  725.  That  is  real easy.  Just enter your WP's DOS command.  [For example with
  726.  Pocket  Writer2  it  is a C=, C]  This will then let you save, scratch, or
  727.  open   and  close  partitions.   The  command  to  open  a  partition  is:
  728.  /nameofpartition.   With  PW2 you also want to identify the drive it is on
  729.  so you would use: 5:/nameofpartition.                                     
  730.  
  731.  It is really too easy.                                                    
  732.  
  733.  Howie                                                                     
  734.  ------------
  735. Category 17,  Topic 63
  736. Message 4         Wed Jan 27, 1988
  737. C.BARBEE [FUSBINWA]          (Forwarded) 
  738.  
  739. Otay; let me give it a try. 
  740.                            Thanx,
  741.                                    -=> Cliff <=-
  742.  ------------
  743. Category 17,  Topic 63
  744. Message 5         Thu Jan 28, 1988
  745. KEVIN.S [-128 Sysop-]        (Forwarded) 
  746.  
  747. Thanks, Howie!  Not having a 1581, I am not up on the extended DOS commands
  748. for it!
  749.               KeS
  750.  ------------
  751. Category 17,  Topic 63
  752. Message 6         Sun Jan 31, 1988
  753. C.BARBEE [FUSBINWA]          (Forwarded) 
  754.  
  755. Wow! I'm still working on this little problem. I have advice for anyone who
  756. purchases the 1581: The first thing you should do to improve the operating of
  757. it is THROW AWAY THE MANUAL! It has this neat little section on partitions and
  758. sub-directories that is about as clear and informative as a Pres. Reagan
  759. speech! I would really appreciate it if  some fine soul would talk me through
  760. the process necessary to put in the partitio, copy files into them, and then
  761. actually access them. If I see another DOS error message I'll scream...
  762.                                              -=> Cliff <=-
  763.  ------------
  764. Category 17,  Topic 63
  765. Message 7         Sun Jan 31, 1988
  766. CHARRINGTON [Courtney]       (Forwarded) 
  767.  
  768. You might want to touch bases with someone who has an IBM or clone. If they
  769. have a hard disk...they should know everything about partitions and how to use
  770. them.
  771.  In a nutshell, my hard disk has about 20 subdirectories and each can be
  772. accessed like a seperate directory. If the main directory is named "main",
  773. I'll create a sub directory named "print" for all my printer files. The
  774. command in MS-DOS to create a sub directory is "mkdir" or "md" depending on
  775. what version of DOS is used. The commodore command must be listed in the
  776. manual...such as it is. I suggest you play around and see what happens. Try
  777. create a sub directory after the main one is ready.
  778.  Then access it using what ever command is available. Confusing? Yep, that's
  779. why I suggest you visit someone with a hard disk.
  780.  Once you SEE how it is done...the mystery will be gone.
  781.  Sorry I couldn't be more help.
  782.  Courtney
  783.  ------------
  784. Category 17,  Topic 63
  785. Message 8         Mon Feb 01, 1988
  786. WC.COLEMAN [Geos*Sysop]      (Forwarded) 
  787.  
  788. While I don't know the actual commands anymore (scaned the manual once) I do
  789. remember they are *not* like MS-DOS (similar kinda). I'll try to get my hands
  790. on a manual again and see what I can find.
  791.  ------------
  792. Category 17,  Topic 63
  793. Message 9         Mon Feb 01, 1988
  794. CHARRINGTON [Courtney]       (Forwarded) 
  795.  
  796. If someone can give me the 1581 commands, I should be able to come up with
  797. something that may work. Hard disks is hard disks.
  798.  Come to think of it...maybe Commodore makes their partitioning different from
  799. anything else on earth. I wouldn't be surprised.
  800.  <sigh> 8p 80
  801.  (oops) Courtney
  802.  ------------
  803. Category 17,  Topic 63
  804. Message 10        Thu Feb 04, 1988
  805. R.WONG2                      (Forwarded) 
  806.  
  807.          
  808.  
  809. Well hard disks may be hard disks but the 1581 ain't a hard disk. Use the
  810. program on the test/demo disk called partition aid to create and enter a
  811. subdirectory, that may help you understand it a little better.
  812.  
  813.  ------------
  814. Category 17,  Topic 63
  815. Message 11        Thu Feb 04, 1988
  816. CHARRINGTON [Courtney]       (Forwarded) 
  817.  
  818. I agree...hard disks and the 1581 are different animals.
  819.  But we're talkin' about partitions here. The theory of partition use is the
  820. same on HD or floppies. Once you understand the reason for them, then figuring
  821. out how to use them is simple.
  822.  Don't be afraid to learn something new.
  823.  Courtney
  824.  ------------
  825. Category 17,  Topic 63
  826. Message 12        Thu Feb 11, 1988
  827. C.BARBEE [FUSBINWA]          (Forwarded) 
  828.  
  829. I've figured-out a bit about it, but I still can't enter the command through
  830. WordWriter's DOS option.
  831.  ------------
  832. Category 17,  Topic 63
  833. Message 13        Thu Feb 11, 1988
  834. H.HERMAN1                    (Forwarded) 
  835.  
  836.  Most  all  major  WP  programs  let  you enter DOS for opening and closing 
  837.  partitions.  (Not necessarlly for setting them up..)                      
  838.  
  839.  I am pretty sure that yours can do it too.  Keep trying.                  
  840.  
  841.  Howie                                                                     
  842.  ------------
  843. Category 17,  Topic 63
  844. Message 14        Sun Feb 14, 1988
  845. C.BARBEE [FUSBINWA]          (Forwarded) 
  846.  
  847. What I need to know is the EXACT format for opening and closing partitions
  848. from the DOS menu in WordWriter. I can do it if I can discover the right damn
  849. syntax!!!
  850.  ------------
  851. Category 17,  Topic 63
  852. Message 15        Tue Feb 16, 1988
  853. DEB [*SysOp*]                (Forwarded) 
  854.  
  855. Cliff:  I don't HAVE Word Writer, but why won't the same syntax as you use in
  856. direct mode work from the DOS menu in the program?!
  857.  
  858.    *deb!* (asking silly questions again, no doubt...)
  859.  ------------
  860. Category 17,  Topic 63
  861. Message 16        Wed Feb 17, 1988
  862. H.HERMAN1                    (Forwarded) 
  863.  
  864. One sure way for it to work, but not the most elegant:
  865.  
  866. From your DOS: [1] get a directory. [2] immediately follow that with:
  867. /partitionname
  868.  
  869. This must open your partition!!
  870.  
  871. To close: [1] [1] get a directory [2] immediatley follow that with: / this
  872. must close your partition.
  873.  
  874. Howie (excuse appearance....doing this in real-time.
  875.  ------------
  876.  
  877. Sysop-]