home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / vms / 19996 < prev    next >
Encoding:
Internet Message Format  |  1992-12-29  |  2.9 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!saimiri.primate.wisc.edu!ames!agate!ucbvax!mhs.attmail.com!simons/G=Colin/I=CB/S=Sewell/O=H.A.Simons.Ltd/OU=CORP
  2. From: simons/G=Colin/I=CB/S=Sewell/O=H.A.Simons.Ltd/OU=CORP@mhs.attmail.com
  3. Newsgroups: comp.os.vms
  4. Subject: Re: Bypassing missing F11BXQP on startup ?
  5. Message-ID: <9212290827.AA18530@ucbvax.Berkeley.EDU>
  6. Date: 28 Dec 92 19:35:09 GMT
  7. Sender: usenet@ucbvax.BERKELEY.EDU
  8. Organization: The Internet
  9. Lines: 58
  10.  
  11. V. Phaniraj writes:
  12.  
  13. >Hi
  14. >
  15. >After the VMS 5.5-2 upgrade, we've notivced some missing files.
  16. >For ex., SUBMIT.EXE was missing from SYS$SYSTEM. Today I did
  17. >a standalone backup and restore of the system disk, and it appears
  18. >that F11BXQP.EXE is also missing. The system startup fails with the
  19. >error
  20. >
  21. >SYSINIT-E Error mounting system device, status=07280b4
  22. >SYSINIT-E Error opening or mapping F11BXQP, status = 00018272.
  23. >
  24. >I don't want to go to an older backup just yet, so are there any ways
  25. >around this ? I have a recent standalone backup created with
  26. >STABACKIT on another disk, could this be used along with backup/noinit
  27. >to be of some use ? Xmas day is a bad day to get into such a mess :-)
  28. >
  29. >Dr V. Phaniraj  phaniraj@plains.nodak.edu  (701) 298-1024
  30. >--
  31. >V. Phaniraj                    phaniraj@plains.NoDak.edu
  32. >Assistant Professor, Electrical Engineering    phaniraj@ndsuvm1 (BITNET)
  33. >North Dakota State University, Fargo ND 58105    (701) 298-1024 (work)
  34. >                        (701) 237-8677 (FAX)
  35.  
  36.     i haven't a clue as to why SUBMIT.EXE went missing. However, i can
  37.     help you with the F11BXQP problem.
  38.  
  39.     First of all, F11BXPQ isn't missing. If you translate those hex
  40.     error messages to the error text you find that:
  41.  
  42. write sys$output f$message(%x07280b4)
  43. %MOUNT-F-VOLALRMNT, another volume of same label already mounted
  44.  
  45. write sys$output f$message(%x00018272)
  46. %RMS-E-DNR, device not ready, not mounted, or unavailable
  47.  
  48.     the first error message tells you that the system disk could
  49.     not be mounted on boot because there was another volume
  50.     mounted /system with the same volume label. The second error
  51.     message indicates that, since the system disk was not mounted,
  52.     F11BXQP could not be mapped. You cannot get along without that
  53.     image, it's the key to decoding the file structure on the disk.
  54.  
  55.     We had the same problem a couple of days ago...What we did to
  56.     get the same error was back up and restore the system disk
  57.     of a fileserver node in the cluster and rebooting without bringing
  58.     all the satellite nodes that boot off that disk down. The
  59.     satellite nodes have the system disk mounted /system preventing
  60.     the server node from mounting it /system. This ordinarily
  61.     doesn't happen; you can rebot the server node without bringing
  62.     down the satellites and there is no problem. However by restoring
  63.     the system disk, the server sees it as a new volume, not the original
  64.     one that was in the drive.
  65.  
  66.     so, bring down the satellites, boot the server, then bring up each
  67.     satellite node. hope this helps.
  68.  
  69.