home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / linux / 22989 < prev    next >
Encoding:
Text File  |  1993-01-06  |  1.7 KB  |  43 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!munnari.oz.au!bruce.cs.monash.edu.au!monu6!lindblat.cc.monash.edu.au!cheiu
  3. From: cheiu@lindblat.cc.monash.edu.au (LY Cheiu)
  4. Subject: dos emulator: increasing the drive C size ..how?
  5. Message-ID: <1993Jan7.020209.16710@monu6.cc.monash.edu.au>
  6. Sender: news@monu6.cc.monash.edu.au (Usenet system)
  7. Organization: Monash University
  8. References: <1993Jan3.061828.27179@exucom.com> <C0G2nD.Cxt@Nyongwa.CAM.ORG>
  9. Date: Thu, 7 Jan 1993 02:02:09 GMT
  10. Lines: 31
  11.  
  12. Hi, 
  13.  
  14. I tried out dos emulator version 0.4 today and am happy with things in general
  15. except that it doesn't run too many programs as yet. But at least dos it running
  16. and the system looks more professional..:)
  17.  
  18. Okay, I tried to install dos using sys c: and it told me that I didn't have 
  19. enuff space in drive c:. So I read the README file and it told me that I 
  20. should change the drive geometry struct in file emu.c
  21. So I gave it the following:
  22.  
  23. struct disk hdisktab[HDISKS] = {
  24.                 {"hdimage", 0, 17, 4, 80},
  25. #if HDISKS == 2
  26.                 {"/dev/hda", 1, 17, 9, 900}, 
  27. /*                           ^ readonly                                 */
  28. /*                              ^ sectors                               */
  29. /*                                  ^ heads                             */
  30. /*                                      ^ cylinders                     */
  31. #endif
  32.  
  33.  
  34. Did I do the right thing? Coz if I did, something is funny here.
  35. The README tells me to do fdisk but fdisk is a exe file and somewhere
  36. in the README I read that EXE files do not work as yet. I tried it out
  37. anyway and true to the README file it didn't work.
  38.  
  39. Okay, Thanks for any tips or help you can give me
  40.  
  41. Jae
  42.  
  43.